-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.txt
1300 lines (1300 loc) · 29.2 KB
/
output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
('Golf', 590)
('Active Life', 9521)
('Specialty Food', 4883)
('Restaurants', 59371)
('Dim Sum', 302)
('Imported Food', 460)
('Food', 29989)
('Chinese', 4428)
('Ethnic Food', 1103)
('Seafood', 2508)
('Sushi Bars', 2258)
('Japanese', 2716)
('Insurance', 912)
('Financial Services', 3082)
('Plumbing', 1337)
('Shopping', 31878)
('Local Services', 13932)
('Home Services', 19729)
('Kitchen & Bath', 947)
('Home & Garden', 6489)
('Water Heater Installation/Repair', 464)
('Shipping Centers', 765)
('Couriers & Delivery Services', 382)
('Printing Services', 1130)
('Beauty & Spas', 19370)
('Hair Salons', 6955)
('Hair Stylists', 1960)
('Barbers', 2010)
("Men's Hair Salons", 813)
('Cosmetics & Beauty Supply', 2148)
('Nail Salons', 5043)
('Day Spas', 2742)
('Massage', 2733)
('Professional Services', 6276)
('Computers', 593)
('IT Services & Computer Repair', 1557)
('Internet Service Providers', 456)
('Web Design', 384)
('Breakfast & Brunch', 5381)
('Mexican', 4618)
('Tacos', 271)
('Tex-Mex', 737)
('Fast Food', 7257)
('Bars', 11341)
('Nightlife', 13095)
('Pubs', 2077)
('Irish Pub', 109)
('Italian', 4716)
('Pizza', 6804)
('Chicken Wings', 2705)
('Bakeries', 3711)
('Fitness & Instruction', 4646)
('Yoga', 1158)
('Event Planning & Services', 10371)
('Photographers', 961)
('Trainers', 1944)
('Health & Medical', 17171)
('Physical Therapy', 1040)
('Gyms', 2316)
('Arcades', 383)
('Arts & Entertainment', 6304)
('Automotive', 13203)
('Car Dealers', 2062)
('Strip Clubs', 46)
('Adult Entertainment', 380)
('Dance Clubs', 845)
('Sandwiches', 7332)
('Salad', 2531)
('Burgers', 5404)
('Comfort Food', 860)
("Women's Clothing", 2983)
('Accessories', 2214)
('Fashion', 7798)
('Shoe Stores', 1460)
('Patisserie/Cake Shop', 200)
('Sporting Goods', 2165)
("Men's Clothing", 1832)
('Sports Wear', 794)
('Car Rental', 945)
('Windshield Installation & Repair', 452)
('Auto Detailing', 1087)
('Hotels & Travel', 6033)
('Towing', 656)
('Body Shops', 1306)
('Juice Bars & Smoothies', 1723)
('Vegan', 848)
('Department Stores', 1642)
('Discount Store', 921)
('Home Decor', 2125)
('Auto Repair', 6140)
('Tapas Bars', 417)
('Southern', 536)
('Coffee & Tea', 7321)
('Ice Cream & Frozen Yogurt', 2764)
('Real Estate', 5677)
('Banks & Credit Unions', 1355)
('Mortgage Brokers', 675)
('American (Traditional)', 7107)
('American (New)', 4882)
('Steakhouses', 1603)
('Apartments', 2576)
('Vacation Rentals', 106)
('Medical Centers', 1781)
('Doctors', 5867)
('Obstetricians & Gynecologists', 461)
('Auto Glass Services', 887)
('Auto Parts & Supplies', 2023)
('Auto Customization', 455)
('Vehicle Wraps', 146)
('Interior Design', 736)
('Rugs', 153)
('Furniture Stores', 1947)
('Mattresses', 749)
('Real Estate Services', 1564)
('Food Banks', 11)
('Community Service/Non-Profit', 577)
('Massage Therapy', 1754)
("Children's Clothing", 550)
('Used', 749)
('Vintage & Consignment', 749)
('Desserts', 3332)
('Hotels', 2625)
('Endodontists', 622)
('Dentists', 3540)
('Modern European', 216)
('Wine Bars', 1145)
('Music Venues', 1065)
('Cupcakes', 338)
('Convenience Stores', 1867)
('Gas Stations', 1617)
('Grocery', 3609)
('Heating & Air Conditioning/HVAC', 1539)
('Parks', 977)
('Hookah Bars', 309)
('Persian/Iranian', 185)
('Country Dance Halls', 19)
('Middle Eastern', 1317)
('Beer', 2255)
('Wine & Spirits', 2255)
('Lounges', 1648)
('Delis', 1955)
('Kids Hair Salons', 36)
('Jewelry', 1750)
('Fish & Chips', 319)
('Skin Care', 3403)
('Tanning Beds', 123)
('Tanning', 927)
('Polish', 80)
('Caterers', 2525)
('Tree Services', 473)
('Landscape Architects', 321)
('Landscaping', 1206)
('Lawn Services', 63)
('Hair Loss Centers', 75)
('Korean', 923)
('Contractors', 3151)
('Hardware Stores', 816)
('Building Supplies', 887)
('Paint Stores', 114)
('Painters', 583)
('General Dentistry', 2768)
('Eyebrow Services', 490)
('Herbal Shops', 15)
('Nurseries & Gardening', 662)
('Spiritual Shop', 56)
('Custom Cakes', 277)
('Cafes', 3232)
('Canadian (New)', 1909)
('Portuguese', 249)
('Oral Surgeons', 906)
('Cosmetic Dentists', 2058)
('Orthodontists', 983)
('Tires', 2337)
('Windows Installation', 427)
('Naturopathic/Holistic', 492)
('Weight Loss Centers', 792)
('Medical Spas', 1275)
('Nutritionists', 598)
('Landmarks & Historical Buildings', 211)
('Mediterranean', 1834)
('Public Services & Government', 1343)
('Leather Goods', 250)
('Life Coach', 281)
('Hospitals', 440)
('Rehabilitation Center', 283)
('Makeup Artists', 1234)
('Permanent Makeup', 500)
('Hair Extensions', 1048)
('Property Management', 1033)
('Donuts', 774)
('Family Practice', 793)
('Libraries', 295)
('Educational Services', 275)
('Education', 3314)
('Books', 1342)
('Mags', 1342)
('Music & Video', 1342)
('Bookstores', 543)
('Butcher', 217)
('Floral Designers', 174)
('Florists', 1098)
('Flowers & Gifts', 2180)
('Funeral Services & Cemeteries', 195)
('Beer Gardens', 80)
('Nail Technicians', 278)
('Bike Repair/Maintenance', 284)
('Paint & Sip', 103)
('Arts & Crafts', 1793)
('Art Classes', 225)
('Hobby Shops', 783)
('Party & Event Planning', 1378)
('Venues & Event Spaces', 2223)
('Sports Bars', 2184)
('Comedy Clubs', 166)
('Graphic Design', 569)
('Chiropractors', 1354)
('Handyman', 574)
('Security Systems', 451)
('Traditional Chinese Medicine', 210)
('Acupuncture', 745)
('Plus Size Fashion', 171)
('Jewelry Repair', 310)
('Watches', 398)
('Vietnamese', 1286)
('Thai', 1449)
('Diagnostic Services', 496)
('Diagnostic Imaging', 227)
('Radiologists', 110)
('Airports', 208)
('Car Wash', 1160)
('Taxis', 272)
('Limos', 402)
('Transportation', 1060)
('Airport Shuttles', 331)
('Caribbean', 634)
('Art Galleries', 781)
('Child Care & Day Care', 746)
('Preschools', 705)
('Lawyers', 1062)
('Divorce & Family Law', 337)
('Personal Injury Law', 430)
('Roofing', 405)
('Eyewear & Opticians', 1162)
('Optometrists', 1279)
('Asian Fusion', 1953)
('Hot Dogs', 757)
('Vegetarian', 1123)
('Soup', 844)
('Antiques', 577)
('Thrift Stores', 687)
('Internal Medicine', 399)
('Flooring', 908)
('Cabinetry', 319)
('Employment Agencies', 224)
('Talent Agencies', 39)
('Performing Arts', 1085)
('Sewing & Alterations', 1040)
('Bridal', 640)
('Clothing Rental', 43)
('Formal Wear', 314)
('Meat Shops', 515)
('Veterinarians', 1285)
('Pets', 4111)
('French', 1027)
('Creperies', 261)
('Newspapers & Magazines', 51)
('Buffets', 893)
('Video/Film Production', 214)
('Walk-in Clinics', 148)
('Urgent Care', 459)
('Business Consulting', 125)
('Eyelash Service', 1856)
('Hair Removal', 4002)
('Health Markets', 790)
('Specialty Schools', 1588)
('Cooking Schools', 108)
('Laser Hair Removal', 672)
('Chocolatiers & Shops', 466)
('Car Window Tinting', 212)
('Pet Sitting', 1269)
('Pet Groomers', 1546)
('Pet Services', 2850)
('Diners', 1433)
('Blow Dry/Out Services', 667)
('Tours', 672)
('Garage Door Services', 336)
('Dive Bars', 631)
('Wheel & Rim Repair', 317)
('Costumes', 152)
('Barbeque', 1814)
('Tattoo', 852)
('Turkish', 136)
('Used Car Dealers', 355)
('Accountants', 325)
('Tax Services', 382)
('Pain Management', 220)
('Oil Change Stations', 2191)
('Herbs & Spices', 115)
('Motorcycle Repair', 315)
('Motorcycle Rental', 33)
('Motorcycle Dealers', 328)
('Baby Gear & Furniture', 360)
('Gastropubs', 557)
('Investing', 190)
('Museums', 327)
('Art Museums', 30)
('Cajun/Creole', 303)
('Hiking', 201)
('Party Equipment Rentals', 272)
('Casinos', 470)
('Bike Rentals', 265)
('Bikes', 556)
('Outdoor Gear', 376)
('Ski & Snowboard Shops', 44)
('Moroccan', 75)
('Sugaring', 49)
('Wedding Planning', 800)
('Movers', 1104)
('Self Storage', 1020)
('Fences & Gates', 191)
('Tapas/Small Plates', 480)
('Electricians', 534)
('Gluten-Free', 858)
('Food Delivery Services', 979)
('Battery Stores', 107)
('Appliances & Repair', 872)
('Local Flavor', 1444)
('Poutineries', 181)
('Laboratory Testing', 198)
('Chimney Sweeps', 41)
('Fireplace Services', 97)
('Masonry/Concrete', 391)
('Home Cleaning', 1278)
('Mobile Phones', 1246)
('Internet Cafes', 187)
('LAN Centers', 18)
('Bird Shops', 16)
('Toy Stores', 589)
('Holiday Decorations', 37)
('Pet Stores', 1171)
('Psychic Mediums', 32)
('Psychics', 64)
('Supernatural Readings', 163)
('Musical Instrument Services', 196)
('Piano Services', 51)
('Flight Instruction', 37)
('Airlines', 135)
('Appliances', 856)
('Wraps', 154)
('Air Duct Cleaning', 234)
('Pest Control', 613)
('Donation Center', 43)
('Window Washing', 334)
('Hawaiian', 329)
('Poke', 172)
('Ramen', 237)
('Mobile Phone Repair', 695)
('Electronics Repair', 656)
('Taiwanese', 223)
('Smog Check Stations', 340)
('Pakistani', 479)
('Indian', 1489)
('Waxing', 2389)
('Pawn Shops', 237)
('Vape Shops', 652)
('Commercial Real Estate', 224)
('Real Estate Agents', 1196)
('Mortgage Lenders', 163)
('Lingerie', 267)
('Financial Advising', 328)
('Hot Tub & Pool', 443)
('Pool Cleaners', 625)
('Allergists', 104)
('Carpet Cleaning', 939)
('Tiling', 299)
('Grout Services', 119)
('Electronics', 1629)
('Art Schools', 157)
('Brasseries', 132)
('Soul Food', 316)
('Furniture Assembly', 65)
('Filipino', 235)
('Private Jet Charter', 9)
('Travel Services', 469)
('Packing Services', 175)
('Gift Shops', 763)
('Auction Houses', 73)
('Estate Liquidation', 45)
('Organic Stores', 227)
('Shopping Centers', 571)
('Anesthesiologists', 35)
('Hakka', 45)
('Drugstores', 1684)
('Peruvian', 111)
('Art Supplies', 360)
('Gelato', 140)
('Coffee Roasteries', 183)
('Advertising', 237)
('Videographers', 168)
('Marketing', 445)
('Public Relations', 42)
('Event Photography', 546)
('Session Photography', 550)
('Print Media', 155)
('Mass Media', 319)
('Signmaking', 311)
('Summer Camps', 280)
('Bubble Tea', 486)
('Greek', 1086)
('Refinishing Services', 179)
('Health Insurance Offices', 32)
('Office Cleaning', 513)
('Botanical Gardens', 40)
('Cocktail Bars', 1246)
('Photo Booth Rentals', 148)
('Party Supplies', 429)
('Dog Walkers', 317)
('Resorts', 198)
('Carpeting', 466)
('Dry Cleaning & Laundry', 1418)
('Laundromat', 162)
('Laundry Services', 1405)
('Latin American', 591)
('Solar Installation', 164)
('Recreation Centers', 335)
('Sports Medicine', 439)
('DUI Law', 211)
('Medical Law', 22)
('Interval Training Gyms', 227)
('Guns & Ammo', 274)
('Motorsport Vehicle Dealers', 18)
('Keys & Locksmiths', 378)
('Car Stereo Installation', 235)
('Halal', 620)
('Reiki', 277)
('Aquariums', 46)
('Shoe Repair', 315)
('Lebanese', 239)
('Escape Games', 185)
('Do-It-Yourself Food', 215)
('Mongolian', 50)
('Home & Rental Insurance', 420)
('Auto Insurance', 456)
('Puerto Rican', 26)
('Pet Adoption', 147)
('Pharmacy', 423)
('Customized Merchandise', 154)
('Outdoor Furniture Stores', 106)
('Noodles', 476)
('Wills', 85)
('Trusts', 85)
('& Probates', 85)
('Estate Planning Law', 179)
('Business Law', 130)
('Elementary Schools', 548)
('Dance Schools', 207)
('Driving Schools', 147)
('Religious Organizations', 547)
('Churches', 416)
('Tobacco Shops', 873)
('Pool & Hot Tub Service', 624)
('Cinema', 490)
('Office Equipment', 387)
('Bowling', 234)
('Home Health Care', 268)
('Medical Transportation', 41)
('Mountain Biking', 82)
('Medical Supplies', 192)
('Dermatologists', 296)
('Cosmetic Surgeons', 418)
('CPR Classes', 49)
('Food Stands', 335)
('Waffles', 119)
('Pool Halls', 224)
('Midwives', 80)
('Gay Bars', 176)
('Dinner Theater', 20)
('Parking', 166)
('Bagels', 615)
('Animal Shelters', 144)
('Pediatric Dentists', 647)
('Neurologist', 114)
('Dog Parks', 155)
('Notaries', 562)
('Mailbox Centers', 321)
('DJs', 197)
('Delicatessen', 144)
('Truck Rental', 282)
('Propane', 95)
('Packing Supplies', 145)
('Counseling & Mental Health', 410)
('Horseback Riding', 85)
('Horse Boarding', 33)
('Shoe Shine', 23)
('Transmission Repair', 601)
('Guest Houses', 36)
('Reflexology', 488)
('Door Sales/Installation', 291)
('Cardio Classes', 124)
('Fondue', 50)
('Popcorn Shops', 60)
('Piercing', 426)
('Tiki Bars', 16)
('Cantonese', 106)
('Races & Competitions', 36)
('Food Trucks', 857)
('Home Inspectors', 339)
('Bespoke Clothing', 127)
('Osteopathic Physicians', 62)
('Junk Removal & Hauling', 297)
('Fruits & Veggies', 412)
('Farmers Market', 437)
('Employment Law', 67)
('Legal Services', 226)
('Swimwear', 129)
('Boot Camps', 390)
('Cannabis Dispensaries', 104)
('Cannabis Clinics', 174)
('Ophthalmologists', 392)
('Laser Eye Surgery/Lasik', 224)
('Middle Schools & High Schools', 266)
('Tennis', 108)
('Amateur Sports Teams', 217)
('Photography Stores & Services', 559)
('Boxing', 217)
('Lighting Fixtures & Equipment', 391)
('Podiatrists', 183)
('Videos & Video Game Rental', 316)
('Television Service Providers', 200)
('Telecommunications', 311)
('Chicken Shop', 574)
('Vitamins & Supplements', 305)
('Post Offices', 285)
('Foundation Repair', 28)
('Waterproofing', 59)
('Walking Tours', 53)
('Farms', 52)
('Cards & Stationery', 351)
('Taekwondo', 53)
('Martial Arts', 547)
('Pediatricians', 374)
('Soccer', 76)
('Playgrounds', 306)
('Emergency Rooms', 51)
('Pilates', 375)
('Sports Clubs', 497)
('Tea Rooms', 455)
('Emergency Pet Hospital', 81)
('Cosmetology Schools', 168)
('Vocational & Technical School', 110)
('Blood & Plasma Donation Centers', 43)
('African', 148)
('Body Contouring', 66)
('Tattoo Removal', 151)
('Pet Boarding', 259)
('Outlet Stores', 354)
('Beer Bar', 470)
('Musical Instruments & Teachers', 373)
('Kosher', 131)
('Ukrainian', 25)
('Bingo Halls', 16)
('Whiskey Bars', 50)
('Video Game Stores', 126)
('Hot Pot', 124)
('Malaysian', 75)
('Champagne Bars', 22)
('Public Transportation', 213)
('TV Mounting', 95)
('Home Theatre Installation', 186)
('Professional Sports Teams', 77)
('Head Shops', 179)
('Cryotherapy', 34)
('Auto Security', 43)
('Boat Dealers', 46)
('Karaoke', 362)
('Ticket Sales', 76)
('Musicians', 61)
('Gold Buyers', 170)
('Wine Tasting Room', 46)
('Wineries', 164)
('Firewood', 25)
('Utilities', 93)
('Surf Schools', 4)
('Boating', 171)
('Beaches', 68)
('Yelp Events', 93)
('RV Repair', 153)
('Cheese Tasting Classes', 3)
('Tasting Classes', 19)
('Cheese Shops', 201)
('Irish', 203)
('Bed & Breakfast', 203)
('Life Insurance', 247)
('Party Bus Rentals', 139)
('Souvenir Shops', 68)
('Archery', 42)
('Damage Restoration', 479)
('Shades & Blinds', 389)
('Shutters', 133)
('Candy Stores', 336)
('Country Clubs', 84)
('Pan Asian', 89)
('Hydrotherapy', 37)
('Orthopedists', 306)
('Pet Training', 599)
('Stadiums & Arenas', 188)
('Home Organization', 193)
('Security Services', 98)
('High Fidelity Audio Equipment', 32)
('Personal Chefs', 106)
('Sri Lankan', 41)
('Seafood Markets', 219)
('Attraction Farms', 12)
('Pumpkin Patches', 13)
('Amusement Parks', 399)
('Comic Books', 197)
('Urologists', 65)
('Rodeo', 1)
('Bistros', 144)
('Furniture Reupholstery', 244)
('Rheumatologists', 18)
('Climbing', 54)
('Mobile Home Parks', 17)
('Mobile Home Dealers', 8)
('Hats', 64)
('Social Clubs', 197)
('Party Bike Rentals', 10)
('Trampoline Parks', 70)
('Criminal Defense Law', 299)
('Street Vendors', 362)
('Swimming Pools', 483)
('Colleges & Universities', 298)
('Gutter Services', 157)
('Wedding Chapels', 78)
('Holiday Decorating Services', 15)
('Wholesalers', 91)
('Pretzels', 84)
('Pulmonologist', 29)
('Hydroponics', 11)
('Endocrinologists', 57)
('Check Cashing/Pay-day Loans', 195)
('Installment Loans', 46)
('Personal Shopping', 194)
('Dry Cleaning', 436)
('Kebab', 78)
('Auto Upholstery', 69)
('Aviation Services', 3)
('Water Parks', 14)
('Circuit Training Gyms', 40)
('Music & DVDs', 305)
('Day Camps', 40)
('Community Centers', 54)
('Pet Photography', 46)
('Bounce House Rentals', 22)
('Embroidery & Crochet', 110)
('Shaved Ice', 242)
('Oncologist', 55)
('Embassy', 12)
('Breweries', 543)
('Pet Waste Removal', 20)
('Maternity Wear', 72)
('Boat Charters', 51)
('Marinas', 11)
('Boat Repair', 88)
('Sleep Specialists', 63)
('General Litigation', 190)
('Swimming Lessons/Schools', 93)
('Paint-Your-Own Pottery', 36)
('Mobile Phone Accessories', 422)
('Condominiums', 46)
('Vinyl Records', 140)
('Stucco Services', 54)
('Drywall Installation & Repair', 217)
('Pressure Washers', 251)
('Meditation Centers', 101)
('Tai Chi', 35)
('Wildlife Control', 52)
('Hearing Aid Providers', 75)
('Audiologist', 90)
('Hungarian', 32)
('British', 156)
('Auto Loan Providers', 224)
('Vascular Medicine', 21)
('Public Markets', 22)
('Courthouses', 31)
('Dance Studios', 367)
('Kids Activities', 334)
('German', 103)
('Festivals', 459)
('Occupational Therapy', 113)
('Wholesale Stores', 348)
('Carpet Installation', 188)
('Periodontists', 488)
('Afghan', 133)
('Customs Brokers', 1)
('Tabletop Games', 80)
('Appraisal Services', 71)
('Ethical Grocery', 21)
('Home Window Tinting', 206)
('Brazilian', 90)
('Ear Nose & Throat', 117)
('Brewpubs', 69)
('Furniture Repair', 74)
('Tui Na', 22)
('Commercial Truck Dealers', 37)
('Basketball Courts', 17)
('Psychiatrists', 99)
('Cheesesteaks', 214)
('Real Estate Photography', 54)
('Laotian', 26)
('Surgeons', 172)
('Beer Tours', 25)
('Bar Crawl', 15)
('Team Building Activities', 100)
('Career Counseling', 99)
('Plastic Surgeons', 88)
('Glass & Mirrors', 226)
('Adult', 159)
('Honduran', 6)
('Salvadoran', 70)
('Nicaraguan', 2)
('Siding', 80)
('Screen Printing/T-Shirt Printing', 184)
('Fabric Stores', 221)
('Used Bookstore', 30)
('Immigration Law', 83)
('Ethiopian', 84)
('Environmental Testing', 21)
('Environmental Abatement', 30)
('Falafel', 137)
('Water Delivery', 45)
('Gymnastics', 124)
('Cooking Classes', 74)
('Fishing', 43)
('Threading Services', 279)
('Uniforms', 101)
('Title Loans', 99)
('Home Staging', 84)
('Bankruptcy Law', 183)
('Campgrounds', 60)
('RV Parks', 61)
('Patio Coverings', 110)
('Magicians', 56)
('Restaurant Supplies', 23)
('Float Spa', 31)
('Oxygen Bars', 17)
('Vacation Rental Agents', 38)
('Water Purification Services', 200)
('Hydro-jetting', 52)
('Spanish', 193)
('Sugar Shacks', 10)
('Recording & Rehearsal Studios', 52)
('Food Tours', 39)
('Pet Cremation Services', 39)
('Clock Repair', 24)
('Watch Repair', 236)
('Leisure Centers', 68)
('Knitting Supplies', 142)
('CSA', 17)
('Elder Care Planning', 12)
('Business Financing', 28)
('Car Brokers', 19)
('Car Buyers', 64)
('Muay Thai', 23)
('Kickboxing', 73)
('Preventive Medicine', 22)
('Concierge Medicine', 18)
('Metal Fabricators', 117)
('Mortuary Services', 24)
('Excavation Services', 20)
('Safe Stores', 33)
('Health Coach', 36)
('Alternative Medicine', 30)
('Karate', 58)
('Golf Equipment', 89)
('Skate Parks', 39)
('Smokehouse', 62)
('Teeth Whitening', 116)
('Basque', 30)
('Architects', 54)
('Local Fish Stores', 29)
('Aquarium Services', 45)
('Registration Services', 84)
('Commercial Truck Repair', 76)
('Engraving', 44)
('Trophy Shops', 36)
('Rock Climbing', 33)
('International Grocery', 147)
('Ethnic Grocery', 33)
('Commissioned Artists', 16)
('Home Network Installation', 49)
('Data Recovery', 185)
('Distilleries', 43)
('Home Energy Auditors', 34)
('Observatories', 9)
('Candle Stores', 57)
('Live/Raw Food', 78)
('Gun/Rifle Ranges', 153)
('Officiants', 58)
('Pet Breeders', 27)
('Private Tutors', 134)
('Spray Tanning', 372)
('Golf Lessons', 62)
('Mini Golf', 101)
('Laser Tag', 60)
('Go Karts', 41)
('Shared Office Spaces', 109)
('Gardeners', 314)
('Macarons', 68)
('Water Stores', 56)
('Zoos', 46)
('Petting Zoos', 4)
('Piano Bars', 29)
('Venezuelan', 34)
('Religious Schools', 34)
('Grilling Equipment', 35)
('Translation Services', 25)
('Irrigation', 316)
('Arabian', 69)
('Test Preparation', 93)
('Hospice', 79)
('Demolition Services', 35)
('Planetarium', 5)
('Prosthetics', 34)
('Orthotics', 72)
('Opera & Ballet', 36)
('Barre Classes', 165)
('Henna Artists', 68)
('Software Development', 36)
('Russian', 61)
('Prenatal/Perinatal Care', 30)
('Lactation Services', 43)
('Motorcycle Gear', 85)
('Jazz & Blues', 148)
('Special Education', 98)
('Adult Education', 182)
('Izakaya', 24)
('Bartending Schools', 15)
('Colonics', 39)
('Septic Services', 105)
('Motorsport Vehicle Repairs', 22)
('University Housing', 105)
('Nurse Practitioner', 28)
('Psychologists', 56)
('Gastroenterologist', 72)
('Payroll Services', 115)
('Retirement Homes', 164)
('Firearm Training', 60)
('Acai Bowls', 100)
('Train Stations', 59)
('RV Dealers', 136)
('RV Rental', 85)
('South African', 21)
('Montessori Schools', 51)
('Trailer Dealers', 35)
('Departments of Motor Vehicles', 142)
('Trains', 6)
('Cremation Services', 41)
('Editorial Services', 25)
('Flea Markets', 49)
('Beach Bars', 4)
('Screen Printing', 135)
('Roadside Assistance', 146)
('Belgian', 51)
('Radio Stations', 99)
('Travel Agents', 51)
('Luggage', 76)
('Skating Rinks', 98)
('Tutoring Centers', 177)
('Wigs', 135)
('Fire Protection Services', 45)
('Framing', 157)
('Cultural Center', 38)
('IP & Internet Law', 9)
('Real Estate Law', 157)
('Personal Care Services', 35)
('Junkyards', 5)
('Recycling Center', 144)
('Rotisserie Chicken', 1)
('Private Investigation', 53)
('Snow Removal', 74)
('Countertop Installation', 153)
('Farming Equipment', 44)
('Farm Equipment Repair', 29)
('Brewing Supplies', 32)
('Animal Physical Therapy', 5)
('Skilled Nursing', 55)
('Nursing Schools', 8)
('Virtual Reality Centers', 12)
('Neurotologists', 12)
('Hazardous Waste Disposal', 10)
('Perfume', 13)
('Cardiologists', 123)
('Senior Centers', 9)
('Pasta Shops', 77)
('Drive-In Theater', 10)
('Decks & Railing', 79)
('Playsets', 3)
('Pole Dancing Classes', 16)
('Vehicle Shipping', 56)
('Dental Hygienists', 63)
('Batting Cages', 31)
('Balloon Services', 35)
('Workers Compensation Law', 41)
('Disability Law', 7)
('Donairs', 66)
('Language Schools', 35)
('New Mexican Cuisine', 55)
('Shredding Services', 52)
('Indoor Playcentre', 37)
('Medical Cannabis Referrals', 27)
('IV Hydration', 50)
('Speech Therapists', 60)
('Cycling Classes', 93)
('Racing Experience', 13)
('Misting System Services', 10)
('Skate Shops', 53)
('Visitor Centers', 7)
('Challenge Courses', 68)
('Lighting Stores', 23)
('Debt Relief Services', 41)
('Fitness/Exercise Equipment', 98)
('Speakeasies', 35)
('Fertility', 62)
('Cambodian', 42)
('Bookkeepers', 64)
('Solar Panel Cleaning', 36)
('Trinidadian', 6)
('Syrian', 10)
('Face Painting', 38)
('Assisted Living Facilities', 86)
('Generator Installation/Repair', 22)
('Race Tracks', 48)
('Beverage Store', 30)
('Golf Cart Rentals', 17)
('Golf Cart Dealers', 16)
('Knife Sharpening', 30)
('Television Stations', 40)
('Home Automation', 148)
('Currency Exchange', 30)
('Product Design', 15)
('Mobile Dent Repair', 45)
('Religious Items', 14)
('Estheticians', 28)
('Squash', 12)
('Aerial Fitness', 23)
('Service Stations', 72)
('Hostels', 60)
('Trailer Repair', 61)
('Process Servers', 24)
('Home Developers', 20)
('Szechuan', 99)
('Scottish', 4)
('Veterans Organizations', 4)
('Social Security Law', 17)
('Habilitative Services', 2)
('Brazilian Jiu-jitsu', 54)
('Jet Skis', 22)
('Immunodermatologists', 7)
('Street Art', 1)
('Historical Tours', 46)
('Awnings', 55)
('Food Court', 202)
('Tickets', 5)
('Bartenders', 46)
('Mobile Home Repair', 7)
('Artificial Turf', 93)
('Spin Classes', 11)
('Spine Surgeons', 27)
('Argentine', 46)
('Bookbinding', 10)
('Insulation Installation', 64)
('Pop-up Shops', 31)
('Diving', 55)
('Scuba Diving', 46)
('Health Retreats', 29)
('Ice Delivery', 12)
('Pool & Billiards', 50)
('Roof Inspectors', 26)
('Piano Stores', 16)
('Dive Shops', 8)
('Rolfing', 18)
('Snorkeling', 3)
('Wine Tours', 35)
('Airport Terminals', 29)
('Saunas', 40)
('Hong Kong Style Cafe', 11)
('Australian', 11)
('Boudoir Photography', 56)
('Car Share Services', 15)
('Horse Racing', 7)
('Land Surveying', 5)
('Bail Bondsmen', 33)
('Ultrasound Imaging Centers', 12)
('Massage Schools', 35)
('Carpenters', 88)
('Cuban', 77)
('Well Drilling', 7)
('Hypnosis/Hypnotherapy', 71)
('Clowns', 18)