diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md deleted file mode 100644 index 381315a15..000000000 --- a/docs/guides/places/_README.md +++ /dev/null @@ -1,144 +0,0 @@ -# Taxonomy Browser - -An interactive tool for exploring and comparing Overture Maps Places taxonomy releases. - -## Adding a New Release - -To add a new release, only edit `taxonomy-browser.mdx` — no component code changes are needed. - -### 1. Add CSV files - -Place two CSV files in the `csv/` directory: - -- **Data CSV**: Contains the taxonomy hierarchy and category mappings. -- **Counts CSV**: Contains place counts per category. Expected columns: `count`, `primary_category`, and optionally `basic_category`. - -### 2. Add imports - -At the top of `taxonomy-browser.mdx`, add raw-loader imports for your new files: - -```js -import newDataCsv from '!!raw-loader!./csv/YYYY-MM-DD-New-Release.csv'; -import newCountsCsv from '!!raw-loader!./csv/YYYY-MM-DD-counts.csv'; -``` - -### 3. Add a release entry - -Add an object to the `releases` array in `taxonomy-browser.mdx`: - -```jsx -{ - id: 'uniqueId', - label: 'Month (Short Description)', - releaseUrl: 'https://docs.overturemaps.org/blog/...', - note: 'Optional note displayed in the detail panel.', - tags: [ - { label: 'DD Month YYYY', title: 'Date' }, - { label: 'YYYY-MM-DD.0', title: 'Data version' }, - { label: 'vX.Y.Z', title: 'Schema version' }, - ], - dataCsv: newDataCsv, - countsCsv: newCountsCsv, - // Field mappings (see below) - codeField: 'column_name', - fieldNames: ['col1', 'col2', ...], - basicCategoryField: 'basic_col_name' // or null - // Plus one of the two hierarchy modes -} -``` - -### Hierarchy modes - -Choose one depending on the structure of the data CSV: - -**Multi-field** — The hierarchy is constructed by joining multiple columns. Use when the CSV has separate columns like `theme`, `category`, `sub_category`, etc. - -```js -hierarchyFields: ['theme', 'category', 'sub_category', 'speciality'], -``` - -**Single-field** — The CSV already contains a `" > "`-delimited hierarchy string in one column. - -```js -hierarchyField: 'hierarchy_column_name', -``` - -### Field reference - -| Field | Required | Description | -| --- | --- | --- | -| `id` | Yes | Unique identifier for this release | -| `label` | Yes | Display label shown in the dropdown and section headers | -| `releaseUrl` | No | Link for the release date tag | -| `note` | No | Note shown in the collapsible detail section | -| `tags` | Yes | Array of `{ label, title }` for the info row | -| `dataCsv` | Yes | Raw-loader import of the data CSV | -| `countsCsv` | No | Raw-loader import of the counts CSV, or `null` | -| `fieldNames` | Yes | Column names in order, mapping CSV columns to object keys | -| `codeField` | Yes | Which field in `fieldNames` is the category code | -| `hierarchyFields` | * | Array of fields to join into a hierarchy path | -| `hierarchyField` | * | Single field containing a pre-built `" > "` hierarchy | -| `basicCategoryField` | No | Field holding the basic-level category label, or `null` | -| `enabled` | No | Set to `false` to hide this release from the built site. Defaults to `true` | -| `displayFields` | No | Array of `{ field, label }` for extra key-value rows in the detail panel | -| `matchColumn` | No | Column containing a code from another release for cross-tab matching | -| `matchType` | No | Which release's codes `matchColumn` maps to: `'original'` or `'new'` | - -\* Exactly one of `hierarchyFields` or `hierarchyField` is required. - -### Cross-tab matching - -When category codes change between releases, set `matchColumn` and `matchType` so the detail panel can find the corresponding entry across tabs. - -- `matchColumn` — a column in the data CSV that holds a code from a different release (e.g. `old_primary_category`) -- `matchType`: - - `'original'` — the `matchColumn` values correspond to the first release's category codes. Use this when the column maps back to the original taxonomy. - - `'new'` — the `matchColumn` values correspond to the immediately previous release's category codes. Use this when releases change incrementally. - -This does two things: - -1. **Cross-tab lookup**: entries are also indexed by the `matchColumn` value, so selecting a category on one tab finds the matching data in releases that renamed it. -2. **Change indicators**: `prevCount` is resolved using the `matchColumn` value against the appropriate prior release's counts. - -If `matchColumn` is not set, cross-tab matching uses the `codeField` value directly (works when codes are the same across releases). - -### Release ordering - -Releases are compared in array order. The first release has no previous-release comparison. Each subsequent release computes change indicators against the one before it. Place new releases at the end of the array. - -### Visibility and missing data - -Set `enabled: false` on a release entry in `taxonomy-browser.mdx` to exclude it from the built site: - -```jsx -{ - id: 'february', - enabled: false, // hidden from the site until ready - label: 'February (Bug Fixes, Simplified Basic)', - // ... -} -``` - -The release stays in the config for future use — just flip it to `true` (or remove the property) when ready. Only enabled releases appear in the dropdown, tree, and detail panel. - -If `countsCsv` is `null`, the stats row shows "No Data" instead of counts, and the tree nodes won't display count badges. - -### Display fields - -Use `displayFields` to show extra key-value rows from the CSV data in the detail panel. Each entry maps a CSV column (`field`) to a label. Fields with empty values are automatically skipped. - -```jsx -displayFields: [ - { field: 'match_type', label: 'Match Type' }, - { field: 'modified', label: 'Modified' }, -], -``` - -These appear after the hierarchy levels and basic category, but before counts and percentile tags. Current releases use: - -| Release | Display fields | -| --- | --- | -| April | `category_key` | -| October | `match_type`, `modified`, `remove_from_v1` | -| December | `old_primary_category`, `old_primary_hierarchy` | -| February | `new_display_name`, `is_basic`, `added`, `renamed`, `removed`, `redirect_to` | diff --git a/docs/guides/places/csv/2025-04-01-Original-Taxonomy.csv b/docs/guides/places/csv/2025-04-01-Original-Taxonomy.csv deleted file mode 100644 index 7b49e82ee..000000000 --- a/docs/guides/places/csv/2025-04-01-Original-Taxonomy.csv +++ /dev/null @@ -1,2118 +0,0 @@ -category_key,theme,category,sub_category,speciality -bed_and_breakfast,accommodation,bed_and_breakfast,, -cabin,accommodation,cabin,, -campground,accommodation,campground,, -cottage,accommodation,cottage,, -guest_house,accommodation,guest_house,, -health_retreats,accommodation,health_retreats,, -holiday_rental_home,accommodation,holiday_rental_home,, -hostel,accommodation,hostel,, -hotel,accommodation,hotel,, -inn,accommodation,inn,, -lodge,accommodation,lodge,, -motel,accommodation,motel,, -mountain_huts,accommodation,mountain_huts,, -beach_resort,accommodation,resort,beach_resort, -resort,accommodation,resort,, -rv_park,accommodation,rv_park,, -service_apartments,accommodation,service_apartments,, -accommodation,accommodation,,, -aerial_fitness_center,active_life,sports_and_fitness_instruction,aerial_fitness_center, -barre_classes,active_life,sports_and_fitness_instruction,barre_classes, -boot_camp,active_life,sports_and_fitness_instruction,boot_camp, -boxing_class,active_life,sports_and_fitness_instruction,boxing_class, -boxing_club,active_life,sports_and_fitness_instruction,boxing_club, -boxing_gym,active_life,sports_and_fitness_instruction,boxing_gym, -cardio_classes,active_life,sports_and_fitness_instruction,cardio_classes, -climbing_class,active_life,sports_and_fitness_instruction,climbing_class, -cycling_classes,active_life,sports_and_fitness_instruction,cycling_classes, -dance_school,active_life,sports_and_fitness_instruction,dance_school, -free_diving_instruction,active_life,sports_and_fitness_instruction,diving_instruction,free_diving_instruction -scuba_diving_instruction,active_life,sports_and_fitness_instruction,diving_instruction,scuba_diving_instruction -ems_training,active_life,sports_and_fitness_instruction,ems_training, -fitness_trainer,active_life,sports_and_fitness_instruction,fitness_trainer, -golf_instructor,active_life,sports_and_fitness_instruction,golf_instructor, -health_consultant,active_life,sports_and_fitness_instruction,health_consultant, -meditation_center,active_life,sports_and_fitness_instruction,meditation_center, -paddleboarding_lessons,active_life,sports_and_fitness_instruction,paddleboarding_lessons, -pilates_studio,active_life,sports_and_fitness_instruction,pilates_studio, -qi_gong_studio,active_life,sports_and_fitness_instruction,qi_gong_studio, -racing_experience,active_life,sports_and_fitness_instruction,racing_experience, -rock_climbing_instructor,active_life,sports_and_fitness_instruction,rock_climbing_instructor, -self_defense_classes,active_life,sports_and_fitness_instruction,self_defense_classes, -ski_and_snowboard_school,active_life,sports_and_fitness_instruction,ski_and_snowboard_school, -surfing_school,active_life,sports_and_fitness_instruction,surfing_school, -swimming_instructor,active_life,sports_and_fitness_instruction,swimming_instructor, -tai_chi_studio,active_life,sports_and_fitness_instruction,tai_chi_studio, -yoga_instructor,active_life,sports_and_fitness_instruction,yoga_instructor, -yoga_studio,active_life,sports_and_fitness_instruction,yoga_studio, -sports_and_fitness_instruction,active_life,sports_and_fitness_instruction,, -beach_equipment_rentals,active_life,sports_and_recreation_rental_and_services,beach_equipment_rentals, -bike_rentals,active_life,sports_and_recreation_rental_and_services,bike_rentals, -canoe_and_kayak_hire_service,active_life,sports_and_recreation_rental_and_services,boat_hire_service,canoe_and_kayak_hire_service -scooter_rental,active_life,sports_and_recreation_rental_and_services,scooter_rental, -sport_equipment_rentals,active_life,sports_and_recreation_rental_and_services,sport_equipment_rentals, -sports_and_recreation_rental_and_services,active_life,sports_and_recreation_rental_and_services,, -adventure_sports_center,active_life,sports_and_recreation_venue,adventure_sports_center, -airsoft_fields,active_life,sports_and_recreation_venue,airsoft_fields, -american_football_field,active_life,sports_and_recreation_venue,american_football_field, -archery_range,active_life,sports_and_recreation_venue,archery_range, -atv_recreation_park,active_life,sports_and_recreation_venue,atv_recreation_park, -badminton_court,active_life,sports_and_recreation_venue,badminton_court, -baseball_field,active_life,sports_and_recreation_venue,baseball_field, -basketball_court,active_life,sports_and_recreation_venue,basketball_court, -batting_cage,active_life,sports_and_recreation_venue,batting_cage, -beach_volleyball_court,active_life,sports_and_recreation_venue,beach_volleyball_court, -bicycle_path,active_life,sports_and_recreation_venue,bicycle_path, -bocce_ball_court,active_life,sports_and_recreation_venue,bocce_ball_court, -bowling_alley,active_life,sports_and_recreation_venue,bowling_alley, -bubble_soccer_field,active_life,sports_and_recreation_venue,bubble_soccer_field, -disc_golf_course,active_life,sports_and_recreation_venue,disc_golf_course, -free_diving_center,active_life,sports_and_recreation_venue,diving_center,free_diving_center -scuba_diving_center,active_life,sports_and_recreation_venue,diving_center,scuba_diving_center -diving_center,active_life,sports_and_recreation_venue,diving_center, -flyboarding_center,active_life,sports_and_recreation_venue,flyboarding_center, -futsal_field,active_life,sports_and_recreation_venue,futsal_field, -driving_range,active_life,sports_and_recreation_venue,golf_course,driving_range -golf_course,active_life,sports_and_recreation_venue,golf_course, -gym,active_life,sports_and_recreation_venue,gym, -gymnastics_center,active_life,sports_and_recreation_venue,gymnastics_center, -handball_court,active_life,sports_and_recreation_venue,handball_court, -hang_gliding_center,active_life,sports_and_recreation_venue,hang_gliding_center, -hockey_field,active_life,sports_and_recreation_venue,hockey_field, -equestrian_facility,active_life,sports_and_recreation_venue,horse_riding,equestrian_facility -horse_racing_track,active_life,sports_and_recreation_venue,horse_riding,horse_racing_track -horse_riding,active_life,sports_and_recreation_venue,horse_riding, -kiteboarding,active_life,sports_and_recreation_venue,kiteboarding, -miniature_golf_course,active_life,sports_and_recreation_venue,miniature_golf_course, -paddleboarding_center,active_life,sports_and_recreation_venue,paddleboarding_center, -playground,active_life,sports_and_recreation_venue,playground, -pool_hall,active_life,sports_and_recreation_venue,pool_billiards,pool_hall -pool_billiards,active_life,sports_and_recreation_venue,pool_billiards, -race_track,active_life,sports_and_recreation_venue,race_track, -racquetball_court,active_life,sports_and_recreation_venue,racquetball_court, -rock_climbing_gym,active_life,sports_and_recreation_venue,rock_climbing_gym, -rugby_pitch,active_life,sports_and_recreation_venue,rugby_pitch, -shooting_range,active_life,sports_and_recreation_venue,shooting_range, -skate_park,active_life,sports_and_recreation_venue,skate_park, -ice_skating_rink,active_life,sports_and_recreation_venue,skating_rink,ice_skating_rink -roller_skating_rink,active_life,sports_and_recreation_venue,skating_rink,roller_skating_rink -skating_rink,active_life,sports_and_recreation_venue,skating_rink, -sky_diving,active_life,sports_and_recreation_venue,sky_diving, -soccer_field,active_life,sports_and_recreation_venue,soccer_field, -squash_court,active_life,sports_and_recreation_venue,squash_court, -swimming_pool,active_life,sports_and_recreation_venue,swimming_pool, -tennis_court,active_life,sports_and_recreation_venue,tennis_court, -trampoline_park,active_life,sports_and_recreation_venue,trampoline_park, -tubing_provider,active_life,sports_and_recreation_venue,tubing_provider, -volleyball_court,active_life,sports_and_recreation_venue,volleyball_court, -wildlife_hunting_range,active_life,sports_and_recreation_venue,wildlife_hunting_range, -zorbing_center,active_life,sports_and_recreation_venue,zorbing_center, -sports_and_recreation_venue,active_life,sports_and_recreation_venue,, -amateur_sports_league,active_life,sports_club_and_league,amateur_sports_league, -amateur_sports_team,active_life,sports_club_and_league,amateur_sports_team, -beach_volleyball_club,active_life,sports_club_and_league,beach_volleyball_club, -esports_league,active_life,sports_club_and_league,esports_league, -esports_team,active_life,sports_club_and_league,esports_team, -fencing_club,active_life,sports_club_and_league,fencing_club, -fishing_club,active_life,sports_club_and_league,fishing_club, -football_club,active_life,sports_club_and_league,football_club, -go_kart_club,active_life,sports_club_and_league,go_kart_club, -indoor_golf_center,active_life,sports_club_and_league,golf_club,indoor_golf_center -golf_club,active_life,sports_club_and_league,golf_club, -gymnastics_club,active_life,sports_club_and_league,gymnastics_club, -lawn_bowling_club,active_life,sports_club_and_league,lawn_bowling_club, -brazilian_jiu_jitsu_club,active_life,sports_club_and_league,martial_arts_club,brazilian_jiu_jitsu_club -chinese_martial_arts_club,active_life,sports_club_and_league,martial_arts_club,chinese_martial_arts_club -karate_club,active_life,sports_club_and_league,martial_arts_club,karate_club -kickboxing_club,active_life,sports_club_and_league,martial_arts_club,kickboxing_club -muay_thai_club,active_life,sports_club_and_league,martial_arts_club,muay_thai_club -taekwondo_club,active_life,sports_club_and_league,martial_arts_club,taekwondo_club -martial_arts_club,active_life,sports_club_and_league,martial_arts_club, -nudist_clubs,active_life,sports_club_and_league,nudist_clubs, -paddle_tennis_club,active_life,sports_club_and_league,paddle_tennis_club, -professional_sports_league,active_life,sports_club_and_league,professional_sports_league, -professional_sports_team,active_life,sports_club_and_league,professional_sports_team, -rowing_club,active_life,sports_club_and_league,rowing_club, -sailing_club,active_life,sports_club_and_league,sailing_club, -school_sports_league,active_life,sports_club_and_league,school_sports_league, -school_sports_team,active_life,sports_club_and_league,school_sports_team, -soccer_club,active_life,sports_club_and_league,soccer_club, -surf_lifesaving_club,active_life,sports_club_and_league,surf_lifesaving_club, -table_tennis_club,active_life,sports_club_and_league,table_tennis_club, -volleyball_club,active_life,sports_club_and_league,volleyball_club, -sports_club_and_league,active_life,sports_club_and_league,, -active_life,active_life,,, -erotic_massage,arts_and_entertainment,adult_entertainment,erotic_massage, -strip_club,arts_and_entertainment,adult_entertainment,strip_club, -striptease_dancer,arts_and_entertainment,adult_entertainment,striptease_dancer, -adult_entertainment,arts_and_entertainment,adult_entertainment,, -arcade,arts_and_entertainment,arcade,, -auditorium,arts_and_entertainment,auditorium,, -bar_crawl,arts_and_entertainment,bar_crawl,, -betting_center,arts_and_entertainment,betting_center,, -bingo_hall,arts_and_entertainment,bingo_hall,, -bookmakers,arts_and_entertainment,bookmakers,, -cabaret,arts_and_entertainment,cabaret,, -carousel,arts_and_entertainment,carousel,, -casino,arts_and_entertainment,casino,, -chamber_of_handicraft,arts_and_entertainment,chamber_of_handicraft,, -choir,arts_and_entertainment,choir,, -drive_in_theater,arts_and_entertainment,cinema,drive_in_theater, -outdoor_movies,arts_and_entertainment,cinema,outdoor_movies, -cinema,arts_and_entertainment,cinema,, -circus,arts_and_entertainment,circus,, -club_crawl,arts_and_entertainment,club_crawl,, -comedy_club,arts_and_entertainment,comedy_club,, -country_club,arts_and_entertainment,country_club,, -country_dance_hall,arts_and_entertainment,country_dance_hall,, -dance_club,arts_and_entertainment,dance_club,, -dinner_theater,arts_and_entertainment,dinner_theater,, -eatertainment,arts_and_entertainment,eatertainment,, -escape_rooms,arts_and_entertainment,escape_rooms,, -exhibition_and_trade_center,arts_and_entertainment,exhibition_and_trade_center,, -attraction_farm,arts_and_entertainment,farm,attraction_farm, -orchard,arts_and_entertainment,farm,orchard, -pick_your_own_farm,arts_and_entertainment,farm,pick_your_own_farm, -poultry_farm,arts_and_entertainment,farm,poultry_farm, -ranch,arts_and_entertainment,farm,ranch, -farm,arts_and_entertainment,farm,, -fair,arts_and_entertainment,festival,fair, -film_festivals_and_organizations,arts_and_entertainment,festival,film_festivals_and_organizations, -general_festivals,arts_and_entertainment,festival,general_festivals, -holiday_market,arts_and_entertainment,festival,holiday_market, -music_festivals_and_organizations,arts_and_entertainment,festival,music_festivals_and_organizations, -trade_fair,arts_and_entertainment,festival,trade_fair, -festival,arts_and_entertainment,festival,, -glass_blowing,arts_and_entertainment,glass_blowing,, -indoor_playcenter,arts_and_entertainment,indoor_playcenter,, -internet_cafe,arts_and_entertainment,internet_cafe,, -jazz_and_blues,arts_and_entertainment,jazz_and_blues,, -karaoke,arts_and_entertainment,karaoke,, -laser_tag,arts_and_entertainment,laser_tag,, -makerspace,arts_and_entertainment,makerspace,, -marching_band,arts_and_entertainment,marching_band,, -music_venue,arts_and_entertainment,music_venue,, -musical_band_orchestras_and_symphonies,arts_and_entertainment,musical_band_orchestras_and_symphonies,, -opera_and_ballet,arts_and_entertainment,opera_and_ballet,, -paint_and_sip,arts_and_entertainment,paint_and_sip,, -paintball,arts_and_entertainment,paintball,, -performing_arts,arts_and_entertainment,performing_arts,, -planetarium,arts_and_entertainment,planetarium,, -rodeo,arts_and_entertainment,rodeo,, -salsa_club,arts_and_entertainment,salsa_club,, -fraternal_organization,arts_and_entertainment,social_club,fraternal_organization, -veterans_organization,arts_and_entertainment,social_club,veterans_organization, -social_club,arts_and_entertainment,social_club,, -baseball_stadium,arts_and_entertainment,stadium_arena,baseball_stadium, -basketball_stadium,arts_and_entertainment,stadium_arena,basketball_stadium, -cricket_ground,arts_and_entertainment,stadium_arena,cricket_ground, -football_stadium,arts_and_entertainment,stadium_arena,football_stadium, -hockey_arena,arts_and_entertainment,stadium_arena,hockey_arena, -rugby_stadium,arts_and_entertainment,stadium_arena,rugby_stadium, -soccer_stadium,arts_and_entertainment,stadium_arena,soccer_stadium, -tennis_stadium,arts_and_entertainment,stadium_arena,tennis_stadium, -track_stadium,arts_and_entertainment,stadium_arena,track_stadium, -stadium_arena,arts_and_entertainment,stadium_arena,, -studio_taping,arts_and_entertainment,studio_taping,, -astrologer,arts_and_entertainment,supernatural_reading,astrologer, -mystic,arts_and_entertainment,supernatural_reading,mystic, -psychic,arts_and_entertainment,supernatural_reading,psychic, -psychic_medium,arts_and_entertainment,supernatural_reading,psychic_medium, -supernatural_reading,arts_and_entertainment,supernatural_reading,, -theatre,arts_and_entertainment,theaters_and_performance_venues,theatre, -theaters_and_performance_venues,arts_and_entertainment,theaters_and_performance_venues,, -ticket_sales,arts_and_entertainment,ticket_sales,, -topic_concert_venue,arts_and_entertainment,topic_concert_venue,, -virtual_reality_center,arts_and_entertainment,virtual_reality_center,, -water_park,arts_and_entertainment,water_park,, -wildlife_sanctuary,arts_and_entertainment,wildlife_sanctuary,, -arts_and_entertainment,arts_and_entertainment,,, -amusement_park,attractions_and_activities,amusement_park,, -aquarium,attractions_and_activities,aquarium,, -architecture,attractions_and_activities,architecture,, -art_gallery,attractions_and_activities,art_gallery,, -atv_rentals_and_tours,attractions_and_activities,atv_rentals_and_tours,, -axe_throwing,attractions_and_activities,axe_throwing,, -backpacking_area,attractions_and_activities,backpacking_area,, -beach,attractions_and_activities,beach,, -beach_combing_area,attractions_and_activities,beach_combing_area,, -boat_rental_and_training,attractions_and_activities,boat_rental_and_training,, -boating_places,attractions_and_activities,boating_places,, -bobsledding_field,attractions_and_activities,bobsledding_field,, -botanical_garden,attractions_and_activities,botanical_garden,, -bungee_jumping_center,attractions_and_activities,bungee_jumping_center,, -canyon,attractions_and_activities,canyon,, -castle,attractions_and_activities,castle,, -cave,attractions_and_activities,cave,, -challenge_courses_center,attractions_and_activities,challenge_courses_center,, -cliff_jumping_center,attractions_and_activities,cliff_jumping_center,, -climbing_service,attractions_and_activities,climbing_service,, -crater,attractions_and_activities,crater,, -cultural_center,attractions_and_activities,cultural_center,, -fishing_charter,attractions_and_activities,fishing_charter,, -flyboarding_rental,attractions_and_activities,flyboarding_rental,, -fort,attractions_and_activities,fort,, -fountain,attractions_and_activities,fountain,, -go_kart_track,attractions_and_activities,go_kart_track,, -haunted_house,attractions_and_activities,haunted_house,, -high_gliding_center,attractions_and_activities,high_gliding_center,, -horseback_riding_service,attractions_and_activities,horseback_riding_service,, -hot_air_balloons_tour,attractions_and_activities,hot_air_balloons_tour,, -hot_springs,attractions_and_activities,hot_springs,, -jet_skis_rental,attractions_and_activities,jet_skis_rental,, -kiteboarding_instruction,attractions_and_activities,kiteboarding_instruction,, -lake,attractions_and_activities,lake,, -landmark_and_historical_building,attractions_and_activities,landmark_and_historical_building,, -lighthouse,attractions_and_activities,lighthouse,, -lookout,attractions_and_activities,lookout,, -marina,attractions_and_activities,marina,, -monument,attractions_and_activities,monument,, -mountain_bike_parks,attractions_and_activities,mountain_bike_parks,, -asian_art_museum,attractions_and_activities,museum,art_museum,asian_art_museum -cartooning_museum,attractions_and_activities,museum,art_museum,cartooning_museum -contemporary_art_museum,attractions_and_activities,museum,art_museum,contemporary_art_museum -costume_museum,attractions_and_activities,museum,art_museum,costume_museum -decorative_arts_museum,attractions_and_activities,museum,art_museum,decorative_arts_museum -design_museum,attractions_and_activities,museum,art_museum,design_museum -modern_art_museum,attractions_and_activities,museum,art_museum,modern_art_museum -photography_museum,attractions_and_activities,museum,art_museum,photography_museum -textile_museum,attractions_and_activities,museum,art_museum,textile_museum -art_museum,attractions_and_activities,museum,art_museum, -aviation_museum,attractions_and_activities,museum,aviation_museum, -children's_museum,attractions_and_activities,museum,children's_museum, -civilization_museum,attractions_and_activities,museum,history_museum,civilization_museum -community_museum,attractions_and_activities,museum,history_museum,community_museum -history_museum,attractions_and_activities,museum,history_museum, -military_museum,attractions_and_activities,museum,military_museum, -national_museum,attractions_and_activities,museum,national_museum, -computer_museum,attractions_and_activities,museum,science_museum,computer_museum -science_museum,attractions_and_activities,museum,science_museum, -sports_museum,attractions_and_activities,museum,sports_museum, -state_museum,attractions_and_activities,museum,state_museum, -museum,attractions_and_activities,museum,, -observatory,attractions_and_activities,observatory,, -paddleboard_rental,attractions_and_activities,paddleboard_rental,, -palace,attractions_and_activities,palace,, -parasailing_ride_service,attractions_and_activities,parasailing_ride_service,, -dog_park,attractions_and_activities,park,dog_park, -memorial_park,attractions_and_activities,park,memorial_park, -national_park,attractions_and_activities,park,national_park, -state_park,attractions_and_activities,park,state_park, -park,attractions_and_activities,park,, -plaza,attractions_and_activities,plaza,, -rafting_kayaking_area,attractions_and_activities,rafting_kayaking_area,, -rock_climbing_spot,attractions_and_activities,rock_climbing_spot,, -ruin,attractions_and_activities,ruin,, -sailing_area,attractions_and_activities,sailing_area,, -sand_dune,attractions_and_activities,sand_dune,, -scavenger_hunts_provider,attractions_and_activities,scavenger_hunts_provider,, -sculpture_statue,attractions_and_activities,sculpture_statue,, -ski_area,attractions_and_activities,ski_area,, -skyline,attractions_and_activities,skyline,, -sledding_rental,attractions_and_activities,sledding_rental,, -snorkeling,attractions_and_activities,snorkeling,, -snorkeling_equipment_rental,attractions_and_activities,snorkeling_equipment_rental,, -snowboarding_center,attractions_and_activities,snowboarding_center,, -stargazing_area,attractions_and_activities,stargazing_area,, -street_art,attractions_and_activities,street_art,, -surfboard_rental,attractions_and_activities,surfing,surfboard_rental, -windsurfing_center,attractions_and_activities,surfing,windsurfing_center, -surfing,attractions_and_activities,surfing,, -hiking_trail,attractions_and_activities,trail,hiking_trail, -mountain_bike_trails,attractions_and_activities,trail,mountain_biking_trails, -trail,attractions_and_activities,trail,, -waterfall,attractions_and_activities,waterfall,, -ziplining_center,attractions_and_activities,ziplining_center,, -petting_zoo,attractions_and_activities,zoo,petting_zoo, -zoo,attractions_and_activities,zoo,, -attractions_and_activities,attractions_and_activities,,, -aircraft_dealer,automotive,aircraft_dealer,, -avionics_shop,automotive,aircraft_parts_and_supplies,avionics_shop, -aircraft_parts_and_supplies,automotive,aircraft_parts_and_supplies,, -aircraft_repair,automotive,aircraft_services_and_repair,, -auto_company,automotive,auto_company,, -automobile_leasing,automotive,automobile_leasing,, -car_dealer,automotive,automotive_dealer,car_dealer, -commercial_vehicle_dealer,automotive,automotive_dealer,commercial_vehicle_dealer, -golf_cart_dealer,automotive,automotive_dealer,golf_cart_dealer, -motorcycle_dealer,automotive,automotive_dealer,motorcycle_dealer, -motorsport_vehicle_dealer,automotive,automotive_dealer,motorsport_vehicle_dealer, -recreational_vehicle_dealer,automotive,automotive_dealer,recreational_vehicle_dealer, -scooter_dealers,automotive,automotive_dealer,scooter_dealers, -trailer_dealer,automotive,automotive_dealer,trailer_dealer, -truck_dealer,automotive,automotive_dealer,truck_dealer, -used_car_dealer,automotive,automotive_dealer,used_car_dealer, -automotive_dealer,automotive,automotive_dealer,, -car_stereo_store,automotive,automotive_parts_and_accessories,car_stereo_store, -interlock_system,automotive,automotive_parts_and_accessories,interlock_system, -motorcycle_gear,automotive,automotive_parts_and_accessories,motorcycle_gear, -motorsports_store,automotive,automotive_parts_and_accessories,motorsports_store, -recreational_vehicle_parts_and_accessories,automotive,automotive_parts_and_accessories,recreational_vehicle_parts_and_accessories, -automotive_parts_and_accessories,automotive,automotive_parts_and_accessories,, -automotive_repair,automotive,automotive_repair,, -auto_body_shop,automotive,automotive_services_and_repair,auto_body_shop, -auto_customization,automotive,automotive_services_and_repair,auto_customization, -auto_detailing,automotive,automotive_services_and_repair,auto_detailing, -auto_electrical_repair,automotive,automotive_services_and_repair,auto_electrical_repair, -car_window_tinting,automotive,automotive_services_and_repair,auto_glass_service,car_window_tinting -auto_glass_service,automotive,automotive_services_and_repair,auto_glass_service, -auto_restoration_services,automotive,automotive_services_and_repair,auto_restoration_services, -auto_security,automotive,automotive_services_and_repair,auto_security, -auto_upholstery,automotive,automotive_services_and_repair,auto_upholstery, -automobile_registration_service,automotive,automotive_services_and_repair,automobile_registration_service, -automotive_consultant,automotive,automotive_services_and_repair,automotive_consultant, -automotive_storage_facility,automotive,automotive_services_and_repair,automotive_storage_facility, -automotive_wheel_polishing_service,automotive,automotive_services_and_repair,automotive_wheel_polishing_service, -brake_service_and_repair,automotive,automotive_services_and_repair,brake_service_and_repair, -car_inspector,automotive,automotive_services_and_repair,car_inspection, -car_stereo_installation,automotive,automotive_services_and_repair,car_stereo_installation, -car_wash,automotive,automotive_services_and_repair,car_wash, -diy_auto_shop,automotive,automotive_services_and_repair,diy_auto_shop, -emissions_inspection,automotive,automotive_services_and_repair,emissions_inspection, -engine_repair_service,automotive,automotive_services_and_repair,engine_repair_service, -exhaust_and_muffler_repair,automotive,automotive_services_and_repair,exhaust_and_muffler_repair, -hybrid_car_repair,automotive,automotive_services_and_repair,hybrid_car_repair, -motorcycle_repair,automotive,automotive_services_and_repair,motorcycle_repair, -oil_change_station,automotive,automotive_services_and_repair,oil_change_station, -recreation_vehicle_repair,automotive,automotive_services_and_repair,recreation_vehicle_repair, -emergency_roadside_service,automotive,automotive_services_and_repair,roadside_assistance,emergency_roadside_service -mobile_dent_repair,automotive,automotive_services_and_repair,roadside_assistance,mobile_dent_repair -roadside_assistance,automotive,automotive_services_and_repair,roadside_assistance, -tire_dealer_and_repair,automotive,automotive_services_and_repair,tire_dealer_and_repair, -towing_service,automotive,automotive_services_and_repair,towing_service, -trailer_repair,automotive,automotive_services_and_repair,trailer_repair, -transmission_repair,automotive,automotive_services_and_repair,transmission_repair, -truck_repair,automotive,automotive_services_and_repair,truck_repair, -vehicle_shipping,automotive,automotive_services_and_repair,vehicle_shipping, -vehicle_wrap,automotive,automotive_services_and_repair,vehicle_wrap, -wheel_and_rim_repair,automotive,automotive_services_and_repair,wheel_and_rim_repair, -windshield_installation_and_repair,automotive,automotive_services_and_repair,windshield_installation_and_repair, -automotive_services_and_repair,automotive,automotive_services_and_repair,, -boat_dealer,automotive,boat_dealer,, -boat_parts_and_accessories,automotive,boat_parts_and_accessories,, -boat_service_and_repair,automotive,boat_service_and_repair,, -car_buyer,automotive,car_buyer,, -ev_charging_station,automotive,electric_vehicle_charging_station,, -fuel_dock,automotive,gas_station,fuel_dock, -truck_gas_station,automotive,gas_station,truck_gas_station, -gas_station,automotive,gas_station,, -motorcycle_manufacturer,automotive,motorcycle_manufacturer,, -motorsport_vehicle_repair,automotive,motorsport_vehicle_repair,, -truck_stop,automotive,truck_stop,, -automotive,automotive,,, -acne_treatment,beauty_and_spa,acne_treatment,, -aromatherapy,beauty_and_spa,aromatherapy,, -barber,beauty_and_spa,barber,, -beauty_salon,beauty_and_spa,beauty_salon,, -eyebrow_service,beauty_and_spa,eyebrow_service,, -eyelash_service,beauty_and_spa,eyelash_service,, -foot_care,beauty_and_spa,foot_care,, -hair_extensions,beauty_and_spa,hair_extensions,, -hair_loss_center,beauty_and_spa,hair_loss_center,, -laser_hair_removal,beauty_and_spa,hair_removal,laser_hair_removal, -sugaring,beauty_and_spa,hair_removal,sugaring, -threading_service,beauty_and_spa,hair_removal,threading_service, -waxing,beauty_and_spa,hair_removal,waxing, -hair_removal,beauty_and_spa,hair_removal,, -hair_replacement,beauty_and_spa,hair_replacement,, -blow_dry_blow_out_service,beauty_and_spa,hair_salon,blow_dry_blow_out_service, -hair_stylist,beauty_and_spa,hair_salon,hair_stylist, -kids_hair_salon,beauty_and_spa,hair_salon,kids_hair_salon, -hair_salon,beauty_and_spa,hair_salon,, -health_spa,beauty_and_spa,health_spa,, -image_consultant,beauty_and_spa,image_consultant,, -makeup_artist,beauty_and_spa,makeup_artist,, -massage,beauty_and_spa,massage,, -nail_salon,beauty_and_spa,nail_salon,, -onsen,beauty_and_spa,onsen,, -permanent_makeup,beauty_and_spa,permanent_makeup,, -public_bath_houses,beauty_and_spa,public_bath_houses,, -esthetician,beauty_and_spa,skin_care,esthetician, -skin_care,beauty_and_spa,skin_care,, -day_spa,beauty_and_spa,spas,day_spa, -medical_spa,beauty_and_spa,spas,medical_spa, -spas,beauty_and_spa,spas,, -spray_tanning,beauty_and_spa,tanning_salon,spray_tanning, -tanning_bed,beauty_and_spa,tanning_salon,tanning_bed, -tanning_salon,beauty_and_spa,tanning_salon,, -piercing,beauty_and_spa,tattoo_and_piercing,piercing, -tattoo,beauty_and_spa,tattoo_and_piercing,tattoo, -tattoo_and_piercing,beauty_and_spa,tattoo_and_piercing,, -teeth_whitening,beauty_and_spa,teeth_whitening,, -turkish_baths,beauty_and_spa,turkish_baths,, -beauty_and_spa,beauty_and_spa,,, -agricultural_cooperatives,business_to_business,b2b_agriculture_and_food,agricultural_cooperatives, -agricultural_engineering_service,business_to_business,b2b_agriculture_and_food,agricultural_engineering_service, -agricultural_service,business_to_business,b2b_agriculture_and_food,agricultural_service, -agriculture,business_to_business,b2b_agriculture_and_food,agriculture, -apiaries_and_beekeepers,business_to_business,b2b_agriculture_and_food,apiaries_and_beekeepers, -b2b_dairies,business_to_business,b2b_agriculture_and_food,b2b_dairies, -b2b_farms,business_to_business,b2b_agriculture_and_food,b2b_farming,b2b_farms -dairy_farm,business_to_business,b2b_agriculture_and_food,b2b_farming,b2b_farms -pig_farm,business_to_business,b2b_agriculture_and_food,b2b_farming,b2b_farms -urban_farm,business_to_business,b2b_agriculture_and_food,b2b_farming,b2b_farms -farm_equipment_and_supply,business_to_business,b2b_agriculture_and_food,b2b_farming,farm_equipment_and_supply -fertilizer_store,business_to_business,b2b_agriculture_and_food,b2b_farming,farm_equipment_and_supply -grain_elevators,business_to_business,b2b_agriculture_and_food,b2b_farming,farm_equipment_and_supply -greenhouses,business_to_business,b2b_agriculture_and_food,b2b_farming,farm_equipment_and_supply -irrigation_companies,business_to_business,b2b_agriculture_and_food,b2b_farming,farm_equipment_and_supply -farming_services,business_to_business,b2b_agriculture_and_food,b2b_farming,farming_services -b2b_farming,business_to_business,b2b_agriculture_and_food,b2b_farming, -b2b_food_products,business_to_business,b2b_agriculture_and_food,b2b_food_products, -grain_production,business_to_business,b2b_agriculture_and_food,crops_production,grain_production -orchards_production,business_to_business,b2b_agriculture_and_food,crops_production,orchards_production -crops_production,business_to_business,b2b_agriculture_and_food,crops_production, -fish_farm,business_to_business,b2b_agriculture_and_food,fish_farms_and_hatcheries,fish_farm -fish_farms_and_hatcheries,business_to_business,b2b_agriculture_and_food,fish_farms_and_hatcheries, -livestock_breeder,business_to_business,b2b_agriculture_and_food,livestock_breeder, -livestock_dealers,business_to_business,b2b_agriculture_and_food,livestock_dealers, -poultry_farming,business_to_business,b2b_agriculture_and_food,poultry_farming, -b2b_agriculture_and_food,business_to_business,b2b_agriculture_and_food,, -coal_and_coke,business_to_business,b2b_energy_and_mining,mining,coal_and_coke -quarries,business_to_business,b2b_energy_and_mining,mining,quarries -mining,business_to_business,b2b_energy_and_mining,mining, -b2b_oil_and_gas_extraction_and_services,business_to_business,b2b_energy_and_mining,oil_and_gas,b2b_oil_and_gas_extraction_and_services -oil_and_gas_exploration_and_development,business_to_business,b2b_energy_and_mining,oil_and_gas,oil_and_gas_exploration_and_development -oil_and_gas_field_equipment_and_services,business_to_business,b2b_energy_and_mining,oil_and_gas,oil_and_gas_field_equipment_and_services -oil_refiners,business_to_business,b2b_energy_and_mining,oil_and_gas,oil_refiners -oil_and_gas,business_to_business,b2b_energy_and_mining,oil_and_gas, -power_plants_and_power_plant_service,business_to_business,b2b_energy_and_mining,power_plants_and_power_plant_service, -b2b_energy_mining,business_to_business,b2b_energy_and_mining,, -biotechnology_company,business_to_business,b2b_medical_support_services,biotechnology_company, -clinical_laboratories,business_to_business,b2b_medical_support_services,clinical_laboratories, -dental_laboratories,business_to_business,b2b_medical_support_services,dental_laboratories, -hospital_equipment_and_supplies,business_to_business,b2b_medical_support_services,hospital_equipment_and_supplies, -medical_research_and_development,business_to_business,b2b_medical_support_services,medical_research_and_development, -pharmaceutical_companies,business_to_business,b2b_medical_support_services,pharmaceutical_companies, -surgical_appliances_and_supplies,business_to_business,b2b_medical_support_services,surgical_appliances_and_supplies, -b2b_medical_support_services,business_to_business,b2b_medical_support_services,, -b2b_scientific_equipment,business_to_business,b2b_science_and_technology,b2b_scientific_equipment, -research_institute,business_to_business,b2b_science_and_technology,research_institute, -scientific_laboratories,business_to_business,b2b_science_and_technology,scientific_laboratories, -b2b_science_and_technology,business_to_business,b2b_science_and_technology,, -airline,business_to_business,business,airline, -bags_luggage_company,business_to_business,business,bags_luggage_company, -bottled_water_company,business_to_business,business,bottled_water_company, -clothing_company,business_to_business,business,clothing_company, -ferry_boat_company,business_to_business,business,ferry_boat_company, -food_beverage_service_distribution,business_to_business,business,food_beverage_service_distribution, -hotel_supply_service,business_to_business,business,hotel_supply_service, -tobacco_company,business_to_business,business,tobacco_company, -travel_company,business_to_business,business,travel_company, -business,business_to_business,business,, -business_signage,business_to_business,business_advertising,business_signage, -direct_mail_advertising,business_to_business,business_advertising,direct_mail_advertising, -marketing_consultant,business_to_business,business_advertising,marketing_consultant, -newspaper_advertising,business_to_business,business_advertising,newspaper_advertising, -outdoor_advertising,business_to_business,business_advertising,outdoor_advertising, -promotional_products_and_services,business_to_business,business_advertising,promotional_products_and_services, -publicity_service,business_to_business,business_advertising,publicity_service, -radio_and_television_commercials,business_to_business,business_advertising,radio_and_television_commercials, -telemarketing_services,business_to_business,business_advertising,telemarketing_services, -business_advertising,business_to_business,business_advertising,, -beauty_product_supplier,business_to_business,business_equipment_and_supply,beauty_product_supplier, -beverage_supplier,business_to_business,business_equipment_and_supply,beverage_supplier, -business_office_supplies_and_stationery,business_to_business,business_equipment_and_supply,business_office_supplies_and_stationery, -electronic_parts_supplier,business_to_business,business_equipment_and_supply,electronic_parts_supplier, -energy_equipment_and_solution,business_to_business,business_equipment_and_supply,energy_equipment_and_solution, -hydraulic_equipment_supplier,business_to_business,business_equipment_and_supply,hydraulic_equipment_supplier, -laboratory_equipment_supplier,business_to_business,business_equipment_and_supply,laboratory_equipment_supplier, -restaurant_equipment_and_supply,business_to_business,business_equipment_and_supply,restaurant_equipment_and_supply, -thread_supplier,business_to_business,business_equipment_and_supply,thread_supplier, -vending_machine_supplier,business_to_business,business_equipment_and_supply,vending_machine_supplier, -water_softening_equipment_supplier,business_to_business,business_equipment_and_supply,water_softening_equipment_supplier, -computer_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,computer_wholesaler -electrical_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,electrical_wholesaler -fabric_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,fabric_wholesaler -fitness_equipment_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,fitness_equipment_wholesaler -fmcg_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,fmcg_wholesaler -spices_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,fmcg_wholesaler -footwear_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,footwear_wholesaler -greengrocer,business_to_business,business_equipment_and_supply,wholesaler,greengrocer -industrial_spares_and_products_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,industrial_spares_and_products_wholesaler -iron_and_steel_store,business_to_business,business_equipment_and_supply,wholesaler,iron_and_steel_store -lingerie_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,lingerie_wholesaler -meat_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,meat_wholesaler -optical_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,optical_wholesaler -pharmaceutical_products_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,pharmaceutical_products_wholesaler -produce_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,produce_wholesaler -restaurant_wholesale,business_to_business,business_equipment_and_supply,wholesaler,restaurant_wholesale -seafood_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,seafood_wholesaler -tea_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,tea_wholesaler -threads_and_yarns_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,threads_and_yarns_wholesaler -tools_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,tools_wholesaler -wholesale_florist,business_to_business,business_equipment_and_supply,wholesaler,wholesale_florist -wholesale_grocer,business_to_business,business_equipment_and_supply,wholesaler,wholesale_grocer -wine_wholesaler,business_to_business,business_equipment_and_supply,wholesaler,wine_wholesaler -wholesaler,business_to_business,business_equipment_and_supply,wholesaler, -business_equipment_and_supply,business_to_business,business_equipment_and_supply,, -abrasives_supplier,business_to_business,business_manufacturing_and_supply,abrasives_supplier, -aggregate_supplier,business_to_business,business_manufacturing_and_supply,aggregate_supplier, -aircraft_manufacturer,business_to_business,business_manufacturing_and_supply,aircraft_manufacturer, -aluminum_supplier,business_to_business,business_manufacturing_and_supply,aluminum_supplier, -appliance_manufacturer,business_to_business,business_manufacturing_and_supply,appliance_manufacturer, -b2b_apparel,business_to_business,business_manufacturing_and_supply,b2b_apparel, -auto_manufacturers_and_distributors,business_to_business,business_manufacturing_and_supply,b2b_autos_and_vehicles,auto_manufacturers_and_distributors -b2b_tires,business_to_business,business_manufacturing_and_supply,b2b_autos_and_vehicles,b2b_tires -b2b_autos_and_vehicles,business_to_business,business_manufacturing_and_supply,b2b_autos_and_vehicles, -b2b_electronic_equipment,business_to_business,business_manufacturing_and_supply,b2b_electronic_equipment, -furniture_manufacturers,business_to_business,business_manufacturing_and_supply,b2b_furniture_and_housewares,furniture_manufacturers -furniture_wholesalers,business_to_business,business_manufacturing_and_supply,b2b_furniture_and_housewares,furniture_wholesalers -b2b_furniture_and_housewares,business_to_business,business_manufacturing_and_supply,b2b_furniture_and_housewares, -b2b_hardware,business_to_business,business_manufacturing_and_supply,b2b_hardware, -b2b_jewelers,business_to_business,business_manufacturing_and_supply,b2b_jewelers, -b2b_equipment_maintenance_and_repair,business_to_business,business_manufacturing_and_supply,b2b_machinery_and_tools,b2b_equipment_maintenance_and_repair -industrial_equipment,business_to_business,business_manufacturing_and_supply,b2b_machinery_and_tools,industrial_equipment -b2b_machinery_and_tools,business_to_business,business_manufacturing_and_supply,b2b_machinery_and_tools, -plastic_company,business_to_business,business_manufacturing_and_supply,b2b_rubber_and_plastics,plastic_company -plastic_manufacturer,business_to_business,business_manufacturing_and_supply,b2b_rubber_and_plastics,plastic_manufacturer -b2b_rubber_and_plastics,business_to_business,business_manufacturing_and_supply,b2b_rubber_and_plastics, -b2b_sporting_and_recreation_goods,business_to_business,business_manufacturing_and_supply,b2b_sporting_and_recreation_goods, -b2b_textiles,business_to_business,business_manufacturing_and_supply,b2b_textiles, -battery_inverter_supplier,business_to_business,business_manufacturing_and_supply,battery_inverter_supplier, -bearing_supplier,business_to_business,business_manufacturing_and_supply,bearing_supplier, -casting_molding_and_machining,business_to_business,business_manufacturing_and_supply,casting_molding_and_machining, -cement_supplier,business_to_business,business_manufacturing_and_supply,cement_supplier, -chemical_plant,business_to_business,business_manufacturing_and_supply,chemical_plant, -cleaning_products_supplier,business_to_business,business_manufacturing_and_supply,cleaning_products_supplier, -cosmetic_products_manufacturer,business_to_business,business_manufacturing_and_supply,cosmetic_products_manufacturer, -drinking_water_dispenser,business_to_business,business_manufacturing_and_supply,drinking_water_dispenser, -fastener_supplier,business_to_business,business_manufacturing_and_supply,fastener_supplier, -glass_manufacturer,business_to_business,business_manufacturing_and_supply,glass_manufacturer, -granite_supplier,business_to_business,business_manufacturing_and_supply,granite_supplier, -hvac_supplier,business_to_business,business_manufacturing_and_supply,hvac_supplier, -jewelry_and_watches_manufacturer,business_to_business,business_manufacturing_and_supply,jewelry_and_watches_manufacturer, -jewelry_manufacturer,business_to_business,business_manufacturing_and_supply,jewelry_manufacturer, -leather_products_manufacturer,business_to_business,business_manufacturing_and_supply,leather_products_manufacturer, -lighting_fixture_manufacturers,business_to_business,business_manufacturing_and_supply,lighting_fixture_manufacturers, -mattress_manufacturing,business_to_business,business_manufacturing_and_supply,mattress_manufacturing, -iron_and_steel_industry,business_to_business,business_manufacturing_and_supply,metals,metal_fabricator -iron_work,business_to_business,business_manufacturing_and_supply,metals,metal_fabricator -metal_fabricator,business_to_business,business_manufacturing_and_supply,metals,metal_fabricator -metal_plating_service,business_to_business,business_manufacturing_and_supply,metals,metal_plating_service -metal_supplier,business_to_business,business_manufacturing_and_supply,metals,metal_supplier -scrap_metals,business_to_business,business_manufacturing_and_supply,metals,scrap_metals -sheet_metal,business_to_business,business_manufacturing_and_supply,metals,sheet_metal -steel_fabricators,business_to_business,business_manufacturing_and_supply,metals,steel_fabricators -metals,business_to_business,business_manufacturing_and_supply,metals, -cotton_mill,business_to_business,business_manufacturing_and_supply,mills,cotton_mill -flour_mill,business_to_business,business_manufacturing_and_supply,mills,flour_mill -paper_mill,business_to_business,business_manufacturing_and_supply,mills,paper_mill -rice_mill,business_to_business,business_manufacturing_and_supply,mills,rice_mill -saw_mill,business_to_business,business_manufacturing_and_supply,mills,saw_mill -textile_mill,business_to_business,business_manufacturing_and_supply,mills,textile_mill -weaving_mill,business_to_business,business_manufacturing_and_supply,mills,weaving_mill -mills,business_to_business,business_manufacturing_and_supply,mills, -pipe_supplier,business_to_business,business_manufacturing_and_supply,pipe_supplier, -plastic_fabrication_company,business_to_business,business_manufacturing_and_supply,plastic_fabrication_company, -plastic_injection_molding_workshop,business_to_business,business_manufacturing_and_supply,plastic_injection_molding_workshop, -printing_equipment_and_supply,business_to_business,business_manufacturing_and_supply,printing_equipment_and_supply, -retaining_wall_supplier,business_to_business,business_manufacturing_and_supply,retaining_wall_supplier, -sand_and_gravel_supplier,business_to_business,business_manufacturing_and_supply,sand_and_gravel_supplier, -scale_supplier,business_to_business,business_manufacturing_and_supply,scale_supplier, -seal_and_hanko_dealers,business_to_business,business_manufacturing_and_supply,seal_and_hanko_dealers, -shoe_factory,business_to_business,business_manufacturing_and_supply,shoe_factory, -spring_supplier,business_to_business,business_manufacturing_and_supply,spring_supplier, -stone_supplier,business_to_business,business_manufacturing_and_supply,stone_supplier, -turnery,business_to_business,business_manufacturing_and_supply,turnery, -window_supplier,business_to_business,business_manufacturing_and_supply,window_supplier, -logging_contractor,business_to_business,business_manufacturing_and_supply,wood_and_pulp,logging_contractor -logging_equipment_and_supplies,business_to_business,business_manufacturing_and_supply,wood_and_pulp,logging_equipment_and_supplies -logging_services,business_to_business,business_manufacturing_and_supply,wood_and_pulp,logging_services -wood_and_pulp,business_to_business,business_manufacturing_and_supply,wood_and_pulp, -business_manufacturing_and_supply,business_to_business,business_manufacturing_and_supply,, -warehouse_rental_services_and_yards,business_to_business,business_storage_and_transportation,b2b_storage_and_warehouses,warehouse_rental_services_and_yards -warehouses,business_to_business,business_storage_and_transportation,b2b_storage_and_warehouses,warehouses -b2b_storage_and_warehouses,business_to_business,business_storage_and_transportation,b2b_storage_and_warehouses, -distribution_services,business_to_business,business_storage_and_transportation,freight_and_cargo_service,distribution_services -freight_forwarding_agency,business_to_business,business_storage_and_transportation,freight_and_cargo_service,freight_forwarding_agency -freight_and_cargo_service,business_to_business,business_storage_and_transportation,freight_and_cargo_service, -motor_freight_trucking,business_to_business,business_storage_and_transportation,motor_freight_trucking, -pipeline_transportation,business_to_business,business_storage_and_transportation,pipeline_transportation, -railroad_freight,business_to_business,business_storage_and_transportation,railroad_freight, -b2b_forklift_dealers,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles,b2b_forklift_dealers -b2b_tractor_dealers,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles,b2b_tractor_dealers -b2b_truck_equipment_parts_and_accessories,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles,b2b_truck_equipment_parts_and_accessories -truck_dealer_for_businesses,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles,truck_dealer_for_businesses -truck_repair_and_services_for_businesses,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles,truck_repair_and_services_for_businesses -trucks_and_industrial_vehicles,business_to_business,business_storage_and_transportation,trucks_and_industrial_vehicles, -business_storage_and_transportation,business_to_business,business_storage_and_transportation,, -agricultural_production,business_to_business,business_to_business_services,agricultural_production, -audio_visual_production_and_design,business_to_business,business_to_business_services,audio_visual_production_and_design, -boat_builder,business_to_business,business_to_business_services,boat_builder, -business_records_storage_and_management,business_to_business,business_to_business_services,business_records_storage_and_management, -business_management_services,business_to_business,business_to_business_services,consultant_and_general_service,business_management_services -executive_search_consultants,business_to_business,business_to_business_services,consultant_and_general_service,executive_search_consultants -food_consultant,business_to_business,business_to_business_services,consultant_and_general_service,food_consultant -manufacturing_and_industrial_consultant,business_to_business,business_to_business_services,consultant_and_general_service,manufacturing_and_industrial_consultant -secretarial_services,business_to_business,business_to_business_services,consultant_and_general_service,secretarial_services -consultant_and_general_service,business_to_business,business_to_business_services,consultant_and_general_service, -coworking_space,business_to_business,business_to_business_services,coworking_space, -manufacturers_agents_and_representatives,business_to_business,business_to_business_services,domestic_business_and_trade_organizations,manufacturers_agents_and_representatives -domestic_business_and_trade_organizations,business_to_business,business_to_business_services,domestic_business_and_trade_organizations, -b2b_cleaning_and_waste_management,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,b2b_cleaning_and_waste_management -water_treatment_equipment_and_services,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,b2b_cleaning_and_waste_management -energy_management_and_conservation_consultants,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,energy_management_and_conservation_consultants -environmental_conservation_and_ecological_organizations,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,environmental_conservation_and_ecological_organizations -environmental_renewable_natural_resource,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,environmental_renewable_natural_resource -forestry_consultants,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,forestry_consultants -geological_services,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses,geological_services -environmental_and_ecological_services_for_businesses,business_to_business,business_to_business_services,environmental_and_ecological_services_for_businesses, -background_check_services,business_to_business,business_to_business_services,human_resource_services,background_check_services -human_resource_services,business_to_business,business_to_business_services,human_resource_services, -information_technology_company,business_to_business,business_to_business_services,information_technology_company, -exporters,business_to_business,business_to_business_services,international_business_and_trade_services,importer_and_exporter -food_and_beverage_exporter,business_to_business,business_to_business_services,international_business_and_trade_services,importer_and_exporter -importer_and_exporter,business_to_business,business_to_business_services,international_business_and_trade_services,importer_and_exporter -importers,business_to_business,business_to_business_services,international_business_and_trade_services,importer_and_exporter -international_business_and_trade_services,business_to_business,business_to_business_services,international_business_and_trade_services, -laser_cutting_service_provider,business_to_business,business_to_business_services,laser_cutting_service_provider, -restaurant_management,business_to_business,business_to_business_services,restaurant_management, -telecommunications_company,business_to_business,business_to_business_services,telecommunications_company, -tower_communication_service,business_to_business,business_to_business_services,tower_communication_service, -transcription_services,business_to_business,business_to_business_services,transcription_services, -translating_and_interpreting_services,business_to_business,business_to_business_services,translating_and_interpreting_services, -business_to_business_services,business_to_business,business_to_business_services,, -automation_services,business_to_business,commercial_industrial,automation_services, -industrial_company,business_to_business,commercial_industrial,industrial_company, -inventory_control_service,business_to_business,commercial_industrial,inventory_control_service, -occupational_safety,business_to_business,commercial_industrial,occupational_safety, -commercial_industrial,business_to_business,commercial_industrial,, -business_to_business,business_to_business,,, -airport_lounge,eat_and_drink,bar,airport_lounge, -beach_bar,eat_and_drink,bar,beach_bar, -beer_bar,eat_and_drink,bar,beer_bar, -beer_garden,eat_and_drink,bar,beer_garden, -brewery,eat_and_drink,bar,brewery, -bubble_tea,eat_and_drink,bar,bubble_tea, -champagne_bar,eat_and_drink,bar,champagne_bar, -cidery,eat_and_drink,bar,cidery, -cigar_bar,eat_and_drink,bar,cigar_bar, -cocktail_bar,eat_and_drink,bar,cocktail_bar, -dive_bar,eat_and_drink,bar,dive_bar, -drive_thru_bar,eat_and_drink,bar,drive_thru_bar, -gay_bar,eat_and_drink,bar,gay_bar, -hookah_bar,eat_and_drink,bar,hookah_bar, -hotel_bar,eat_and_drink,bar,hotel_bar, -irish_pub,eat_and_drink,bar,irish_pub, -kombucha,eat_and_drink,bar,kombucha, -lounge,eat_and_drink,bar,lounge, -milk_bar,eat_and_drink,bar,milk_bar, -milkshake_bar,eat_and_drink,bar,milkshake_bar, -piano_bar,eat_and_drink,bar,piano_bar, -pub,eat_and_drink,bar,pub, -sake_bar,eat_and_drink,bar,sake_bar, -smoothie_juice_bar,eat_and_drink,bar,smoothie_juice_bar, -speakeasy,eat_and_drink,bar,speakeasy, -sports_bar,eat_and_drink,bar,sports_bar, -sugar_shack,eat_and_drink,bar,sugar_shack, -tabac,eat_and_drink,bar,tabac, -tiki_bar,eat_and_drink,bar,tiki_bar, -vermouth_bar,eat_and_drink,bar,vermouth_bar, -whiskey_bar,eat_and_drink,bar,whiskey_bar, -wine_bar,eat_and_drink,bar,wine_bar, -bar,eat_and_drink,bar,, -coffee_roastery,eat_and_drink,cafe,coffee_roastery, -coffee_shop,eat_and_drink,cafe,coffee_shop, -tea_room,eat_and_drink,cafe,tea_room, -cafe,eat_and_drink,cafe,, -acai_bowls,eat_and_drink,restaurant,acai_bowls, -afghan_restaurant,eat_and_drink,restaurant,afghan_restaurant, -ethiopian_restaurant,eat_and_drink,restaurant,african_restaurant,ethiopian_restaurant -moroccan_restaurant,eat_and_drink,restaurant,african_restaurant,moroccan_restaurant -nigerian_restaurant,eat_and_drink,restaurant,african_restaurant,nigerian_restaurant -senegalese_restaurant,eat_and_drink,restaurant,african_restaurant,senegalese_restaurant -south_african_restaurant,eat_and_drink,restaurant,african_restaurant,south_african_restaurant -african_restaurant,eat_and_drink,restaurant,african_restaurant, -american_restaurant,eat_and_drink,restaurant,american_restaurant, -arabian_restaurant,eat_and_drink,restaurant,arabian_restaurant, -asian_fusion_restaurant,eat_and_drink,restaurant,asian_restaurant,asian_fusion_restaurant -burmese_restaurant,eat_and_drink,restaurant,asian_restaurant,burmese_restaurant -cambodian_restaurant,eat_and_drink,restaurant,asian_restaurant,cambodian_restaurant -chinese_restaurant,eat_and_drink,restaurant,asian_restaurant,chinese_restaurant -dim_sum_restaurant,eat_and_drink,restaurant,asian_restaurant,dim_sum_restaurant -filipino_restaurant,eat_and_drink,restaurant,asian_restaurant,filipino_restaurant -hong_kong_style_cafe,eat_and_drink,restaurant,asian_restaurant,hong_kong_style_café -indo_chinese_restaurant,eat_and_drink,restaurant,asian_restaurant,indo_chinese_restaurant -indonesian_restaurant,eat_and_drink,restaurant,asian_restaurant,indonesian_restaurant -japanese_restaurant,eat_and_drink,restaurant,asian_restaurant,japanese_restaurant -korean_restaurant,eat_and_drink,restaurant,asian_restaurant,korean_restaurant -laotian_restaurant,eat_and_drink,restaurant,asian_restaurant,laotian_restaurant -malaysian_restaurant,eat_and_drink,restaurant,asian_restaurant,malaysian_restaurant -mongolian_restaurant,eat_and_drink,restaurant,asian_restaurant,mongolian_restaurant -noodles_restaurant,eat_and_drink,restaurant,asian_restaurant,noodles_restaurant -pan_asian_restaurant,eat_and_drink,restaurant,asian_restaurant,pan_asian_restaurant -singaporean_restaurant,eat_and_drink,restaurant,asian_restaurant,singaporean_restaurant -sushi_restaurant,eat_and_drink,restaurant,asian_restaurant,sushi_restaurant -taiwanese_restaurant,eat_and_drink,restaurant,asian_restaurant,taiwanese_restaurant -thai_restaurant,eat_and_drink,restaurant,asian_restaurant,thai_restaurant -vietnamese_restaurant,eat_and_drink,restaurant,asian_restaurant,vietnamese_restaurant -asian_restaurant,eat_and_drink,restaurant,asian_restaurant, -australian_restaurant,eat_and_drink,restaurant,australian_restaurant, -austrian_restaurant,eat_and_drink,restaurant,austrian_restaurant, -bangladeshi_restaurant,eat_and_drink,restaurant,bangladeshi_restaurant, -baozi_restaurant,eat_and_drink,restaurant,baozi_restaurant, -bar_and_grill_restaurant,eat_and_drink,restaurant,bar_and_grill_restaurant, -barbecue_restaurant,eat_and_drink,restaurant,barbecue_restaurant, -basque_restaurant,eat_and_drink,restaurant,basque_restaurant, -belgian_restaurant,eat_and_drink,restaurant,belgian_restaurant, -bistro,eat_and_drink,restaurant,bistro, -brasserie,eat_and_drink,restaurant,brasserie, -bagel_restaurant,eat_and_drink,restaurant,breakfast_and_brunch_restaurant,bagel_restaurant -baguettes,eat_and_drink,restaurant,breakfast_and_brunch_restaurant,baguettes -pancake_house,eat_and_drink,restaurant,breakfast_and_brunch_restaurant,pancake_house -breakfast_and_brunch_restaurant,eat_and_drink,restaurant,breakfast_and_brunch_restaurant, -british_restaurant,eat_and_drink,restaurant,british_restaurant, -buffet_restaurant,eat_and_drink,restaurant,buffet_restaurant, -burger_restaurant,eat_and_drink,restaurant,burger_restaurant, -cafeteria,eat_and_drink,restaurant,cafeteria, -cajun_creole_restaurant,eat_and_drink,restaurant,cajun_and_creole_restaurant, -canadian_restaurant,eat_and_drink,restaurant,canadian_restaurant, -canteen,eat_and_drink,restaurant,canteen, -dominican_restaurant,eat_and_drink,restaurant,caribbean_restaurant,dominican_restaurant -haitian_restaurant,eat_and_drink,restaurant,caribbean_restaurant,haitian_restaurant -jamaican_restaurant,eat_and_drink,restaurant,caribbean_restaurant,jamaican_restaurant -trinidadian_restaurant,eat_and_drink,restaurant,caribbean_restaurant,trinidadian_restaurant -caribbean_restaurant,eat_and_drink,restaurant,caribbean_restaurant, -catalan_restaurant,eat_and_drink,restaurant,catalan_restaurant, -cheesesteak_restaurant,eat_and_drink,restaurant,cheesesteak_restaurant, -chicken_restaurant,eat_and_drink,restaurant,chicken_restaurant, -chicken_wings_restaurant,eat_and_drink,restaurant,chicken_wings_restaurant, -comfort_food_restaurant,eat_and_drink,restaurant,comfort_food_restaurant, -curry_sausage_restaurant,eat_and_drink,restaurant,curry_sausage_restaurant, -czech_restaurant,eat_and_drink,restaurant,czech_restaurant, -diner,eat_and_drink,restaurant,diner, -diy_foods_restaurant,eat_and_drink,restaurant,diy_foods_restaurant, -dog_meat_restaurant,eat_and_drink,restaurant,dog_meat_restaurant, -doner_kebab,eat_and_drink,restaurant,doner_kebab, -dumpling_restaurant,eat_and_drink,restaurant,dumpling_restaurant, -belarusian_restaurant,eat_and_drink,restaurant,eastern_european_restaurant,belarusian_restaurant -bulgarian_restaurant,eat_and_drink,restaurant,eastern_european_restaurant,bulgarian_restaurant -romanian_restaurant,eat_and_drink,restaurant,eastern_european_restaurant,romanian_restaurant -tatar_restaurant,eat_and_drink,restaurant,eastern_european_restaurant,tatar_restaurant -ukrainian_restaurant,eat_and_drink,restaurant,eastern_european_restaurant,ukrainian_restaurant -eastern_european_restaurant,eat_and_drink,restaurant,eastern_european_restaurant, -empanadas,eat_and_drink,restaurant,empanadas, -european_restaurant,eat_and_drink,restaurant,european_restaurant, -falafel_restaurant,eat_and_drink,restaurant,falafel_restaurant, -fast_food_restaurant,eat_and_drink,restaurant,fast_food_restaurant, -fishchbroetchen_restaurant,eat_and_drink,restaurant,fischbroetchen_restaurant, -fish_and_chips_restaurant,eat_and_drink,restaurant,fish_and_chips_restaurant, -fish_restaurant,eat_and_drink,restaurant,fish_restaurant, -flatbread_restaurant,eat_and_drink,restaurant,flatbread_restaurant, -fondue_restaurant,eat_and_drink,restaurant,fondue_restaurant, -food_court,eat_and_drink,restaurant,food_court, -french_restaurant,eat_and_drink,restaurant,french_restaurant, -gastropub,eat_and_drink,restaurant,gastropub, -german_restaurant,eat_and_drink,restaurant,german_restaurant, -gluten_free_restaurant,eat_and_drink,restaurant,gluten_free_restaurant, -guamanian_restaurant,eat_and_drink,restaurant,guamanian_restaurant, -halal_restaurant,eat_and_drink,restaurant,halal_restaurant, -haute_cuisine_restaurant,eat_and_drink,restaurant,haute_cuisine_restaurant, -hawaiian_restaurant,eat_and_drink,restaurant,hawaiian_restaurant, -health_food_restaurant,eat_and_drink,restaurant,health_food_restaurant, -himalayan_nepalese_restaurant,eat_and_drink,restaurant,himalayan_nepalese_restaurant, -hot_dog_restaurant,eat_and_drink,restaurant,hot_dog_restaurant, -hungarian_restaurant,eat_and_drink,restaurant,hungarian_restaurant, -iberian_restaurant,eat_and_drink,restaurant,iberian_restaurant, -indian_restaurant,eat_and_drink,restaurant,indian_restaurant, -international_restaurant,eat_and_drink,restaurant,international_restaurant, -irish_restaurant,eat_and_drink,restaurant,irish_restaurant, -italian_restaurant,eat_and_drink,restaurant,italian_restaurant, -jewish_restaurant,eat_and_drink,restaurant,jewish_restaurant, -kosher_restaurant,eat_and_drink,restaurant,kosher_restaurant, -argentine_restaurant,eat_and_drink,restaurant,latin_american_restaurant,argentine_restaurant -belizean_restaurant,eat_and_drink,restaurant,latin_american_restaurant,belizean_restaurant -bolivian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,bolivian_restaurant -brazilian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,brazilian_restaurant -chilean_restaurant,eat_and_drink,restaurant,latin_american_restaurant,chilean_restaurant -colombian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,colombian_restaurant -costa_rican_restaurant,eat_and_drink,restaurant,latin_american_restaurant,costa_rican_restaurant -cuban_restaurant,eat_and_drink,restaurant,latin_american_restaurant,cuban_restaurant -ecuadorian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,ecuadorian_restaurant -guatemalan_restaurant,eat_and_drink,restaurant,latin_american_restaurant,guatemalan_restaurant -honduran_restaurant,eat_and_drink,restaurant,latin_american_restaurant,honduran_restaurant -mexican_restaurant,eat_and_drink,restaurant,latin_american_restaurant,mexican_restaurant -nicaraguan_restaurant,eat_and_drink,restaurant,latin_american_restaurant,nicaraguan_restaurant -panamanian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,panamanian_restaurant -paraguayan_restaurant,eat_and_drink,restaurant,latin_american_restaurant,paraguayan_restaurant -peruvian_restaurant,eat_and_drink,restaurant,latin_american_restaurant,peruvian_restaurant -puerto_rican_restaurant,eat_and_drink,restaurant,latin_american_restaurant,puerto_rican_restaurant -salvadoran_restaurant,eat_and_drink,restaurant,latin_american_restaurant,salvadoran_restaurant -texmex_restaurant,eat_and_drink,restaurant,latin_american_restaurant,texmex_restaurant -uruguayan_restaurant,eat_and_drink,restaurant,latin_american_restaurant,uruguayan_restaurant -venezuelan_restaurant,eat_and_drink,restaurant,latin_american_restaurant,venezuelan_restaurant -latin_american_restaurant,eat_and_drink,restaurant,latin_american_restaurant, -live_and_raw_food_restaurant,eat_and_drink,restaurant,live_and_raw_food_restaurant, -meat_restaurant,eat_and_drink,restaurant,meat_restaurant, -meatball_restaurant,eat_and_drink,restaurant,meatball_restaurant, -greek_restaurant,eat_and_drink,restaurant,mediterranean_restaurant,greek_restaurant -mediterranean_restaurant,eat_and_drink,restaurant,mediterranean_restaurant, -armenian_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,armenian_restaurant -azerbaijani_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,azerbaijani_restaurant -egyptian_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,egyptian_restaurant -georgian_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,georgian_restaurant -israeli_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,israeli_restaurant -kofta_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,kofta_restaurant -kurdish_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,kurdish_restaurant -lebanese_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,lebanese_restaurant -persian_iranian_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,persian_iranian_restaurant -syrian_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,syrian_restaurant -turkish_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant,turkish_restaurant -middle_eastern_restaurant,eat_and_drink,restaurant,middle_eastern_restaurant, -molecular_gastronomy_restaurant,eat_and_drink,restaurant,molecular_gastronomy_restaurant, -nasi_restaurant,eat_and_drink,restaurant,nasi_restaurant, -oriental_restaurant,eat_and_drink,restaurant,oriental_restaurant, -pakistani_restaurant,eat_and_drink,restaurant,pakistani_restaurant, -piadina_restaurant,eat_and_drink,restaurant,piadina_restaurant, -pigs_trotters_restaurant,eat_and_drink,restaurant,pigs_trotters_restaurant, -pizza_restaurant,eat_and_drink,restaurant,pizza_restaurant, -poke,eat_and_drink,restaurant,poke_restaurant, -polish_restaurant,eat_and_drink,restaurant,polish_restaurant, -polynesian_restaurant,eat_and_drink,restaurant,polynesian_restaurant, -pop_up_restaurant,eat_and_drink,restaurant,pop_up_restaurant, -portuguese_restaurant,eat_and_drink,restaurant,portuguese_restaurant, -potato_restaurant,eat_and_drink,restaurant,potato_restaurant, -poutinerie_restaurant,eat_and_drink,restaurant,poutinerie_restaurant, -rotisserie_chicken_restaurant,eat_and_drink,restaurant,rotisserie_chicken_restaurant, -russian_restaurant,eat_and_drink,restaurant,russian_restaurant, -salad_bar,eat_and_drink,restaurant,salad_bar, -danish_restaurant,eat_and_drink,restaurant,scandinavian_restaurant,danish_restaurant -norwegian_restaurant,eat_and_drink,restaurant,scandinavian_restaurant,norwegian_restaurant -scandinavian_restaurant,eat_and_drink,restaurant,scandinavian_restaurant, -schnitzel_restaurant,eat_and_drink,restaurant,schnitzel_restaurant, -scottish_restaurant,eat_and_drink,restaurant,scottish_restaurant, -seafood_restaurant,eat_and_drink,restaurant,seafood_restaurant, -serbo_croation_restaurant,eat_and_drink,restaurant,serbo_croatian_restaurant, -slovakian_restaurant,eat_and_drink,restaurant,slovakian_restaurant, -soul_food,eat_and_drink,restaurant,soul_food, -soup_restaurant,eat_and_drink,restaurant,soup_restaurant, -southern_restaurant,eat_and_drink,restaurant,southern_restaurant, -spanish_restaurant,eat_and_drink,restaurant,spanish_restaurant, -sri_lankan_restaurant,eat_and_drink,restaurant,sri_lankan_restaurant, -steakhouse,eat_and_drink,restaurant,steakhouse, -supper_club,eat_and_drink,restaurant,supper_club, -swiss_restaurant,eat_and_drink,restaurant,swiss_restaurant, -taco_restaurant,eat_and_drink,restaurant,taco_restaurant, -tapas_bar,eat_and_drink,restaurant,tapas_bar, -theme_restaurant,eat_and_drink,restaurant,theme_restaurant, -uzbek_restaurant,eat_and_drink,restaurant,uzbek_restaurant, -vegan_restaurant,eat_and_drink,restaurant,vegan_restaurant, -vegetarian_restaurant,eat_and_drink,restaurant,vegetarian_restaurant, -venison_restaurant,eat_and_drink,restaurant,venison_restaurant, -waffle_restaurant,eat_and_drink,restaurant,waffle_restaurant, -wild_game_meats_restaurant,eat_and_drink,restaurant,wild_game_meats_restaurant, -wok_restaurant,eat_and_drink,restaurant,wok_restaurant, -wrap_restaurant,eat_and_drink,restaurant,wrap_restaurant, -restaurant,eat_and_drink,restaurant,, -eat_and_drink,eat_and_drink,,, -adult_education,education,adult_education,, -board_of_education_offices,education,board_of_education_offices,, -campus_building,education,campus_building,, -college_counseling,education,college_counseling,, -architecture_schools,education,college_university,architecture_schools, -business_schools,education,college_university,business_schools, -engineering_schools,education,college_university,engineering_schools, -law_schools,education,college_university,law_schools, -dentistry_schools,education,college_university,medical_sciences_schools,dentistry_schools -pharmacy_schools,education,college_university,medical_sciences_schools,pharmacy_schools -veterinary_schools,education,college_university,medical_sciences_schools,veterinary_schools -medical_sciences_schools,education,college_university,medical_sciences_schools, -science_schools,education,college_university,science_schools, -college_university,education,college_university,, -educational_camp,education,educational_camp,, -educational_research_institute,education,educational_research_institute,, -archaeological_services,education,educational_services,archaeological_services, -educational_services,education,educational_services,, -private_tutor,education,private_tutor,, -charter_school,education,school,charter_school, -elementary_school,education,school,elementary_school, -high_school,education,school,high_school, -middle_school,education,school,middle_school, -montessori_school,education,school,montessori_school, -preschool,education,school,preschool, -private_school,education,school,private_school, -public_school,education,school,public_school, -religious_school,education,school,religious_school, -waldorf_school,education,school,waldorf_school, -school,education,school,, -school_district_offices,education,school_district_offices,, -art_school,education,specialty_school,art_school, -bartending_school,education,specialty_school,bartending_school, -cheerleading,education,specialty_school,cheerleading, -childbirth_education,education,specialty_school,childbirth_education, -circus_school,education,specialty_school,circus_school, -computer_coaching,education,specialty_school,computer_coaching, -cooking_school,education,specialty_school,cooking_school, -cosmetology_school,education,specialty_school,cosmetology_school, -cpr_classes,education,specialty_school,cpr_classes, -drama_school,education,specialty_school,drama_school, -driving_school,education,specialty_school,driving_school, -dui_school,education,specialty_school,dui_school, -firearm_training,education,specialty_school,firearm_training, -first_aid_class,education,specialty_school,first_aid_class, -flight_school,education,specialty_school,flight_school, -food_safety_training,education,specialty_school,food_safety_training, -language_school,education,specialty_school,language_school, -massage_school,education,specialty_school,massage_school, -medical_school,education,specialty_school,medical_school, -music_school,education,specialty_school,music_school, -nursing_school,education,specialty_school,nursing_school, -parenting_classes,education,specialty_school,parenting_classes, -photography_classes,education,specialty_school,photography_classes, -speech_training,education,specialty_school,speech_training, -sports_school,education,specialty_school,sports_school, -traffic_school,education,specialty_school,traffic_school, -vocational_and_technical_school,education,specialty_school,vocational_and_technical_school, -specialty_school,education,specialty_school,, -student_union,education,student_union,, -cheese_tasting_classes,education,tasting_classes,cheese_tasting_classes, -wine_tasting_classes,education,tasting_classes,wine_tasting_classes, -tasting_classes,education,tasting_classes,, -test_preparation,education,test_preparation,, -civil_examinations_academy,education,tutoring_center,civil_examinations_academy, -tutoring_center,education,tutoring_center,, -education,education,,, -accountant,financial_service,accountant,, -atms,financial_service,atms,, -banks,financial_service,bank_credit_union,banks, -credit_union,financial_service,bank_credit_union,credit_union, -bank_credit_union,financial_service,bank_credit_union,, -business_brokers,financial_service,brokers,business_brokers, -stock_and_bond_brokers,financial_service,brokers,stock_and_bond_brokers, -brokers,financial_service,brokers,, -business_banking_service,financial_service,business_banking_service,, -business_financing,financial_service,business_financing,, -check_cashing_payday_loans,financial_service,check_cashing_payday_loans,, -coin_dealers,financial_service,coin_dealers,, -collection_agencies,financial_service,collection_agencies,, -credit_and_debt_counseling,financial_service,credit_and_debt_counseling,, -currency_exchange,financial_service,currency_exchange,, -debt_relief_services,financial_service,debt_relief_services,, -financial_advising,financial_service,financial_advising,, -holding_companies,financial_service,holding_companies,, -auto_loan_provider,financial_service,installment_loans,auto_loan_provider, -mortgage_lender,financial_service,installment_loans,mortgage_lender, -installment_loans,financial_service,installment_loans,, -auto_insurance,financial_service,insurance_agency,auto_insurance, -farm_insurance,financial_service,insurance_agency,farm_insurance, -fidelity_and_surety_bonds,financial_service,insurance_agency,fidelity_and_surety_bonds, -home_and_rental_insurance,financial_service,insurance_agency,home_and_rental_insurance, -life_insurance,financial_service,insurance_agency,life_insurance, -insurance_agency,financial_service,insurance_agency,, -investing,financial_service,investing,, -investment_management_company,financial_service,investment_management_company,, -money_transfer_services,financial_service,money_transfer_services,, -tax_services,financial_service,tax_services,, -trusts,financial_service,trusts,, -financial_service,financial_service,,, -abortion_clinic,health_and_medical,abortion_clinic,, -alcohol_and_drug_treatment_centers,health_and_medical,abuse_and_addiction_treatment,alcohol_and_drug_treatment_centers, -crisis_intervention_services,health_and_medical,abuse_and_addiction_treatment,crisis_intervention_services, -eating_disorder_treatment_centers,health_and_medical,abuse_and_addiction_treatment,eating_disorder_treatment_centers, -abuse_and_addiction_treatment,health_and_medical,abuse_and_addiction_treatment,, -acupuncture,health_and_medical,acupuncture,, -aesthetician,health_and_medical,aesthetician,, -alcohol_and_drug_treatment_center,health_and_medical,alcohol_and_drug_treatment_center,, -alternative_medicine,health_and_medical,alternative_medicine,, -ambulance_and_ems_services,health_and_medical,ambulance_and_ems_services,, -animal_assisted_therapy,health_and_medical,animal_assisted_therapy,, -assisted_living_facility,health_and_medical,assisted_living_facility,, -ayurveda,health_and_medical,ayurveda,, -behavior_analyst,health_and_medical,behavior_analyst,, -blood_and_plasma_donation_center,health_and_medical,blood_and_plasma_donation_center,, -body_contouring,health_and_medical,body_contouring,, -cancer_treatment_center,health_and_medical,cancer_treatment_center,, -cannabis_clinic,health_and_medical,cannabis_clinic,, -cannabis_collective,health_and_medical,cannabis_collective,, -childrens_hospital,health_and_medical,childrens_hospital,, -chiropractor,health_and_medical,chiropractor,, -colonics,health_and_medical,colonics,, -community_health_center,health_and_medical,community_health_center,, -concierge_medicine,health_and_medical,concierge_medicine,, -family_counselor,health_and_medical,counseling_and_mental_health,family_counselor, -marriage_or_relationship_counselor,health_and_medical,counseling_and_mental_health,marriage_or_relationship_counselor, -psychoanalyst,health_and_medical,counseling_and_mental_health,psychoanalyst, -psychologist,health_and_medical,counseling_and_mental_health,psychologist, -psychotherapist,health_and_medical,counseling_and_mental_health,psychotherapist, -sex_therapist,health_and_medical,counseling_and_mental_health,sex_therapist, -sophrologist,health_and_medical,counseling_and_mental_health,sophrologist, -sports_psychologist,health_and_medical,counseling_and_mental_health,sports_psychologist, -stress_management_services,health_and_medical,counseling_and_mental_health,stress_management_services, -suicide_prevention_services,health_and_medical,counseling_and_mental_health,suicide_prevention_services, -counseling_and_mental_health,health_and_medical,counseling_and_mental_health,, -cryotherapy,health_and_medical,cryotherapy,, -mobile_clinic,health_and_medical,dental_hygienist,mobile_clinic, -storefront_clinic,health_and_medical,dental_hygienist,storefront_clinic, -dental_hygienist,health_and_medical,dental_hygienist,, -cosmetic_dentist,health_and_medical,dentist,cosmetic_dentist, -endodontist,health_and_medical,dentist,endodontist, -general_dentistry,health_and_medical,dentist,general_dentistry, -oral_surgeon,health_and_medical,dentist,oral_surgeon, -orthodontist,health_and_medical,dentist,orthodontist, -pediatric_dentist,health_and_medical,dentist,pediatric_dentist, -periodontist,health_and_medical,dentist,periodontist, -dentist,health_and_medical,dentist,, -diagnostic_imaging,health_and_medical,diagnostic_services,diagnostic_imaging, -laboratory_testing,health_and_medical,diagnostic_services,laboratory_testing, -diagnostic_services,health_and_medical,diagnostic_services,, -dialysis_clinic,health_and_medical,dialysis_clinic,, -dietitian,health_and_medical,dietitian,, -allergist,health_and_medical,doctor,allergist, -anesthesiologist,health_and_medical,doctor,anesthesiologist, -audiologist,health_and_medical,doctor,audiologist, -cardiologist,health_and_medical,doctor,cardiologist, -cosmetic_surgeon,health_and_medical,doctor,cosmetic_surgeon, -dermatologist,health_and_medical,doctor,dermatologist, -ear_nose_and_throat,health_and_medical,doctor,ear_nose_and_throat, -emergency_medicine,health_and_medical,doctor,emergency_medicine, -endocrinologist,health_and_medical,doctor,endocrinologist, -endoscopist,health_and_medical,doctor,endoscopist, -family_practice,health_and_medical,doctor,family_practice, -fertility,health_and_medical,doctor,fertility, -gastroenterologist,health_and_medical,doctor,gastroenterologist, -geneticist,health_and_medical,doctor,geneticist, -geriatric_psychiatry,health_and_medical,doctor,geriatric_medicine,geriatric_psychiatry -geriatric_medicine,health_and_medical,doctor,geriatric_medicine, -gerontologist,health_and_medical,doctor,gerontologist, -hepatologist,health_and_medical,doctor,hepatologist, -homeopathic_medicine,health_and_medical,doctor,homeopathic_medicine, -hospitalist,health_and_medical,doctor,hospitalist, -immunodermatologist,health_and_medical,doctor,immunodermatologist, -infectious_disease_specialist,health_and_medical,doctor,infectious_disease_specialist, -hematology,health_and_medical,doctor,internal_medicine,hematology -internal_medicine,health_and_medical,doctor,internal_medicine, -naturopathic_holistic,health_and_medical,doctor,naturopathic_holistic, -nephrologist,health_and_medical,doctor,nephrologist, -neurotologist,health_and_medical,doctor,neurologist, -neuropathologist,health_and_medical,doctor,neuropathologist, -neurologist,health_and_medical,doctor,neurotologist, -obstetrician_and_gynecologist,health_and_medical,doctor,obstetrician_and_gynecologist, -oncologist,health_and_medical,doctor,oncologist, -retina_specialist,health_and_medical,doctor,ophthalmologist,retina_specialist -ophthalmologist,health_and_medical,doctor,ophthalmologist, -orthopedist,health_and_medical,doctor,orthopedist, -osteopathic_physician,health_and_medical,doctor,osteopathic_physician, -otologist,health_and_medical,doctor,otologist, -pain_management,health_and_medical,doctor,pain_management, -pathologist,health_and_medical,doctor,pathologist, -pediatric_anesthesiology,health_and_medical,doctor,pediatrician,pediatric_anesthesiology -pediatric_cardiology,health_and_medical,doctor,pediatrician,pediatric_cardiology -pediatric_endocrinology,health_and_medical,doctor,pediatrician,pediatric_endocrinology -pediatric_gastroenterology,health_and_medical,doctor,pediatrician,pediatric_gastroenterology -pediatric_infectious_disease,health_and_medical,doctor,pediatrician,pediatric_infectious_disease -pediatric_nephrology,health_and_medical,doctor,pediatrician,pediatric_nephrology -pediatric_neurology,health_and_medical,doctor,pediatrician,pediatric_neurology -pediatric_oncology,health_and_medical,doctor,pediatrician,pediatric_oncology -pediatric_orthopedic_surgery,health_and_medical,doctor,pediatrician,pediatric_orthopedic_surgery -pediatric_pulmonology,health_and_medical,doctor,pediatrician,pediatric_pulmonology -pediatric_radiology,health_and_medical,doctor,pediatrician,pediatric_radiology -pediatric_surgery,health_and_medical,doctor,pediatrician,pediatric_surgery -pediatrician,health_and_medical,doctor,pediatrician, -phlebologist,health_and_medical,doctor,phlebologist, -physician_assistant,health_and_medical,doctor,physician_assistant, -plastic_surgeon,health_and_medical,doctor,plastic_surgeon, -podiatrist,health_and_medical,doctor,podiatrist, -preventive_medicine,health_and_medical,doctor,preventive_medicine, -proctologist,health_and_medical,doctor,proctologist, -child_psychiatrist,health_and_medical,doctor,psychiatrist,child_psychiatrist -psychiatrist,health_and_medical,doctor,psychiatrist, -pulmonologist,health_and_medical,doctor,pulmonologist, -radiologist,health_and_medical,doctor,radiologist, -rheumatologist,health_and_medical,doctor,rheumatologist, -spine_surgeon,health_and_medical,doctor,spine_surgeon, -sports_medicine,health_and_medical,doctor,sports_medicine, -cardiovascular_and_thoracic_surgeon,health_and_medical,doctor,surgeon,cardiovascular_and_thoracic_surgeon -surgeon,health_and_medical,doctor,surgeon, -tattoo_removal,health_and_medical,doctor,tattoo_removal, -toxicologist,health_and_medical,doctor,toxicologist, -tropical_medicine,health_and_medical,doctor,tropical_medicine, -undersea_hyperbaric_medicine,health_and_medical,doctor,undersea_hyperbaric_medicine, -urologist,health_and_medical,doctor,urologist, -vascular_medicine,health_and_medical,doctor,vascular_medicine, -doctor,health_and_medical,doctor,, -doula,health_and_medical,doula,, -emergency_room,health_and_medical,emergency_room,, -environmental_medicine,health_and_medical,environmental_medicine,, -eye_care_clinic,health_and_medical,eye_care_clinic,, -float_spa,health_and_medical,float_spa,, -halfway_house,health_and_medical,halfway_house,, -halotherapy,health_and_medical,halotherapy,, -health_and_wellness_club,health_and_medical,health_and_wellness_club,, -health_coach,health_and_medical,health_coach,, -health_department,health_and_medical,health_department,, -health_insurance_office,health_and_medical,health_insurance_office,, -hospice,health_and_medical,hospice,, -hospital,health_and_medical,hospital,, -hydrotherapy,health_and_medical,hydrotherapy,, -hypnosis_hypnotherapy,health_and_medical,hypnosis_hypnotherapy,, -iv_hydration,health_and_medical,iv_hydration,, -lactation_services,health_and_medical,lactation_services,, -laser_eye_surgery_lasik,health_and_medical,laser_eye_surgery_lasik,, -lice_treatment,health_and_medical,lice_treatment,, -massage_therapy,health_and_medical,massage_therapy,, -maternity_centers,health_and_medical,maternity_centers,, -medical_cannabis_referral,health_and_medical,medical_cannabis_referral,, -bulk_billing,health_and_medical,medical_center,bulk_billing, -osteopath,health_and_medical,medical_center,osteopath, -walk_in_clinic,health_and_medical,medical_center,walk_in_clinic, -medical_center,health_and_medical,medical_center,, -medical_service_organizations,health_and_medical,medical_service_organizations,, -medical_transportation,health_and_medical,medical_transportation,, -memory_care,health_and_medical,memory_care,, -midwife,health_and_medical,midwife,, -nurse_practitioner,health_and_medical,nurse_practitioner,, -nutritionist,health_and_medical,nutritionist,, -occupational_medicine,health_and_medical,occupational_medicine,, -occupational_therapy,health_and_medical,occupational_therapy,, -optometrist,health_and_medical,optometrist,, -organ_and_tissue_donor_service,health_and_medical,organ_and_tissue_donor_service,, -orthotics,health_and_medical,orthotics,, -oxygen_bar,health_and_medical,oxygen_bar,, -paternity_tests_and_services,health_and_medical,paternity_tests_and_services,, -home_health_care,health_and_medical,personal_care_service,home_health_care, -personal_care_service,health_and_medical,personal_care_service,, -physical_therapy,health_and_medical,physical_therapy,, -placenta_encapsulation_service,health_and_medical,placenta_encapsulation_service,, -podiatry,health_and_medical,podiatry,, -prenatal_perinatal_care,health_and_medical,prenatal_perinatal_care,, -prosthetics,health_and_medical,prosthetics,, -prosthodontist,health_and_medical,prosthodontist,, -psychomotor_therapist,health_and_medical,psychomotor_therapist,, -public_health_clinic,health_and_medical,public_health_clinic,, -reflexology,health_and_medical,reflexology,, -addiction_rehabilitation_center,health_and_medical,rehabilitation_center,addiction_rehabilitation_center, -rehabilitation_center,health_and_medical,rehabilitation_center,, -reiki,health_and_medical,reiki,, -sauna,health_and_medical,sauna,, -skilled_nursing,health_and_medical,skilled_nursing,, -sleep_specialist,health_and_medical,sleep_specialist,, -speech_therapist,health_and_medical,speech_therapist,, -sperm_clinic,health_and_medical,sperm_clinic,, -surgical_center,health_and_medical,surgical_center,, -tui_na,health_and_medical,traditional_chinese_medicine,tui_na, -traditional_chinese_medicine,health_and_medical,traditional_chinese_medicine,, -ultrasound_imaging_center,health_and_medical,ultrasound_imaging_center,, -urgent_care_clinic,health_and_medical,urgent_care_clinic,, -weight_loss_center,health_and_medical,weight_loss_center,, -wellness_program,health_and_medical,wellness_program,, -women's_health_clinic,health_and_medical,women's_health_clinic,, -health_and_medical,health_and_medical,,, -artificial_turf,home_service,artificial_turf,, -bathroom_remodeling,home_service,bathroom_remodeling,, -bathtub_and_sink_repairs,home_service,bathtub_and_sink_repairs,, -cabinet_sales_service,home_service,cabinet_sales_service,, -carpenter,home_service,carpenter,, -carpet_cleaning,home_service,carpet_cleaning,, -carpet_installation,home_service,carpet_installation,, -ceiling_service,home_service,ceiling_and_roofing_repair_and_service,ceiling_service, -roofing,home_service,ceiling_and_roofing_repair_and_service,roofing, -ceiling_and_roofing_repair_and_service,home_service,ceiling_and_roofing_repair_and_service,, -childproofing,home_service,childproofing,, -chimney_sweep,home_service,chimney_service,chimney_sweep, -chimney_service,home_service,chimney_service,, -closet_remodeling,home_service,closet_remodeling,, -altering_and_remodeling_contractor,home_service,contractor,altering_and_remodeling_contractor, -building_contractor,home_service,contractor,building_contractor, -flooring_contractors,home_service,contractor,flooring_contractors, -paving_contractor,home_service,contractor,paving_contractor, -contractor,home_service,contractor,, -countertop_installation,home_service,countertop_installation,, -fire_and_water_damage_restoration,home_service,damage_restoration,fire_and_water_damage_restoration, -damage_restoration,home_service,damage_restoration,, -deck_and_railing_sales_service,home_service,deck_and_railing_sales_service,, -demolition_service,home_service,demolition_service,, -door_sales_service,home_service,door_sales_service,, -drywall_services,home_service,drywall_services,, -electrician,home_service,electrician,, -excavation_service,home_service,excavation_service,, -exterior_design,home_service,exterior_design,, -fence_and_gate_sales_service,home_service,fence_and_gate_sales_service,, -fire_protection_service,home_service,fire_protection_service,, -fireplace_service,home_service,fireplace_service,, -firewood,home_service,firewood,, -foundation_repair,home_service,foundation_repair,, -furniture_assembly,home_service,furniture_assembly,, -garage_door_service,home_service,garage_door_service,, -glass_and_mirror_sales_service,home_service,glass_and_mirror_sales_service,, -grout_service,home_service,grout_service,, -gutter_service,home_service,gutter_service,, -handyman,home_service,handyman,, -holiday_decorating,home_service,holiday_decorating,, -home_automation,home_service,home_automation,, -home_cleaning,home_service,home_cleaning,, -home_energy_auditor,home_service,home_energy_auditor,, -home_inspector,home_service,home_inspector,, -home_network_installation,home_service,home_network_installation,, -home_security,home_service,home_security,, -home_window_tinting,home_service,home_window_tinting,, -house_sitting,home_service,house_sitting,, -hvac_services,home_service,hvac_services,, -insulation_installation,home_service,insulation_installation,, -interior_design,home_service,interior_design,, -irrigation,home_service,irrigation,, -key_and_locksmith,home_service,key_and_locksmith,, -kitchen_remodeling,home_service,kitchen_remodeling,, -gardener,home_service,landscaping,gardener, -landscape_architect,home_service,landscaping,landscape_architect, -lawn_service,home_service,landscaping,lawn_service, -tree_services,home_service,landscaping,tree_services, -landscaping,home_service,landscaping,, -lighting_fixtures_and_equipment,home_service,lighting_fixtures_and_equipment,, -masonry_concrete,home_service,masonry_concrete,, -mobile_home_repair,home_service,mobile_home_repair,, -movers,home_service,movers,, -packing_services,home_service,packing_services,, -painting,home_service,painting,, -patio_covers,home_service,patio_covers,, -plasterer,home_service,plasterer,, -backflow_services,home_service,plumbing,backflow_services, -plumbing,home_service,plumbing,, -pool_and_hot_tub_services,home_service,pool_and_hot_tub_services,, -pool_cleaning,home_service,pool_cleaning,, -pressure_washing,home_service,pressure_washing,, -refinishing_services,home_service,refinishing_services,, -security_systems,home_service,security_systems,, -shades_and_blinds,home_service,shades_and_blinds,, -shutters,home_service,shutters,, -siding,home_service,siding,, -solar_installation,home_service,solar_installation,, -solar_panel_cleaning,home_service,solar_panel_cleaning,, -structural_engineer,home_service,structural_engineer,, -stucco_services,home_service,stucco_services,, -television_service_providers,home_service,television_service_providers,, -tiling,home_service,tiling,, -wallpaper_installers,home_service,wallpaper_installers,, -washer_and_dryer_repair_service,home_service,washer_and_dryer_repair_service,, -water_heater_installation_repair,home_service,water_heater_installation_repair,, -water_purification_services,home_service,water_purification_services,, -waterproofing,home_service,waterproofing,, -window_washing,home_service,window_washing,, -skylight_installation,home_service,windows_installation,skylight_installation, -windows_installation,home_service,windows_installation,, -home_service,home_service,,, -movie_critic,mass_media,media_critic,movie_critic, -music_critic,mass_media,media_critic,music_critic, -video_game_critic,mass_media,media_critic,video_game_critic, -media_critic,mass_media,media_critic,, -animation_studio,mass_media,media_news_company,animation_studio, -book_magazine_distribution,mass_media,media_news_company,book_magazine_distribution, -broadcasting_media_production,mass_media,media_news_company,broadcasting_media_production, -game_publisher,mass_media,media_news_company,game_publisher, -media_agency,mass_media,media_news_company,media_agency, -movie_television_studio,mass_media,media_news_company,movie_television_studio, -music_production,mass_media,media_news_company,music_production, -radio_station,mass_media,media_news_company,radio_station, -social_media_company,mass_media,media_news_company,social_media_company, -television_station,mass_media,media_news_company,television_station, -topic_publisher,mass_media,media_news_company,topic_publisher, -weather_forecast_services,mass_media,media_news_company,weather_forecast_services, -media_news_company,mass_media,media_news_company,, -media_news_website,mass_media,media_news_website,, -art_restoration,mass_media,media_restoration_service,art_restoration, -media_restoration_service,mass_media,media_restoration_service,, -print_media,mass_media,print_media,, -theatrical_productions,mass_media,treatrical_productions,, -mass_media,mass_media,,, -animal_rescue_service,pets,animal_rescue_service,, -animal_shelter,pets,animal_shelter,, -horse_boarding,pets,horse_boarding,, -pet_adoption,pets,pet_adoption,, -animal_hospital,pets,pet_services,animal_hospital, -animal_physical_therapy,pets,pet_services,animal_physical_therapy, -aquarium_services,pets,pet_services,aquarium_services, -dog_walkers,pets,pet_services,dog_walkers, -emergency_pet_hospital,pets,pet_services,emergency_pet_hospital, -farrier_services,pets,pet_services,farrier_services, -holistic_animal_care,pets,pet_services,holistic_animal_care, -pet_breeder,pets,pet_services,pet_breeder, -pet_cemetery_and_crematorium_services,pets,pet_services,pet_cemetery_and_crematorium_services, -pet_groomer,pets,pet_services,pet_groomer, -pet_hospice,pets,pet_services,pet_hospice, -pet_insurance,pets,pet_services,pet_insurance, -pet_photography,pets,pet_services,pet_photography, -pet_boarding,pets,pet_services,pet_sitting,pet_boarding -pet_sitting,pets,pet_services,pet_sitting, -dog_trainer,pets,pet_services,pet_training,dog_trainer -horse_trainer,pets,pet_services,pet_training,horse_trainer -pet_training,pets,pet_services,pet_training, -pet_transportation,pets,pet_services,pet_transportation, -pet_waste_removal,pets,pet_services,pet_waste_removal, -pet_services,pets,pet_services,, -veterinarian,pets,veterinarian,, -pets,pets,,, -corporate_entertainment_services,private_establishments_and_corporates,corporate_entertainment_services,, -corporate_gift_supplier,private_establishments_and_corporates,corporate_gift_supplier,, -corporate_office,private_establishments_and_corporates,corporate_office,, -private_equity_firm,private_establishments_and_corporates,private_equity_firm,, -private_establishments_and_corporates,private_establishments_and_corporates,,, -3d_printing_service,professional_services,3d_printing_service,, -acoustical_consultant,professional_services,acoustical_consultant,, -adoption_services,professional_services,adoption_services,, -advertising_agency,professional_services,advertising_agency,, -after_school_program,professional_services,after_school_program,, -air_duct_cleaning_service,professional_services,air_duct_cleaning_service,, -antenna_service,professional_services,antenna_service,, -appliance_repair_service,professional_services,appliance_repair_service,, -appraisal_services,professional_services,appraisal_services,, -architect,professional_services,architect,, -architectural_designer,professional_services,architectural_designer,, -art_restoration_service,professional_services,art_restoration_service,, -awning_supplier,professional_services,awning_supplier,, -bail_bonds_service,professional_services,bail_bonds_service,, -bank_equipment_service,professional_services,bank_equipment_service,, -bike_repair_maintenance,professional_services,bike_repair_maintenance,, -billing_services,professional_services,billing_services,, -bookbinding,professional_services,bookbinding,, -bookkeeper,professional_services,bookkeeper,, -bus_rentals,professional_services,bus_rentals,, -business_consulting,professional_services,business_consulting,, -calligraphy,professional_services,calligraphy,, -car_broker,professional_services,car_broker,, -career_counseling,professional_services,career_counseling,, -carpet_dyeing,professional_services,carpet_dyeing,, -cemeteries,professional_services,cemeteries,, -certification_agency,professional_services,certification_agency,, -day_care_preschool,professional_services,child_care_and_day_care,day_care_preschool, -child_care_and_day_care,professional_services,child_care_and_day_care,, -industrial_cleaning_services,professional_services,cleaning_services,industrial_cleaning_services, -janitorial_services,professional_services,cleaning_services,janitorial_services, -office_cleaning,professional_services,cleaning_services,office_cleaning, -cleaning_services,professional_services,cleaning_services,, -clock_repair_service,professional_services,clock_repair_service,, -commercial_printer,professional_services,commercial_printer,, -commercial_refrigeration,professional_services,commercial_refrigeration,, -commissioned_artist,professional_services,commissioned_artist,, -community_book_boxes,professional_services,community_book_boxes,, -community_gardens,professional_services,community_gardens,, -computer_hardware_company,professional_services,computer_hardware_company,, -blueprinters,professional_services,construction_services,blueprinters, -construction_management,professional_services,construction_services,construction_management, -civil_engineers,professional_services,construction_services,engineering_services,civil_engineers -instrumentation_engineers,professional_services,construction_services,engineering_services,instrumentation_engineers -mechanical_engineers,professional_services,construction_services,engineering_services,mechanical_engineers -engineering_services,professional_services,construction_services,engineering_services, -inspection_services,professional_services,construction_services,inspection_services, -blacksmiths,professional_services,construction_services,metal_materials_and_experts,blacksmiths -ironworkers,professional_services,construction_services,metal_materials_and_experts,ironworkers -welders,professional_services,construction_services,metal_materials_and_experts,welders -metal_materials_and_experts,professional_services,construction_services,metal_materials_and_experts, -road_contractor,professional_services,construction_services,road_contractor, -gravel_professionals,professional_services,construction_services,stone_and_masonry,gravel_professionals -lime_professionals,professional_services,construction_services,stone_and_masonry,lime_professionals -marble_and_granite_professionals,professional_services,construction_services,stone_and_masonry,marble_and_granite_professionals -masonry_contractors,professional_services,construction_services,stone_and_masonry,masonry_contractors -stone_and_masonry,professional_services,construction_services,stone_and_masonry, -wind_energy,professional_services,construction_services,wind_energy, -construction_services,professional_services,construction_services,, -copywriting_service,professional_services,copywriting_service,, -courier_and_delivery_services,professional_services,courier_and_delivery_services,, -crane_services,professional_services,crane_services,, -customs_broker,professional_services,customs_broker,, -delegated_driver_service,professional_services,delegated_driver_service,, -diamond_dealer,professional_services,diamond_dealer,, -digitizing_services,professional_services,digitizing_services,, -donation_center,professional_services,donation_center,, -duplication_services,professional_services,duplication_services,, -e_commerce_service,professional_services,e_commerce_service,, -editorial_services,professional_services,editorial_services,, -elder_care_planning,professional_services,elder_care_planning,, -electrical_consultant,professional_services,electrical_consultant,, -electronics_repair_shop,professional_services,electronics_repair_shop,, -elevator_service,professional_services,elevator_service,, -emergency_service,professional_services,emergency_service,, -temp_agency,professional_services,employment_agencies,temp_agency, -employment_agencies,professional_services,employment_agencies,, -engraving,professional_services,engraving,, -environmental_abatement_services,professional_services,environmental_abatement_services,, -environmental_testing,professional_services,environmental_testing,, -balloon_services,professional_services,event_planning,balloon_services, -bartender,professional_services,event_planning,bartender, -boat_charter,professional_services,event_planning,boat_charter, -caricature,professional_services,event_planning,caricature, -caterer,professional_services,event_planning,caterer, -clown,professional_services,event_planning,clown, -dj_service,professional_services,event_planning,dj_service, -event_technology_service,professional_services,event_planning,event_technology_service, -face_painting,professional_services,event_planning,face_painting, -floral_designer,professional_services,event_planning,floral_designer, -game_truck_rental,professional_services,event_planning,game_truck_rental, -golf_cart_rental,professional_services,event_planning,golf_cart_rental, -henna_artist,professional_services,event_planning,henna_artist, -kids_recreation_and_party,professional_services,event_planning,kids_recreation_and_party, -magician,professional_services,event_planning,magician, -mohel,professional_services,event_planning,mohel, -musician,professional_services,event_planning,musician, -officiating_services,professional_services,event_planning,officiating_services, -party_and_event_planning,professional_services,event_planning,party_and_event_planning, -party_bike_rental,professional_services,event_planning,party_bike_rental, -party_bus_rental,professional_services,event_planning,party_bus_rental, -party_character,professional_services,event_planning,party_character, -audiovisual_equipment_rental,professional_services,event_planning,party_equipment_rental,audiovisual_equipment_rental -bounce_house_rental,professional_services,event_planning,party_equipment_rental,bounce_house_rental -karaoke_rental,professional_services,event_planning,party_equipment_rental,karaoke_rental -party_equipment_rental,professional_services,event_planning,party_equipment_rental, -personal_chef,professional_services,event_planning,personal_chef, -photo_booth_rental,professional_services,event_planning,photo_booth_rental, -boudoir_photography,professional_services,event_planning,photographer,boudoir_photography -event_photography,professional_services,event_planning,photographer,event_photography -session_photography,professional_services,event_planning,photographer,session_photography -photographer,professional_services,event_planning,photographer, -silent_disco,professional_services,event_planning,silent_disco, -sommelier_service,professional_services,event_planning,sommelier_service, -team_building_activity,professional_services,event_planning,team_building_activity, -trivia_host,professional_services,event_planning,trivia_host, -valet_service,professional_services,event_planning,valet_service, -venue_and_event_space,professional_services,event_planning,venue_and_event_space, -videographer,professional_services,event_planning,videographer, -wedding_chapel,professional_services,event_planning,wedding_chapel, -wedding_planning,professional_services,event_planning,wedding_planning, -event_planning,professional_services,event_planning,, -farm_equipment_repair_service,professional_services,farm_equipment_repair_service,, -feng_shui,professional_services,feng_shui,, -fingerprinting_service,professional_services,fingerprinting_service,, -food_and_beverage_consultant,professional_services,food_and_beverage_consultant,, -forestry_service,professional_services,forestry_service,, -fortune_telling_service,professional_services,fortune_telling_service,, -cremation_services,professional_services,funeral_services_and_cemeteries,cremation_services, -mortuary_services,professional_services,funeral_services_and_cemeteries,mortuary_services, -funeral_services_and_cemeteries,professional_services,funeral_services_and_cemeteries,, -furniture_rental_service,professional_services,furniture_rental_service,, -furniture_repair,professional_services,furniture_repair,, -furniture_reupholstery,professional_services,furniture_reupholstery,, -genealogists,professional_services,genealogists,, -generator_installation_repair,professional_services,generator_installation_repair,, -goldsmith,professional_services,goldsmith,, -graphic_designer,professional_services,graphic_designer,, -gunsmith,professional_services,gunsmith,, -hazardous_waste_disposal,professional_services,hazardous_waste_disposal,, -hydraulic_repair_service,professional_services,hydraulic_repair_service,, -hydro_jetting,professional_services,hydro_jetting,, -ice_supplier,professional_services,ice_supplier,, -immigration_assistance_services,professional_services,immigration_assistance_services,, -indoor_landscaping,professional_services,indoor_landscaping,, -internet_marketing_service,professional_services,internet_marketing_service,, -web_hosting_service,professional_services,internet_service_provider,web_hosting_service, -internet_service_provider,professional_services,internet_service_provider,, -data_recovery,professional_services,it_service_and_computer_repair,data_recovery, -it_consultant,professional_services,it_service_and_computer_repair,it_consultant, -it_support_snd_service,professional_services,it_service_and_computer_repair,it_support_snd_service, -mobile_phone_repair,professional_services,it_service_and_computer_repair,mobile_phone_repair, -telecommunications,professional_services,it_service_and_computer_repair,telecommunications, -it_service_and_computer_repair,professional_services,it_service_and_computer_repair,, -jewelry_repair_service,professional_services,jewelry_repair_service,, -dumpster_rentals,professional_services,junk_removal_and_hauling,dumpster_rentals, -junk_removal_and_hauling,professional_services,junk_removal_and_hauling,, -junkyard,professional_services,junkyard,, -knife_sharpening,professional_services,knife_sharpening,, -laboratory,professional_services,laboratory,, -dry_cleaning,professional_services,laundry_services,dry_cleaning, -laundromat,professional_services,laundry_services,laundromat, -laundry_services,professional_services,laundry_services,, -lawn_mower_repair_service,professional_services,lawn_mower_repair_service,, -appellate_practice_lawyers,professional_services,lawyer,appellate_practice_lawyers, -bankruptcy_law,professional_services,lawyer,bankruptcy_law, -business_law,professional_services,lawyer,business_law, -civil_rights_lawyers,professional_services,lawyer,civil_rights_lawyers, -contract_law,professional_services,lawyer,contract_law, -criminal_defense_law,professional_services,lawyer,criminal_defense_law, -disability_law,professional_services,lawyer,disability_law, -divorce_and_family_law,professional_services,lawyer,divorce_and_family_law, -dui_law,professional_services,lawyer,dui_law, -employment_law,professional_services,lawyer,employment_law, -entertainment_law,professional_services,lawyer,entertainment_law, -wills_trusts_and_probate,professional_services,lawyer,estate_planning_law,wills_trusts_and_probate -estate_planning_law,professional_services,lawyer,estate_planning_law, -general_litigation,professional_services,lawyer,general_litigation, -immigration_law,professional_services,lawyer,immigration_law, -ip_and_internet_law,professional_services,lawyer,ip_and_internet_law, -medical_law,professional_services,lawyer,medical_law, -paralegal_services,professional_services,lawyer,paralegal_services, -personal_injury_law,professional_services,lawyer,personal_injury_law, -real_estate_law,professional_services,lawyer,real_estate_law, -social_security_law,professional_services,lawyer,social_security_law, -tax_law,professional_services,lawyer,tax_law, -traffic_ticketing_law,professional_services,lawyer,traffic_ticketing_law, -workers_compensation_law,professional_services,lawyer,workers_compensation_law, -lawyer,professional_services,lawyer,, -court_reporter,professional_services,legal_services,court_reporter, -process_servers,professional_services,legal_services,process_servers, -legal_services,professional_services,legal_services,, -life_coach,professional_services,life_coach,, -lottery_ticket,professional_services,lottery_ticket,, -machine_and_tool_rentals,professional_services,machine_and_tool_rentals,, -machine_shop,professional_services,machine_shop,, -mailbox_center,professional_services,mailbox_center,, -marketing_agency,professional_services,marketing_agency,, -matchmaker,professional_services,matchmaker,, -mediator,professional_services,mediator,, -merchandising_service,professional_services,merchandising_service,, -metal_detector_services,professional_services,metal_detector_services,, -misting_system_services,professional_services,misting_system_services,, -mobility_equipment_services,professional_services,mobility_equipment_services,, -mooring_service,professional_services,mooring_service,, -music_production_services,professional_services,music_production_services,, -piano_services,professional_services,musical_instrument_services,piano_services, -vocal_coach,professional_services,musical_instrument_services,vocal_coach, -musical_instrument_services,professional_services,musical_instrument_services,, -nanny_services,professional_services,nanny_services,, -notary_public,professional_services,notary_public,, -package_locker,professional_services,package_locker,, -packaging_contractors_and_service,professional_services,packaging_contractors_and_service,, -patent_law,professional_services,patent_law,, -payroll_services,professional_services,payroll_services,, -personal_assistant,professional_services,personal_assistant,, -pest_control_service,professional_services,pest_control_service,, -powder_coating_service,professional_services,powder_coating_service,, -printing_services,professional_services,printing_services,, -private_investigation,professional_services,private_investigation,, -product_design,professional_services,product_design,, -propane_supplier,professional_services,propane_supplier,, -public_adjuster,professional_services,public_adjuster,, -public_relations,professional_services,public_relations,, -record_label,professional_services,record_label,, -recording_and_rehearsal_studio,professional_services,recording_and_rehearsal_studio,, -recycling_center,professional_services,recycling_center,, -sandblasting_service,professional_services,sandblasting_service,, -screen_printing_t_shirt_printing,professional_services,screen_printing_t_shirt_printing,, -security_services,professional_services,security_services,, -septic_services,professional_services,septic_services,, -gents_tailor,professional_services,sewing_and_alterations,gents_tailor, -sewing_and_alterations,professional_services,sewing_and_alterations,, -shipping_center,professional_services,shipping_center,, -shoe_repair,professional_services,shoe_repair,, -shoe_shining_service,professional_services,shoe_shining_service,, -shredding_services,professional_services,shredding_services,, -sign_making,professional_services,sign_making,, -snow_removal_service,professional_services,snow_removal_service,, -snuggle_service,professional_services,snuggle_service,, -social_media_agency,professional_services,social_media_agency,, -software_development,professional_services,software_development,, -boat_storage_facility,professional_services,storage_facility,rv_and_boat_storage_facility,boat_storage_facility -rv_storage_facility,professional_services,storage_facility,rv_and_boat_storage_facility,rv_storage_facility -rv_and_boat_storage_facility,professional_services,storage_facility,rv_and_boat_storage_facility, -self_storage_facility,professional_services,storage_facility,self_storage_facility, -storage_facility,professional_services,storage_facility,, -talent_agency,professional_services,talent_agency,, -taxidermist,professional_services,taxidermist,, -telephone_services,professional_services,telephone_services,, -tenant_and_eviction_law,professional_services,tenant_and_eviction_law,, -tent_house_supplier,professional_services,tent_house_supplier,, -translation_services,professional_services,translation_services,, -tv_mounting,professional_services,tv_mounting,, -typing_services,professional_services,typing_services,, -electricity_supplier,professional_services,utility_service,electricity_supplier, -garbage_collection_service,professional_services,utility_service,garbage_collection_service, -natural_gas_supplier,professional_services,utility_service,natural_gas_supplier, -public_phones,professional_services,utility_service,public_phones, -public_restrooms,professional_services,utility_service,public_restrooms, -water_supplier,professional_services,utility_service,water_supplier, -utility_service,professional_services,utility_service,, -video_film_production,professional_services,video_film_production,, -watch_repair_service,professional_services,watch_repair_service,, -water_delivery,professional_services,water_delivery,, -web_designer,professional_services,web_designer,, -well_drilling,professional_services,well_drilling,, -wildlife_control,professional_services,wildlife_control,, -writing_service,professional_services,writing_service,, -professional_services,professional_services,,, -armed_forces_branch,public_service_and_government,armed_forces_branch,, -central_government_office,public_service_and_government,central_government_office,, -chambers_of_commerce,public_service_and_government,chambers_of_commerce,, -children_hall,public_service_and_government,children_hall,, -civic_center,public_service_and_government,civic_center,, -community_center,public_service_and_government,community_center,, -disability_services_and_support_organization,public_service_and_government,community_services,disability_services_and_support_organization, -community_services_non_profits,public_service_and_government,community_services,, -courthouse,public_service_and_government,courthouse,, -department_of_motor_vehicles,public_service_and_government,department_of_motor_vehicles,, -department_of_social_service,public_service_and_government,department_of_social_service,, -embassy,public_service_and_government,embassy,, -family_service_center,public_service_and_government,family_service_center,, -federal_government_offices,public_service_and_government,federal_government_offices,, -fire_department,public_service_and_government,fire_department,, -social_security_services,public_service_and_government,government_services,social_security_services, -government_services,public_service_and_government,government_services,, -immigration_and_naturalization,public_service_and_government,immigration_and_naturalization,, -juvenile_detention_center,public_service_and_government,jail_and_prison,juvenile_detention_center, -jail_and_prison,public_service_and_government,jail_and_prison,, -law_enforcement,public_service_and_government,law_enforcement,, -library,public_service_and_government,library,, -local_and_state_government_offices,public_service_and_government,local_and_state_government_offices,, -low_income_housing,public_service_and_government,low_income_housing,, -national_security_services,public_service_and_government,national_security_services,, -office_of_vital_records,public_service_and_government,office_of_vital_records,, -agriculture_association,public_service_and_government,organization,agriculture_association, -environmental_conservation_organization,public_service_and_government,organization,environmental_conservation_organization, -home_organization,public_service_and_government,organization,home_organization, -labor_union,public_service_and_government,organization,labor_union, -non_governmental_association,public_service_and_government,organization,non_governmental_association, -political_organization,public_service_and_government,organization,political_organization, -private_association,public_service_and_government,organization,private_association, -public_and_government_association,public_service_and_government,organization,public_and_government_association, -charity_organization,public_service_and_government,organization,social_service_organizations,charity_organization -child_protection_service,public_service_and_government,organization,social_service_organizations,child_protection_service -food_banks,public_service_and_government,organization,social_service_organizations,food_banks -foster_care_services,public_service_and_government,organization,social_service_organizations,foster_care_services -gay_and_lesbian_services_organization,public_service_and_government,organization,social_service_organizations,gay_and_lesbian_services_organization -homeless_shelter,public_service_and_government,organization,social_service_organizations,homeless_shelter -housing_authorities,public_service_and_government,organization,social_service_organizations,housing_authorities -senior_citizen_services,public_service_and_government,organization,social_service_organizations,senior_citizen_services -social_and_human_services,public_service_and_government,organization,social_service_organizations,social_and_human_services -social_welfare_center,public_service_and_government,organization,social_service_organizations,social_welfare_center -volunteer_association,public_service_and_government,organization,social_service_organizations,volunteer_association -youth_organizations,public_service_and_government,organization,social_service_organizations,youth_organizations -social_service_organizations,public_service_and_government,organization,social_service_organizations, -organization,public_service_and_government,organization,, -pension,public_service_and_government,pension,, -police_department,public_service_and_government,police_department,, -political_party_office,public_service_and_government,political_party_office,, -shipping_collection_services,public_service_and_government,post_office,shipping_collection_services, -post_office,public_service_and_government,post_office,, -public_toilet,public_service_and_government,public_toilet,, -electric_utility_provider,public_service_and_government,public_utility_company,electric_utility_provider, -energy_company,public_service_and_government,public_utility_company,energy_company, -public_utility_company,public_service_and_government,public_utility_company,, -railway_service,public_service_and_government,railway_service,, -registry_office,public_service_and_government,registry_office,, -retirement_home,public_service_and_government,retirement_home,, -scout_hall,public_service_and_government,scout_hall,, -tax_office,public_service_and_government,tax_office,, -town_hall,public_service_and_government,town_hall,, -unemployment_office,public_service_and_government,unemployment_office,, -weather_station,public_service_and_government,weather_station,, -public_service_and_government,public_service_and_government,,, -apartments,real_estate,apartments,, -art_space_rental,real_estate,art_space_rental,, -home_developer,real_estate,builders,home_developer, -builders,real_estate,builders,, -commercial_real_estate,real_estate,commercial_real_estate,, -condominium,real_estate,condominium,, -display_home_center,real_estate,display_home_center,, -estate_liquidation,real_estate,estate_liquidation,, -holiday_park,real_estate,holiday_park,, -home_staging,real_estate,home_staging,, -homeowner_association,real_estate,homeowner_association,, -housing_cooperative,real_estate,housing_cooperative,, -kitchen_incubator,real_estate,kitchen_incubator,, -mobile_home_dealer,real_estate,mobile_home_dealer,, -mobile_home_park,real_estate,mobile_home_park,, -mortgage_broker,real_estate,mortgage_broker,, -property_management,real_estate,property_management,, -apartment_agent,real_estate,real_estate_agent,apartment_agent, -real_estate_agent,real_estate,real_estate_agent,, -real_estate_investment,real_estate,real_estate_investment,, -escrow_services,real_estate,real_estate_service,escrow_services, -land_surveying,real_estate,real_estate_service,land_surveying, -real_estate_photography,real_estate,real_estate_service,real_estate_photography, -rental_services,real_estate,real_estate_service,rental_services, -real_estate_service,real_estate,real_estate_service,, -shared_office_space,real_estate,shared_office_space,, -university_housing,real_estate,university_housing,, -real_estate,real_estate,,, -buddhist_temple,religious_organization,buddhist_temple,, -anglican_church,religious_organization,church_cathedral,anglican_church, -baptist_church,religious_organization,church_cathedral,baptist_church, -catholic_church,religious_organization,church_cathedral,catholic_church, -episcopal_church,religious_organization,church_cathedral,episcopal_church, -evangelical_church,religious_organization,church_cathedral,evangelical_church, -jehovahs_witness_kingdom_hall,religious_organization,church_cathedral,jehovahs_witness_kingdom_hall, -pentecostal_church,religious_organization,church_cathedral,pentecostal_church, -church_cathedral,religious_organization,church_cathedral,, -convents_and_monasteries,religious_organization,convents_and_monasteries,, -hindu_temple,religious_organization,hindu_temple,, -mission,religious_organization,mission,, -mosque,religious_organization,mosque,, -religious_destination,religious_organization,religious_destination,, -shinto_shrines,religious_organization,shinto_shrines,, -sikh_temple,religious_organization,sikh_temple,, -synagogue,religious_organization,synagogue,, -temple,religious_organization,temple,, -religious_organization,religious_organization,,, -auto_parts_and_supply_store,retail,auto_parts_and_supply_store,, -beverage_store,retail,beverage_store,, -boat_parts_and_supply_store,retail,boat_parts_and_supply_store,, -carpet_store,retail,carpet_store,, -distillery,retail,distillery,, -drugstore,retail,drugstore,, -flooring_store,retail,flooring_store,, -back_shop,retail,food,back_shop, -bagel_shop,retail,food,bagel_shop, -flatbread,retail,food,bakery,flatbread -bakery,retail,food,bakery, -beer_wine_and_spirits,retail,food,beer_wine_and_spirits, -box_lunch_supplier,retail,food,box_lunch_supplier, -butcher_shop,retail,food,butcher_shop, -japanese_confectionery_shop,retail,food,candy_store,japanese_confectionery_shop -candy_store,retail,food,candy_store, -cheese_shop,retail,food,cheese_shop, -chocolatier,retail,food,chocolatier, -coffee_and_tea_supplies,retail,food,coffee_and_tea_supplies, -csa_farm,retail,food,csa_farm, -desserts,retail,food,desserts, -donuts,retail,food,donuts, -fishmonger,retail,food,fishmonger, -pizza_delivery_service,retail,food,food_delivery_service,pizza_delivery_service -food_delivery_service,retail,food,food_delivery_service, -food_stand,retail,food,food_stand, -food_truck,retail,food,food_truck, -friterie,retail,food,friterie, -fruits_and_vegetables,retail,food,fruits_and_vegetables, -health_food_store,retail,food,health_food_store, -frozen_yoghurt_shop,retail,food,ice_cream_and_frozen_yoghurt,frozen_yoghurt_shop -gelato,retail,food,ice_cream_and_frozen_yoghurt,gelato -ice_cream_shop,retail,food,ice_cream_and_frozen_yoghurt,ice_cream_shop -shaved_ice_shop,retail,food,ice_cream_and_frozen_yoghurt,shaved_ice_shop -shaved_snow_shop,retail,food,ice_cream_and_frozen_yoghurt,shaved_snow_shop -ice_cream_and_frozen_yoghurt,retail,food,ice_cream_and_frozen_yoghurt, -imported_food,retail,food,imported_food, -kiosk,retail,food,kiosk, -liquor_store,retail,food,liquor_store, -mulled_wine,retail,food,mulled_wine, -chimney_cake_shop,retail,food,patisserie_cake_shop,chimney_cake_shop -cupcake_shop,retail,food,patisserie_cake_shop,cupcake_shop -custom_cakes_shop,retail,food,patisserie_cake_shop,custom_cakes_shop -patisserie_cake_shop,retail,food,patisserie_cake_shop, -pie_shop,retail,food,pie_shop, -pretzels,retail,food,pretzels, -sandwich_shop,retail,food,sandwich_shop, -smokehouse,retail,food,smokehouse, -delicatessen,retail,food,specialty_foods,delicatessen -frozen_foods,retail,food,specialty_foods,frozen_foods -indian_sweets_shop,retail,food,specialty_foods,indian_sweets_shop -macarons,retail,food,specialty_foods,macarons -pasta_shop,retail,food,specialty_foods,pasta_shop -specialty_foods,retail,food,specialty_foods, -street_vendor,retail,food,street_vendor, -wine_tasting_room,retail,food,winery,wine_tasting_room -winery,retail,food,winery, -food,retail,food,, -health_market,retail,health_market,, -hearing_aid_provider,retail,hearing_aid_provider,, -herb_and_spice_shop,retail,herb_and_spice_shop,, -honey_farm_shop,retail,honey_farm_shop,, -meat_shop,retail,meat_shop,, -olive_oil,retail,olive_oil,, -party_supply,retail,party_supply,, -pharmacy,retail,pharmacy,, -popcorn_shop,retail,popcorn_shop,, -seafood_market,retail,seafood_market,, -adult_store,retail,shopping,adult_store, -agricultural_seed_store,retail,shopping,agricultural_seed_store, -antique_store,retail,shopping,antique_store, -army_and_navy_store,retail,shopping,army_and_navy_store, -art_supply_store,retail,shopping,arts_and_crafts,art_supply_store -atelier,retail,shopping,arts_and_crafts,atelier -cooking_classes,retail,shopping,arts_and_crafts,cooking_classes -costume_store,retail,shopping,arts_and_crafts,costume_store -craft_shop,retail,shopping,arts_and_crafts,craft_shop -embroidery_and_crochet,retail,shopping,arts_and_crafts,embroidery_and_crochet -fabric_store,retail,shopping,arts_and_crafts,fabric_store -framing_store,retail,shopping,arts_and_crafts,framing_store -handicraft_shop,retail,shopping,arts_and_crafts,handicraft_shop -paint_your_own_pottery,retail,shopping,arts_and_crafts,paint_your_own_pottery -arts_and_crafts,retail,shopping,arts_and_crafts, -car_auction,retail,shopping,auction_house,car_auction -auction_house,retail,shopping,auction_house, -audio_visual_equipment_store,retail,shopping,audio_visual_equipment_store, -baby_gear_and_furniture,retail,shopping,baby_gear_and_furniture, -battery_store,retail,shopping,battery_store, -bazaars,retail,shopping,bazaars, -academic_bookstore,retail,shopping,books_mags_music_and_video,academic_bookstore -bookstore,retail,shopping,books_mags_music_and_video,bookstore -comic_books_store,retail,shopping,books_mags_music_and_video,comic_books_store -music_and_dvd_store,retail,shopping,books_mags_music_and_video,music_and_dvd_store -newspaper_and_magazines_store,retail,shopping,books_mags_music_and_video,newspaper_and_magazines_store -video_and_video_game_rentals,retail,shopping,books_mags_music_and_video,video_and_video_game_rentals -video_game_store,retail,shopping,books_mags_music_and_video,video_game_store -vinyl_record_store,retail,shopping,books_mags_music_and_video,vinyl_record_store -books_mags_music_and_video,retail,shopping,books_mags_music_and_video, -boutique,retail,shopping,boutique, -brewing_supply_store,retail,shopping,brewing_supply_store, -bridal_shop,retail,shopping,bridal_shop, -lumber_store,retail,shopping,building_supply_store,lumber_store -building_supply_store,retail,shopping,building_supply_store, -cannabis_dispensary,retail,shopping,cannabis_dispensary, -cards_and_stationery_store,retail,shopping,cards_and_stationery_store, -computer_store,retail,shopping,computer_store, -concept_shop,retail,shopping,concept_shop, -convenience_store,retail,shopping,convenience_store, -hair_supply_stores,retail,shopping,cosmetic_and_beauty_supplies,hair_supply_stores -cosmetic_and_beauty_supplies,retail,shopping,cosmetic_and_beauty_supplies, -custom_clothing,retail,shopping,custom_clothing, -customized_merchandise,retail,shopping,customized_merchandise, -department_store,retail,shopping,department_store, -discount_store,retail,shopping,discount_store, -do_it_yourself_store,retail,shopping,do_it_yourself_store, -drone_store,retail,shopping,drone_store, -duty_free_shop,retail,shopping,duty_free_shop, -e_cigarette_store,retail,shopping,e_cigarette_store, -educational_supply_store,retail,shopping,educational_supply_store, -electronics,retail,shopping,electronics, -sunglasses_store,retail,shopping,eyewear_and_optician,sunglasses_store -eyewear_and_optician,retail,shopping,eyewear_and_optician, -farmers_market,retail,shopping,farmers_market, -forklift_dealer,retail,shopping,farming_equipment_store,forklift_dealer -farming_equipment_store,retail,shopping,farming_equipment_store, -ceremonial_clothing,retail,shopping,fashion,clothing_store -children's_clothing_store,retail,shopping,fashion,clothing_store -clothing_rental,retail,shopping,fashion,clothing_store -clothing_store,retail,shopping,fashion,clothing_store -custom_t_shirt_store,retail,shopping,fashion,clothing_store -denim_wear_store,retail,shopping,fashion,clothing_store -designer_clothing,retail,shopping,fashion,clothing_store -formal_wear_store,retail,shopping,fashion,clothing_store -fur_clothing,retail,shopping,fashion,clothing_store -lingerie_store,retail,shopping,fashion,clothing_store -maternity_wear,retail,shopping,fashion,clothing_store -men's_clothing_store,retail,shopping,fashion,clothing_store -t_shirt_store,retail,shopping,fashion,clothing_store -traditional_clothing,retail,shopping,fashion,clothing_store -women's_clothing_store,retail,shopping,fashion,clothing_store -fashion_accessories_store,retail,shopping,fashion,fashion_accessories_store -handbag_stores,retail,shopping,fashion,fashion_accessories_store -hat_shop,retail,shopping,fashion,hat_shop -leather_goods,retail,shopping,fashion,leather_goods -plus_size_clothing,retail,shopping,fashion,plus_size_clothing -saree_shop,retail,shopping,fashion,saree_shop -orthopedic_shoe_store,retail,shopping,fashion,shoe_store -shoe_store,retail,shopping,fashion,shoe_store -sleepwear,retail,shopping,fashion,sleepwear -stocking,retail,shopping,fashion,stocking -used_vintage_and_consignment,retail,shopping,fashion,used_vintage_and_consignment -fashion,retail,shopping,fashion, -firework_retailer,retail,shopping,firework_retailer, -fitness_exercise_equipment,retail,shopping,fitness_exercise_equipment, -flea_market,retail,shopping,flea_market, -flower_markets,retail,shopping,flower_markets, -florist,retail,shopping,flowers_and_gifts_shop,florist -gift_shop,retail,shopping,flowers_and_gifts_shop,gift_shop -flowers_and_gifts_shop,retail,shopping,flowers_and_gifts_shop, -gemstone_and_mineral,retail,shopping,gemstone_and_mineral, -gold_buyer,retail,shopping,gold_buyer, -asian_grocery_store,retail,shopping,grocery_store,asian_grocery_store -dairy_stores,retail,shopping,grocery_store,dairy_stores -ethical_grocery,retail,shopping,grocery_store,ethical_grocery -indian_grocery_store,retail,shopping,grocery_store,indian_grocery_store -japanese_grocery_store,retail,shopping,grocery_store,japanese_grocery_store -korean_grocery_store,retail,shopping,grocery_store,korean_grocery_store -kosher_grocery_store,retail,shopping,grocery_store,kosher_grocery_store -mexican_grocery_store,retail,shopping,grocery_store,mexican_grocery_store -organic_grocery_store,retail,shopping,grocery_store,organic_grocery_store -rice_shop,retail,shopping,grocery_store,rice_shop -russian_grocery_store,retail,shopping,grocery_store,russian_grocery_store -specialty_grocery_store,retail,shopping,grocery_store,specialty_grocery_store -grocery_store,retail,shopping,grocery_store, -guitar_store,retail,shopping,guitar_store, -gun_and_ammo,retail,shopping,gun_and_ammo, -herbal_shop,retail,shopping,herbal_shop, -hobby_shop,retail,shopping,hobby_shop, -appliance_store,retail,shopping,home_and_garden,appliance_store -bedding_and_bath_stores,retail,shopping,home_and_garden,bedding_and_bath_stores -candle_store,retail,shopping,home_and_garden,candle_store -christmas_trees,retail,shopping,home_and_garden,christmas_trees -electrical_supply_store,retail,shopping,home_and_garden,electrical_supply_store -furniture_accessory_store,retail,shopping,home_and_garden,furniture_accessory_store -furniture_store,retail,shopping,home_and_garden,furniture_store -grilling_equipment,retail,shopping,home_and_garden,grilling_equipment -hardware_store,retail,shopping,home_and_garden,hardware_store -welding_supply_store,retail,shopping,home_and_garden,hardware_store -holiday_decor,retail,shopping,home_and_garden,holiday_decor -home_decor,retail,shopping,home_and_garden,home_decor -home_goods_store,retail,shopping,home_and_garden,home_goods_store -home_improvement_store,retail,shopping,home_and_garden,home_improvement_store -hot_tubs_and_pools,retail,shopping,home_and_garden,hot_tubs_and_pools -bathroom_fixture_stores,retail,shopping,home_and_garden,kitchen_and_bath -kitchen_and_bath,retail,shopping,home_and_garden,kitchen_and_bath -kitchen_supply_store,retail,shopping,home_and_garden,kitchen_and_bath -lawn_mower_store,retail,shopping,home_and_garden,lawn_mower_store -lighting_store,retail,shopping,home_and_garden,lighting_store -linen,retail,shopping,home_and_garden,linen -mattress_store,retail,shopping,home_and_garden,mattress_store -hydroponic_gardening,retail,shopping,home_and_garden,nursery_and_gardening -nursery_and_gardening,retail,shopping,home_and_garden,nursery_and_gardening -outdoor_furniture_store,retail,shopping,home_and_garden,outdoor_furniture_store -paint_store,retail,shopping,home_and_garden,paint_store -playground_equipment_supplier,retail,shopping,home_and_garden,playground_equipment_supplier_ -pumpkin_patch,retail,shopping,home_and_garden,pumpkin_patch -rug_store,retail,shopping,home_and_garden,rug_store -tableware_supplier,retail,shopping,home_and_garden,tableware_supplier -tile_store,retail,shopping,home_and_garden,tile_store -wallpaper_store,retail,shopping,home_and_garden,wallpaper_store -window_treatment_store,retail,shopping,home_and_garden,window_treatment_store -woodworking_supply_store,retail,shopping,home_and_garden,woodworking_supply_store -home_and_garden,retail,shopping,home_and_garden, -home_theater_systems_stores,retail,shopping,home_theater_systems_stores, -horse_equipment_shop,retail,shopping,horse_equipment_shop, -international_grocery_store,retail,shopping,international_grocery_store, -jewelry_store,retail,shopping,jewelry_store, -knitting_supply,retail,shopping,knitting_supply, -livestock_feed_and_supply_store,retail,shopping,livestock_feed_and_supply_store, -luggage_store,retail,shopping,luggage_store, -market_stall,retail,shopping,market_stall, -dental_supply_store,retail,shopping,medical_supply,dental_supply_store -hearing_aids,retail,shopping,medical_supply,hearing_aids -medical_supply,retail,shopping,medical_supply, -military_surplus_store,retail,shopping,military_surplus_store, -mobile_phone_accessories,retail,shopping,mobile_phone_accessories, -mobile_phone_store,retail,shopping,mobile_phone_store, -musical_instrument_store,retail,shopping,musical_instrument_store, -night_market,retail,shopping,night_market, -office_equipment,retail,shopping,office_equipment, -online_shop,retail,shopping,online_shop, -outlet_store,retail,shopping,outlet_store, -packing_supply,retail,shopping,packing_supply, -pawn_shop,retail,shopping,pawn_shop, -pen_store,retail,shopping,pen_store, -perfume_store,retail,shopping,perfume_store, -personal_shopper,retail,shopping,personal_shopper, -aquatic_pet_store,retail,shopping,pet_store,aquatic_pet_store -bird_shop,retail,shopping,pet_store,bird_shop -reptile_shop,retail,shopping,pet_store,reptile_shop -pet_store,retail,shopping,pet_store, -photography_store_and_services,retail,shopping,photography_store_and_services, -piano_store,retail,shopping,piano_store, -pool_and_billiards,retail,shopping,pool_and_billiards, -pop_up_shop,retail,shopping,pop_up_shop, -props,retail,shopping,props, -public_market,retail,shopping,public_market, -religious_items,retail,shopping,religious_items, -rental_kiosks,retail,shopping,rental_kiosks, -safe_store,retail,shopping,safe_store, -safety_equipment,retail,shopping,safety_equipment, -shopping_center,retail,shopping,shopping_center, -shopping_passage,retail,shopping,shopping_passage, -souvenir_shop,retail,shopping,souvenir_shop, -spiritual_shop,retail,shopping,spiritual_shop, -archery_shop,retail,shopping,sporting_goods,archery_shop -bicycle_shop,retail,shopping,sporting_goods,bicycle_shop -dive_shop,retail,shopping,sporting_goods,dive_shop -golf_equipment,retail,shopping,sporting_goods,golf_equipment -hockey_equipment,retail,shopping,sporting_goods,hockey_equipment -hunting_and_fishing_supplies,retail,shopping,sporting_goods,hunting_and_fishing_supplies -outdoor_gear,retail,shopping,sporting_goods,outdoor_gear -skate_shop,retail,shopping,sporting_goods,skate_shop -ski_and_snowboard_shop,retail,shopping,sporting_goods,ski_and_snowboard_shop -dance_wear,retail,shopping,sporting_goods,sports_wear -sports_wear,retail,shopping,sporting_goods,sports_wear -surf_shop,retail,shopping,sporting_goods,surf_shop -swimwear_store,retail,shopping,sporting_goods,swimwear_store -sporting_goods,retail,shopping,sporting_goods, -supermarket,retail,shopping,supermarket, -superstore,retail,shopping,superstore, -tabletop_games,retail,shopping,tabletop_games, -thrift_store,retail,shopping,thrift_store, -tobacco_shop,retail,shopping,tobacco_shop, -toy_store,retail,shopping,toy_store, -trophy_shop,retail,shopping,trophy_shop, -uniform_store,retail,shopping,uniform_store, -used_bookstore,retail,shopping,used_bookstore, -vitamins_and_supplements,retail,shopping,vitamins_and_supplements, -watch_store,retail,shopping,watch_store, -wholesale_store,retail,shopping,wholesale_store, -wig_store,retail,shopping,wig_store, -shopping,retail,shopping,, -tire_repair_shop,retail,tire_shop,tire_repair_shop, -tire_shop,retail,tire_shop,, -water_store,retail,water_store,, -retail,retail,,, -bridge,structure_and_geography,bridge,, -canal,structure_and_geography,canal,, -dam,structure_and_geography,dam,, -desert,structure_and_geography,desert,, -forest,structure_and_geography,forest,, -geologic_formation,structure_and_geography,geologic_formation,, -island,structure_and_geography,island,, -mountain,structure_and_geography,mountain,, -natural_hot_springs,structure_and_geography,natural_hot_springs,, -nature_reserve,structure_and_geography,nature_reserve,, -pier,structure_and_geography,pier,, -public_plaza,structure_and_geography,public_plaza,, -quay,structure_and_geography,quay,, -river,structure_and_geography,river,, -skyscraper,structure_and_geography,skyscraper,, -tower,structure_and_geography,tower,, -weir,structure_and_geography,weir,, -structure_and_geography,structure_and_geography,,, -agriturismo,travel,agriturismo,, -airline_ticket_agency,travel,airline_ticket_agency,, -airport_terminal,travel,airport,airport_terminal, -balloon_ports,travel,airport,balloon_ports, -domestic_airports,travel,airport,domestic_airports, -gliderports,travel,airport,gliderports, -heliports,travel,airport,heliports, -major_airports,travel,airport,major_airports, -seaplane_bases,travel,airport,seaplane_bases, -ultralight_airports,travel,airport,ultralight_airports, -airport,travel,airport,, -bus_ticket_agency,travel,bus_ticket_agency,, -country_house,travel,country_house,, -houseboat,travel,houseboat,, -railway_ticket_agent,travel,railway_ticket_agent,, -car_rental_agency,travel,rental_service,car_rental_agency, -motorcycle_rentals,travel,rental_service,motorcycle_rentals, -rv_rentals,travel,rental_service,rv_rentals, -trailer_rentals,travel,rental_service,trailer_rentals, -truck_rentals,travel,rental_service,truck_rentals, -rental_service,travel,rental_service,, -rest_stop,travel,rest_stop,, -rest_areas,travel,road_structures_and_services,rest_areas, -toll_stations,travel,road_structures_and_services,toll_stations, -road_structures_and_services,travel,road_structures_and_services,, -ryokan,travel,ryokan,, -self_catering_accommodation,travel,self_catering_accommodation,, -ski_resort,travel,ski_resort,, -aerial_tours,travel,tours,aerial_tours, -architectural_tours,travel,tours,architectural_tours, -art_tours,travel,tours,art_tours, -beer_tours,travel,tours,beer_tours, -bike_tours,travel,tours,bike_tours, -boat_tours,travel,tours,boat_tours, -bus_tours,travel,tours,bus_tours, -cannabis_tour,travel,tours,cannabis_tour, -food_tours,travel,tours,food_tours, -historical_tours,travel,tours,historical_tours, -scooter_tours,travel,tours,scooter_tours, -walking_tours,travel,tours,walking_tours, -whale_watching_tours,travel,tours,whale_watching_tours, -wine_tours,travel,tours,wine_tours, -tours,travel,tours,, -airlines,travel,transportation,airlines, -airport_shuttles,travel,transportation,airport_shuttles, -bicycle_sharing_location,travel,transportation,bicycle_sharing_location, -bike_parking,travel,transportation,bike_parking, -bike_sharing,travel,transportation,bike_sharing, -bus_service,travel,transportation,bus_service, -bus_station,travel,transportation,bus_station, -cable_car_service,travel,transportation,cable_car_service, -car_sharing,travel,transportation,car_sharing, -coach_bus,travel,transportation,coach_bus, -ferry_service,travel,transportation,ferry_service, -light_rail_and_subway_stations,travel,transportation,light_rail_and_subway_stations, -limo_services,travel,transportation,limo_services, -metro_station,travel,transportation,metro_station, -motorcycle_parking,travel,transportation,motorcycle_parking, -park_and_rides,travel,transportation,park_and_rides, -parking,travel,transportation,parking, -pedicab_service,travel,transportation,pedicab_service, -private_jet_charters,travel,transportation,private_jet_charters, -public_transportation,travel,transportation,public_transportation, -ride_sharing,travel,transportation,ride_sharing, -taxi_rank,travel,transportation,taxi_rank, -taxi_service,travel,transportation,taxi_service, -town_car_service,travel,transportation,town_car_service, -train_station,travel,transportation,trains,train_station -trains,travel,transportation,trains, -transport_interchange,travel,transportation,transport_interchange, -water_taxi,travel,transportation,water_taxi, -transportation,travel,transportation,, -luggage_storage,travel,travel_services,luggage_storage, -visa_agent,travel,travel_services,passport_and_visa_services,visa_agent -passport_and_visa_services,travel,travel_services,passport_and_visa_services, -sightseeing_tour_agency,travel,travel_services,travel_agents,sightseeing_tour_agency -travel_agents,travel,travel_services,travel_agents, -visitor_center,travel,travel_services,visitor_center, -travel_services,travel,travel_services,, -vacation_rental_agents,travel,vacation_rental_agents,, -travel,travel,,, \ No newline at end of file diff --git a/docs/guides/places/csv/2025-04-01-counts.csv b/docs/guides/places/csv/2025-04-01-counts.csv deleted file mode 100644 index c59d9d164..000000000 --- a/docs/guides/places/csv/2025-04-01-counts.csv +++ /dev/null @@ -1,2083 +0,0 @@ -_col0,primary_category -790,3d_printing_service -357,abortion_clinic -96,abrasives_supplier -8579,abuse_and_addiction_treatment -88,academic_bookstore -262,acai_bowls -425834,accommodation -139020,accountant -29,acne_treatment -216,acoustical_consultant -305733,active_life -32117,acupuncture -358,addiction_rehabilitation_center -646,adoption_services -2850,adult_education -9356,adult_entertainment -646,adult_store -641,adventure_sports_center -189048,advertising_agency -26,aerial_fitness_center -72,aerial_tours -189,aesthetician -1704,afghan_restaurant -4862,african_restaurant -690,after_school_program -182,aggregate_supplier -23910,agricultural_cooperatives -22,agricultural_engineering_service -216,agricultural_production -206,agricultural_seed_store -93476,agricultural_service -77357,agriculture -667,agriculture_association -7,agriturismo -1205,air_duct_cleaning_service -599,aircraft_dealer -444,aircraft_manufacturer -107,aircraft_parts_and_supplies -1057,aircraft_repair -6158,airline -117,airline_ticket_agency -4263,airlines -59662,airport -4512,airport_lounge -3764,airport_shuttles -6440,airport_terminal -48,airsoft_fields -202,alcohol_and_drug_treatment_center -4986,alcohol_and_drug_treatment_centers -4641,allergist -4695,altering_and_remodeling_contractor -9156,alternative_medicine -388,aluminum_supplier -541,amateur_sports_league -25838,amateur_sports_team -18237,ambulance_and_ems_services -2,american_football_field -83629,american_restaurant -36789,amusement_park -3352,anesthesiologist -2490,anglican_church -2,animal_assisted_therapy -1767,animal_hospital -16,animal_physical_therapy -915,animal_rescue_service -17401,animal_shelter -213,animation_studio -135,antenna_service -48903,antique_store -1356,apartment_agent -32476,apartments -33,apiaries_and_beekeepers -3397,appellate_practice_lawyers -5024,appliance_manufacturer -26121,appliance_repair_service -44828,appliance_store -10777,appraisal_services -7501,aquarium -94,aquarium_services -12529,aquatic_pet_store -2549,arabian_restaurant -21733,arcade -630,archaeological_services -2395,archery_range -735,archery_shop -12467,architect -101883,architectural_designer -132,architectural_tours -246,architecture -68,architecture_schools -2590,argentine_restaurant -35685,armed_forces_branch -198,armenian_restaurant -15,army_and_navy_store -3478,aromatherapy -128824,art_gallery -13786,art_museum -2216,art_restoration -246,art_restoration_service -25214,art_school -2,art_space_rental -1286,art_supply_store -21,art_tours -185,artificial_turf -122621,arts_and_crafts -220690,arts_and_entertainment -81,asian_art_museum -8614,asian_fusion_restaurant -458,asian_grocery_store -61233,asian_restaurant -16161,assisted_living_facility -5696,astrologer -45,atelier -156824,atms -145,attraction_farm -111301,attractions_and_activities -936,atv_recreation_park -2038,atv_rentals_and_tours -13078,auction_house -19140,audio_visual_equipment_store -270,audio_visual_production_and_design -15011,audiologist -5192,audiovisual_equipment_rental -19042,auditorium -2055,australian_restaurant -1572,austrian_restaurant -23866,auto_body_shop -83443,auto_company -21497,auto_customization -143917,auto_detailing -8246,auto_electrical_repair -25305,auto_glass_service -32779,auto_insurance -1004,auto_loan_provider -16212,auto_manufacturers_and_distributors -28550,auto_parts_and_supply_store -7345,auto_restoration_services -891,auto_security -1987,auto_upholstery -15423,automation_services -2660,automobile_leasing -2303,automobile_registration_service -218606,automotive -7853,automotive_consultant -98736,automotive_dealer -259376,automotive_parts_and_accessories -825034,automotive_repair -22338,automotive_services_and_repair -1334,automotive_storage_facility -631,automotive_wheel_polishing_service -141,aviation_museum -474,avionics_shop -874,awning_supplier -20,axe_throwing -247,ayurveda -59,azerbaijani_restaurant -82,b2b_agriculture_and_food -5775,b2b_apparel -171,b2b_autos_and_vehicles -6371,b2b_cleaning_and_waste_management -64,b2b_dairies -12649,b2b_electronic_equipment -653,b2b_energy_and_mining -610,b2b_equipment_maintenance_and_repair -14,b2b_farming -65,b2b_farms -1289,b2b_food_products -486,b2b_forklift_dealers -516,b2b_furniture_and_housewares -154,b2b_hardware -17107,b2b_jewelers -1514,b2b_machinery_and_tools -222,b2b_medical_support_services -1471,b2b_oil_and_gas_extraction_and_services -1737,b2b_rubber_and_plastics -21249,b2b_science_and_technology -517,b2b_scientific_equipment -330,b2b_sporting_and_recreation_goods -91,b2b_storage_and_warehouses -37275,b2b_textiles -77,b2b_tires -1544,b2b_tractor_dealers -1331,b2b_truck_equipment_parts_and_accessories -1937,baby_gear_and_furniture -42,back_shop -87,backflow_services -36,background_check_services -5,backpacking_area -2959,badminton_court -960,bagel_restaurant -5239,bagel_shop -1407,bags_luggage_company -5627,bail_bonds_service -431989,bakery -142,balloon_ports -416,balloon_services -984,bangladeshi_restaurant -356922,bank_credit_union -620,bank_equipment_service -7859,bankruptcy_law -43069,banks -35508,baptist_church -657705,bar -57527,bar_and_grill_restaurant -3,bar_crawl -111031,barbecue_restaurant -280052,barber -342,barre_classes -3535,bartender -413,bartending_school -8059,baseball_field -938,baseball_stadium -7184,basketball_court -907,basketball_stadium -252,basque_restaurant -309,bathroom_fixture_stores -2063,bathroom_remodeling -314,bathtub_and_sink_repairs -1,battery_inverter_supplier -3109,battery_store -2211,batting_cage -9,bazaars -182785,beach -57,beach_bar -975,beach_equipment_rentals -4625,beach_resort -2,beach_volleyball_club -25,beach_volleyball_court -282,bearing_supplier -665373,beauty_and_spa -26103,beauty_product_supplier -1597450,beauty_salon -97579,bed_and_breakfast -1703,bedding_and_bath_stores -32677,beer_bar -25407,beer_garden -21,beer_tours -11570,beer_wine_and_spirits -120,behavior_analyst -33,belarusian_restaurant -1747,belgian_restaurant -12,belizean_restaurant -11358,betting_center -2005,beverage_store -8844,beverage_supplier -11,bicycle_path -6,bicycle_sharing_location -78116,bicycle_shop -20,bike_parking -7078,bike_rentals -9148,bike_repair_maintenance -4,bike_sharing -78,bike_tours -719,billing_services -2479,bingo_hall -7301,biotechnology_company -171,bird_shop -358,bistro -302,blacksmiths -7220,blood_and_plasma_donation_center -212,blow_dry_blow_out_service -92,blueprinters -305,board_of_education_offices -198,boat_builder -829,boat_charter -11589,boat_dealer -3153,boat_parts_and_accessories -811,boat_parts_and_supply_store -11531,boat_rental_and_training -13932,boat_service_and_repair -485,boat_storage_facility -6224,boat_tours -2,boating_places -1,bobsledding_field -3,bocce_ball_court -22,body_contouring -96,bolivian_restaurant -3618,book_magazine_distribution -412,bookbinding -2319,bookkeeper -14,bookmakers -6775,books_mags_music_and_video -127297,bookstore -2924,boot_camp -8834,botanical_garden -16362,bottled_water_company -69,boudoir_photography -431,bounce_house_rental -63394,boutique -16244,bowling_alley -87,box_lunch_supplier -7794,boxing_class -370,boxing_club -127,boxing_gym -12135,brake_service_and_repair -123,brasserie -167,brazilian_jiu_jitsu_club -19275,brazilian_restaurant -67902,breakfast_and_brunch_restaurant -47304,brewery -191,brewing_supply_store -47256,bridal_shop -39011,bridge -3181,british_restaurant -49655,broadcasting_media_production -8149,brokers -1,bubble_soccer_field -31993,bubble_tea -102333,buddhist_temple -33599,buffet_restaurant -14777,builders -10858,building_contractor -129129,building_supply_store -628,bulgarian_restaurant -12,bulk_billing -2,bungee_jumping_center -149508,burger_restaurant -479,burmese_restaurant -1287,bus_rentals -4488,bus_service -69559,bus_station -50,bus_ticket_agency -1704,bus_tours -36930,business -61484,business_advertising -323,business_banking_service -1675,business_brokers -6524,business_consulting -4941,business_equipment_and_supply -256,business_financing -2752,business_law -80206,business_management_services -90883,business_manufacturing_and_supply -1070,business_office_supplies_and_stationery -1191,business_records_storage_and_management -947,business_schools -1181,business_signage -1022,business_storage_and_transportation -31868,business_to_business -12915,business_to_business_services -121874,butcher_shop -43,cabaret -24523,cabin -8024,cabinet_sales_service -221,cable_car_service -712611,cafe -1,cafeteria -3412,cajun_and_creole_restaurant -26,calligraphy -717,cambodian_restaurant -96493,campground -89212,campus_building -589,canadian_restaurant -1905,canal -1641,cancer_treatment_center -1501,candle_store -59851,candy_store -7248,cannabis_clinic -2,cannabis_collective -4879,cannabis_dispensary -4,cannabis_tour -4478,canoe_and_kayak_hire_service -4,canteen -11,canyon -327,car_auction -1771,car_broker -666,car_buyer -392317,car_dealer -4004,car_inspection -77077,car_rental_agency -2523,car_sharing -346,car_stereo_installation -8498,car_stereo_store -59063,car_wash -11861,car_window_tinting -82,cardio_classes -21489,cardiologist -624,cardiovascular_and_thoracic_surgeon -2515,cards_and_stationery_store -5758,career_counseling -6722,caribbean_restaurant -18,caricature -50690,carpenter -14737,carpet_cleaning -896,carpet_installation -63755,carpet_store -28,cartooning_museum -34750,casino -133,casting_molding_and_machining -8490,castle -148,catalan_restaurant -67345,caterer -82080,catholic_church -3551,cave -221,ceiling_and_roofing_repair_and_service -1108,ceiling_service -1133,cement_supplier -514,cemeteries -139892,central_government_office -111,ceremonial_clothing -148,certification_agency -34,challenge_courses_center -16,chamber_of_handicraft -296,chambers_of_commerce -200,champagne_bar -57645,charity_organization -139,charter_school -5075,check_cashing_payday_loans -24,cheerleading -10154,cheese_shop -6,cheese_tasting_classes -554,cheesesteak_restaurant -38083,chemical_plant -106543,chicken_restaurant -2629,chicken_wings_restaurant -9712,child_care_and_day_care -1030,child_protection_service -719,child_psychiatrist -104,childbirth_education -26,childproofing -15,children_hall -122437,childrens_clothing_store -482,childrens_hospital -576,childrens_museum -146,chilean_restaurant -2,chimney_cake_shop -164,chimney_service -3709,chimney_sweep -155,chinese_martial_arts_club -167431,chinese_restaurant -93462,chiropractor -20933,chocolatier -2165,choir -2748,christmas_trees -840901,church_cathedral -41,cidery -65,cigar_bar -60357,cinema -3343,circus -26,circus_school -466,civic_center -3390,civil_engineers -70,civil_examinations_academy -226,civil_rights_lawyers -816,civilization_museum -1817,cleaning_products_supplier -4218,cleaning_services -3,climbing_class -104,climbing_service -5500,clinical_laboratories -173,clock_repair_service -37,closet_remodeling -11159,clothing_company -5497,clothing_rental -718527,clothing_store -34,clown -4,club_crawl -338,coach_bus -544,coal_and_coke -46365,cocktail_bar -138,coffee_and_tea_supplies -204,coffee_roastery -547868,coffee_shop -185,coin_dealers -3051,collection_agencies -98,college_counseling -389059,college_university -1536,colombian_restaurant -33,colonics -9261,comedy_club -8729,comfort_food_restaurant -11392,comic_books_store -161568,commercial_industrial -1305,commercial_printer -28836,commercial_real_estate -11396,commercial_refrigeration -2521,commercial_vehicle_dealer -686,commissioned_artist -97074,community_center -87,community_gardens -266,community_health_center -807,community_museum -705732,community_services_non_profits -23556,computer_coaching -52602,computer_hardware_company -663,computer_museum -84933,computer_store -3741,computer_wholesaler -5,concept_shop -33,concierge_medicine -1312,condominium -1066,construction_management -272266,construction_services -2487,consultant_and_general_service -18,contemporary_art_museum -744,contract_law -241171,contractor -325612,convenience_store -7377,convents_and_monasteries -435,cooking_classes -7648,cooking_school -750,copywriting_service -238,corporate_entertainment_services -77,corporate_gift_supplier -15320,corporate_office -148581,cosmetic_and_beauty_supplies -28113,cosmetic_dentist -154,cosmetic_products_manufacturer -2256,cosmetic_surgeon -4151,cosmetology_school -39,costa_rican_restaurant -95,costume_museum -12121,costume_store -19968,cottage -180,cotton_mill -119093,counseling_and_mental_health -15752,countertop_installation -198,country_club -21,country_dance_hall -47,country_house -53096,courier_and_delivery_services -396,court_reporter -32517,courthouse -2402,coworking_space -586,cpr_classes -1704,craft_shop -1624,crane_services -6946,credit_and_debt_counseling -41587,credit_union -6233,cremation_services -2378,cricket_ground -14640,criminal_defense_law -258,crisis_intervention_services -602,crops_production -146,cryotherapy -26,csa_farm -1988,cuban_restaurant -37974,cultural_center -20272,cupcake_shop -19164,currency_exchange -2,curry_sausage_restaurant -227,custom_cakes_shop -2451,custom_clothing -1124,custom_t_shirt_store -2470,customized_merchandise -383,customs_broker -2033,cycling_classes -752,czech_restaurant -7059,dairy_farm -1020,dairy_stores -1,dam -8619,damage_restoration -102365,dance_club -104408,dance_school -1458,dance_wear -8,danish_restaurant -2797,data_recovery -154313,day_care_preschool -11975,day_spa -667,debt_relief_services -1562,deck_and_railing_sales_service -131,decorative_arts_museum -67538,delicatessen -2220,demolition_service -206,denim_wear_store -77,dental_hygienist -1147,dental_laboratories -911,dental_supply_store -523851,dentist -162,dentistry_schools -6840,department_of_motor_vehicles -34,department_of_social_service -85915,department_store -29316,dermatologist -27,desert -266,design_museum -6856,designer_clothing -98361,desserts -18930,diagnostic_imaging -13695,diagnostic_services -9140,dialysis_clinic -63,diamond_dealer -654,dietitian -567,digitizing_services -4498,dim_sum_restaurant -181261,diner -29,dinner_theater -177,direct_mail_advertising -2074,disability_law -12562,disability_services_and_support_organization -1867,disc_golf_course -97426,discount_store -489,display_home_center -6960,distillery -6095,distribution_services -2001,dive_bar -414,dive_shop -1359,diving_center -26770,divorce_and_family_law -12,diy_auto_shop -47,diy_foods_restaurant -3284,dj_service -268,do_it_yourself_store -338198,doctor -9881,dog_park -13258,dog_trainer -2465,dog_walkers -2,domestic_airports -1125,domestic_business_and_trade_organizations -203,dominican_restaurant -447,donation_center -10213,doner_kebab -17094,donuts -2939,door_sales_service -57,doula -430,drama_school -57,drinking_water_dispenser -5204,drive_in_theater -67,drive_thru_bar -5758,driving_range -79324,driving_school -163,drone_store -4122,drugstore -53692,dry_cleaning -4125,drywall_services -662,dui_law -31,dui_school -27,dumpling_restaurant -1789,dumpster_rentals -123,duplication_services -754,duty_free_shop -27766,e_cigarette_store -7736,e_commerce_service -12970,ear_nose_and_throat -2733,eastern_european_restaurant -124954,eat_and_drink -198,eatertainment -2,eating_disorder_treatment_centers -279,ecuadorian_restaurant -103,editorial_services -484820,education -4567,educational_camp -15874,educational_research_institute -63924,educational_services -5269,educational_supply_store -716,egyptian_restaurant -27,elder_care_planning -8719,electric_utility_provider -2,electrical_consultant -7595,electrical_supply_store -389,electrical_wholesaler -75324,electrician -3809,electricity_supplier -4417,electronic_parts_supplier -209092,electronics -1900,electronics_repair_shop -469994,elementary_school -6643,elevator_service -16131,embassy -1654,embroidery_and_crochet -4302,emergency_medicine -759,emergency_pet_hospital -2135,emergency_roadside_service -7829,emergency_room -902,emergency_service -4065,emissions_inspection -36,empanadas -74399,employment_agencies -8450,employment_law -4,ems_training -4581,endocrinologist -4005,endodontist -32,endoscopist -26443,energy_company -25108,energy_equipment_and_solution -709,energy_management_and_conservation_consultants -5554,engine_repair_service -477,engineering_schools -149206,engineering_services -412,engraving -180,entertainment_law -234,environmental_abatement_services -6958,environmental_and_ecological_services_for_businesses -6863,environmental_conservation_and_ecological_organizations -13662,environmental_conservation_organization -7,environmental_medicine -124,environmental_renewable_natural_resource -2701,environmental_testing -299,episcopal_church -17041,equestrian_facility -194,erotic_massage -8502,escape_rooms -2968,escrow_services -1097,esports_league -587,esports_team -283,estate_liquidation -2928,estate_planning_law -43,esthetician -2360,ethical_grocery -1449,ethiopian_restaurant -9949,european_restaurant -23372,ev_charging_station -32849,evangelical_church -69259,event_photography -528601,event_planning -631,event_technology_service -8612,excavation_service -645,executive_search_consultants -31,exhaust_and_muffler_repair -193,exhibition_and_trade_center -974,exporters -82,exterior_design -24917,eye_care_clinic -454,eyebrow_service -1202,eyelash_service -149212,eyewear_and_optician -33026,fabric_store -331,fabric_wholesaler -44,face_painting -10622,fair -215,falafel_restaurant -2477,family_counselor -48054,family_practice -441,family_service_center -230206,farm -6237,farm_equipment_and_supply -249,farm_equipment_repair_service -27,farm_insurance -48298,farmers_market -1052,farming_equipment_store -5819,farming_services -26,farrier_services -130555,fashion -105939,fashion_accessories_store -478056,fast_food_restaurant -727,fastener_supplier -457,federal_government_offices -12101,fence_and_gate_sales_service -804,fencing_club -50,feng_shui -7304,ferry_boat_company -350,ferry_service -4052,fertility -494,fertilizer_store -367,festival -32,fidelity_and_surety_bonds -12676,filipino_restaurant -87,film_festivals_and_organizations -42504,financial_advising -225470,financial_service -386,fingerprinting_service -6235,fire_and_water_damage_restoration -69369,fire_department -21295,fire_protection_service -384,firearm_training -7091,fireplace_service -458,firewood -9149,firework_retailer -2720,first_aid_class -14567,fish_and_chips_restaurant -4576,fish_farm -156,fish_farms_and_hatcheries -11,fish_restaurant -3599,fishing_charter -10980,fishing_club -19817,fishmonger -292,fitness_equipment_wholesaler -838,fitness_exercise_equipment -30223,fitness_trainer -41,flatbread_restaurant -23294,flea_market -6637,flight_school -32,float_spa -7572,flooring_contractors -6055,flooring_store -104,floral_designer -18266,florist -84,flour_mill -34,flower_markets -390684,flowers_and_gifts_shop -65,flyboarding_center -3,flyboarding_rental -128,fmcg_wholesaler -3438,fondue_restaurant -28511,food -515,food_and_beverage_consultant -785,food_and_beverage_exporter -649,food_banks -58702,food_beverage_service_distribution -2796,food_consultant -113,food_court -47195,food_delivery_service -651,food_safety_training -72315,food_stand -904,food_tours -37597,food_truck -448,foot_care -165,football_club -9129,football_stadium -56,footwear_wholesaler -7376,forest -30,forestry_consultants -687,forestry_service -491,forklift_dealer -1125,formal_wear_store -1350,fort -86,fortune_telling_service -1784,foster_care_services -457,foundation_repair -15562,fountain -2783,framing_store -114,fraternal_organization -29,free_diving_center -156239,freight_and_cargo_service -3179,freight_forwarding_agency -53890,french_restaurant -5,friterie -762,frozen_foods -6478,frozen_yoghurt_shop -54347,fruits_and_vegetables -14,fuel_dock -104612,funeral_services_and_cemeteries -532,fur_clothing -1943,furniture_accessory_store -21090,furniture_assembly -11634,furniture_manufacturers -565,furniture_rental_service -681,furniture_repair -292,furniture_reupholstery -412097,furniture_store -984,furniture_wholesalers -14,futsal_field -6574,game_publisher -16,game_truck_rental -14066,garage_door_service -36051,garbage_collection_service -16206,gardener -444529,gas_station -10774,gastroenterologist -13848,gastropub -25,gay_and_lesbian_services_organization -3309,gay_bar -4909,gelato -264,gemstone_and_mineral -450,genealogists -38587,general_dentistry -611,general_festivals -1260,general_litigation -62,generator_installation_repair -95,geneticist -102,gents_tailor -2,geologic_formation -2884,geological_services -1088,georgian_restaurant -578,geriatric_medicine -52,geriatric_psychiatry -22959,german_restaurant -345,gerontologist -27207,gift_shop -28525,glass_and_mirror_sales_service -659,glass_blowing -3871,glass_manufacturer -8,gliderports -739,gluten_free_restaurant -2916,go_kart_club -124,go_kart_track -1809,gold_buyer -86,goldsmith -2044,golf_cart_dealer -76,golf_cart_rental -2157,golf_club -17990,golf_course -1425,golf_equipment -2085,golf_instructor -4821,government_services -1055,grain_elevators -1078,grain_production -4437,granite_supplier -59639,graphic_designer -61,gravel_professionals -30791,greek_restaurant -132,greengrocer -217,greenhouses -432,grilling_equipment -536917,grocery_store -279,grout_service -145,guatemalan_restaurant -4883,guest_house -539,guitar_store -10402,gun_and_ammo -5,gunsmith -4797,gutter_service -518205,gym -9907,gymnastics_center -30,gymnastics_club -2075,hair_extensions -746,hair_loss_center -20995,hair_removal -4056,hair_replacement -173134,hair_salon -9881,hair_stylist -10934,hair_supply_stores -110,haitian_restaurant -10949,halal_restaurant -2193,halfway_house -15,halotherapy -949,handbag_stores -1,handball_court -1049,handicraft_shop -4050,handyman -68,hang_gliding_center -238506,hardware_store -3128,hat_shop -1746,haunted_house -3,haute_cuisine_restaurant -3280,hawaiian_restaurant -155,hazardous_waste_disposal -385250,health_and_medical -922,health_and_wellness_club -1145,health_coach -3627,health_consultant -6466,health_department -7573,health_food_restaurant -85999,health_food_store -8417,health_insurance_office -1703,health_market -111,health_retreats -12140,health_spa -284,hearing_aid_provider -19003,hearing_aids -1170,heliports -3579,hematology -61,henna_artist -60,hepatologist -212,herb_and_spice_shop -1165,herbal_shop -6,high_gliding_center -161649,high_school -35896,hiking_trail -940,himalayan_nepalese_restaurant -123387,hindu_temple -507,historical_tours -31188,history_museum -18013,hobby_shop -736,hockey_arena -188,hockey_equipment -775,hockey_field -951,holding_companies -223,holiday_decor -41,holiday_decorating -3,holiday_market -97,holiday_park -153407,holiday_rental_home -83,holistic_animal_care -16724,home_and_garden -381,home_and_rental_insurance -865,home_automation -81801,home_cleaning -11516,home_decor -113099,home_developer -113,home_energy_auditor -66876,home_goods_store -46116,home_health_care -135722,home_improvement_store -6538,home_inspector -108,home_network_installation -1831,home_organization -25494,home_security -75351,home_service -3951,home_staging -2055,home_theater_systems_stores -583,home_window_tinting -3548,homeless_shelter -950,homeopathic_medicine -258,homeowner_association -171,honduran_restaurant -310,honey_farm_shop -1125,hong_kong_style_cafe -15067,hookah_bar -8380,horse_boarding -539,horse_equipment_shop -446,horse_racing_track -6429,horse_riding -4717,horse_trainer -10316,horseback_riding_service -5811,hospice -729414,hospital -1462,hospital_equipment_and_supplies -1111,hospitalist -48334,hostel -814,hot_air_balloons_tour -10176,hot_dog_restaurant -28,hot_springs -3453,hot_tubs_and_pools -1374630,hotel -1990,hotel_bar -3180,hotel_supply_service -340,house_sitting -14,houseboat -5317,housing_authorities -967,housing_cooperative -3464,human_resource_services -1216,hungarian_restaurant -26893,hunting_and_fishing_supplies -116808,hvac_services -9589,hvac_supplier -123,hybrid_car_repair -3650,hydraulic_equipment_supplier -393,hydraulic_repair_service -45,hydro_jetting -251,hydroponic_gardening -22,hydrotherapy -2171,hypnosis_hypnotherapy -40,iberian_restaurant -6126,ice_cream_and_frozen_yoghurt -148488,ice_cream_shop -5119,ice_skating_rink -231,ice_supplier -2361,image_consultant -267,immigration_and_naturalization -107,immigration_assistance_services -7925,immigration_law -38,immunodermatologist -50,imported_food -806,importer_and_exporter -654,importers -5647,indian_grocery_store -88161,indian_restaurant -40,indian_sweets_shop -370,indo_chinese_restaurant -49280,indonesian_restaurant -117,indoor_golf_center -115,indoor_landscaping -196,indoor_playcenter -316,industrial_cleaning_services -136293,industrial_company -171922,industrial_equipment -332,industrial_spares_and_products_wholesaler -2834,infectious_disease_specialist -100664,information_technology_company -4573,inn -2459,inspection_services -54496,installment_loans -74,instrumentation_engineers -2358,insulation_installation -271955,insurance_agency -102578,interior_design -15,interlock_system -28485,internal_medicine -8057,international_business_and_trade_services -2506,international_grocery_store -948,international_restaurant -21512,internet_cafe -19261,internet_marketing_service -47234,internet_service_provider -979,inventory_control_service -19796,investing -1699,ip_and_internet_law -4341,irish_pub -312,irish_restaurant -9371,iron_and_steel_industry -139,iron_and_steel_store -1508,iron_work -34,ironworkers -1916,irrigation -148,irrigation_companies -533,island -184,israeli_restaurant -2002,it_consultant -127475,it_service_and_computer_repair -4541,it_support_and_service -157356,italian_restaurant -45,iv_hydration -7179,jail_and_prison -823,jamaican_restaurant -14076,janitorial_services -391,japanese_confectionery_shop -33,japanese_grocery_store -238414,japanese_restaurant -2597,jazz_and_blues -1550,jehovahs_witness_kingdom_hall -735,jet_skis_rental -13092,jewelry_and_watches_manufacturer -65,jewelry_manufacturer -60,jewelry_repair_service -237906,jewelry_store -2497,junk_removal_and_hauling -1086,junkyard -19,juvenile_detention_center -25739,karaoke -37,karaoke_rental -658,karate_club -55174,key_and_locksmith -911,kickboxing_club -2100,kids_hair_salon -8443,kids_recreation_and_party -570,kiosk -8392,kitchen_and_bath -6,kitchen_incubator -1967,kitchen_remodeling -9801,kitchen_supply_store -736,kiteboarding -3,kiteboarding_instruction -295,knife_sharpening -592,knitting_supply -37,kofta_restaurant -5,kombucha -14702,korean_grocery_store -78288,korean_restaurant -15,kosher_grocery_store -885,kosher_restaurant -66,kurdish_restaurant -19514,labor_union -2225,laboratory -329,laboratory_equipment_supplier -87095,laboratory_testing -29,lactation_services -182636,lake -15480,land_surveying -945233,landmark_and_historical_building -8933,landscape_architect -67764,landscaping -69414,language_school -9,laotian_restaurant -190,laser_cutting_service_provider -1219,laser_eye_surgery_lasik -16508,laser_hair_removal -1936,laser_tag -6903,latin_american_restaurant -83145,laundromat -1983,laundry_services -7330,law_enforcement -92,law_schools -19,lawn_bowling_club -139,lawn_mower_repair_service -1478,lawn_mower_store -4961,lawn_service -255060,lawyer -2566,leather_goods -82,leather_products_manufacturer -6202,lebanese_restaurant -53872,legal_services -112031,library -145,lice_treatment -17264,life_coach -8878,life_insurance -14,light_rail_and_subway_stations -3381,lighthouse -250,lighting_fixture_manufacturers -407,lighting_fixtures_and_equipment -36619,lighting_store -47,lime_professionals -9175,limo_services -24236,linen -33012,lingerie_store -5,lingerie_wholesaler -141729,liquor_store -1162,live_and_raw_food_restaurant -7322,livestock_breeder -91,livestock_dealers -499,livestock_feed_and_supply_store -7361,local_and_state_government_offices -46756,lodge -1212,logging_contractor -339,logging_equipment_and_supplies -7457,logging_services -26,lookout -8436,lottery_ticket -62995,lounge -76,low_income_housing -1599,luggage_storage -14361,luggage_store -11928,lumber_store -33,macarons -5072,machine_and_tool_rentals -36125,machine_shop -468,magician -450,mailbox_center -2,major_airports -29,makerspace -18854,makeup_artist -13394,malaysian_restaurant -286,manufacturers_agents_and_representatives -210,manufacturing_and_industrial_consultant -947,marble_and_granite_professionals -1,marching_band -13777,marina -2,market_stall -85760,marketing_agency -22036,marketing_consultant -2947,marriage_or_relationship_counselor -109877,martial_arts_club -17170,masonry_concrete -4527,masonry_contractors -20173,mass_media -48357,massage -1269,massage_school -17372,massage_therapy -247,matchmaker -4171,maternity_centers -1825,maternity_wear -2558,mattress_manufacturing -31031,mattress_store -29,meat_restaurant -768,meat_shop -9371,meat_wholesaler -1629,mechanical_engineers -5559,media_agency -19,media_critic -22781,media_news_company -8037,media_news_website -126,media_restoration_service -767,mediator -13,medical_cannabis_referral -55869,medical_center -1138,medical_law -8042,medical_research_and_development -8067,medical_school -371,medical_sciences_schools -40735,medical_service_organizations -11465,medical_spa -33659,medical_supply -1683,medical_transportation -7685,meditation_center -20542,mediterranean_restaurant -45,memorial_park -20,memory_care -96293,mens_clothing_store -7636,merchandising_service -7,metal_detector_services -48704,metal_fabricator -711,metal_materials_and_experts -1687,metal_plating_service -39043,metal_supplier -6933,metals -123,metro_station -118,mexican_grocery_store -189247,mexican_restaurant -14464,middle_eastern_restaurant -59474,middle_school -888,midwife -37,military_museum -508,military_surplus_store -7,milk_bar -213,mills -4017,miniature_golf_course -7925,mining -1839,mission -2,misting_system_services -1,mobile_clinic -21,mobile_dent_repair -6821,mobile_home_dealer -4222,mobile_home_park -83,mobile_home_repair -9030,mobile_phone_accessories -9479,mobile_phone_repair -283049,mobile_phone_store -3360,mobility_equipment_services -1203,modern_art_museum -5,mohel -313,molecular_gastronomy_restaurant -13304,money_transfer_services -493,mongolian_restaurant -505,montessori_school -49549,monument -2538,moroccan_restaurant -38266,mortgage_broker -21022,mortgage_lender -323,mortuary_services -124092,mosque -2520,motel -1598,motor_freight_trucking -113851,motorcycle_dealer -97,motorcycle_gear -2421,motorcycle_manufacturer -8,motorcycle_parking -1895,motorcycle_rentals -75375,motorcycle_repair -6092,motorsport_vehicle_dealer -26,motorsport_vehicle_repair -7657,motorsports_store -147348,mountain -74,mountain_bike_parks -3605,mountain_bike_trails -60,mountain_huts -16938,movers -4,movie_critic -14560,movie_television_studio -107,muay_thai_club -83310,museum -24550,music_and_dvd_store -1,music_critic -69,music_festivals_and_organizations -44928,music_production -466,music_production_services -50278,music_school -54581,music_venue -49,musical_band_orchestras_and_symphonies -347,musical_instrument_services -39066,musical_instrument_store -1527,musician -3,mystic -97805,nail_salon -579,nanny_services -5,national_museum -27367,national_park -9,national_security_services -8791,natural_gas_supplier -5061,natural_hot_springs -14414,nature_reserve -100809,naturopathic_holistic -2879,nephrologist -6,neurologist -500,neuropathologist -11529,neurotologist -564,newspaper_advertising -15308,newspaper_and_magazines_store -117,nicaraguan_restaurant -114,nigerian_restaurant -4471,night_market -63814,non_governmental_association -26656,noodles_restaurant -24408,notary_public -14,nudist_clubs -13952,nurse_practitioner -95520,nursery_and_gardening -4766,nursing_school -47014,nutritionist -2380,observatory -43847,obstetrician_and_gynecologist -1389,occupational_medicine -10045,occupational_safety -9059,occupational_therapy -5061,office_cleaning -27332,office_equipment -11,office_of_vital_records -259,officiating_services -4189,oil_and_gas -149,oil_and_gas_exploration_and_development -1809,oil_and_gas_field_equipment_and_services -4484,oil_change_station -1542,oil_refiners -117,olive_oil -11514,oncologist -25100,online_shop -2458,onsen -917,opera_and_ballet -9209,ophthalmologist -731,optical_wholesaler -75596,optometrist -11337,oral_surgeon -87,orchard -7,orchards_production -8,organ_and_tissue_donor_service -17457,organic_grocery_store -9997,organization -2,oriental_restaurant -21844,orthodontist -1072,orthopedic_shoe_store -30884,orthopedist -1111,orthotics -2341,osteopath -8465,osteopathic_physician -283,otologist -175,outdoor_advertising -1606,outdoor_furniture_store -24658,outdoor_gear -37,outdoor_movies -8721,outlet_store -5,oxygen_bar -10185,package_locker -117,packaging_contractors_and_service -1746,packing_services -11008,packing_supply -22,paddle_tennis_club -102,paddleboard_rental -585,paddleboarding_center -1,paddleboarding_lessons -3356,pain_management -123,paint_and_sip -12451,paint_store -161,paint_your_own_pottery -6069,paintball -41742,painting -2951,pakistani_restaurant -4497,palace -3653,pan_asian_restaurant -368,panamanian_restaurant -8706,pancake_house -831,paper_mill -18,paraguayan_restaurant -503,paralegal_services -13,parasailing_ride_service -57,parenting_classes -498632,park -133,park_and_rides -88245,parking -8316,party_and_event_planning -6,party_bike_rental -297,party_bus_rental -18,party_character -3172,party_equipment_rental -32326,party_supply -12032,passport_and_visa_services -399,pasta_shop -912,patent_law -71,paternity_tests_and_services -4507,pathologist -3744,patio_covers -3722,patisserie_cake_shop -6007,paving_contractor -23480,pawn_shop -613,payroll_services -132,pediatric_anesthesiology -1600,pediatric_cardiology -10440,pediatric_dentist -428,pediatric_endocrinology -381,pediatric_gastroenterology -24,pediatric_infectious_disease -132,pediatric_nephrology -335,pediatric_neurology -316,pediatric_oncology -450,pediatric_orthopedic_surgery -630,pediatric_pulmonology -90,pediatric_radiology -267,pediatric_surgery -37566,pediatrician -2,pedicab_service -61,pen_store -250,pension -15952,pentecostal_church -7451,performing_arts -4552,perfume_store -1899,periodontist -731,permanent_makeup -1502,persian_iranian_restaurant -970,personal_assistant -5603,personal_care_service -1120,personal_chef -17936,personal_injury_law -61,personal_shopper -9641,peruvian_restaurant -30792,pest_control_service -695,pet_adoption -9462,pet_boarding -17160,pet_breeder -285,pet_cemetery_and_crematorium_services -68521,pet_groomer -1138,pet_hospice -16,pet_insurance -42,pet_photography -103323,pet_services -12864,pet_sitting -145012,pet_store -871,pet_training -30,pet_transportation -24,pet_waste_removal -2738,pets -2127,petting_zoo -16614,pharmaceutical_companies -6888,pharmaceutical_products_wholesaler -470840,pharmacy -33,pharmacy_schools -38,phlebologist -2686,photo_booth_rental -65,photographer -57,photography_classes -44,photography_museum -19802,photography_store_and_services -164540,physical_therapy -4483,physician_assistant -74,piadina_restaurant -20,piano_bar -978,piano_services -219,piano_store -61,pick_your_own_farm -285,pie_shop -4496,pier -1362,piercing -89,pig_farm -36576,pilates_studio -612,pipe_supplier -590,pipeline_transportation -4974,pizza_delivery_service -418415,pizza_restaurant -1,placenta_encapsulation_service -1248,planetarium -567,plasterer -901,plastic_company -6848,plastic_fabrication_company -221,plastic_injection_molding_workshop -18228,plastic_manufacturer -26199,plastic_surgeon -14097,playground -6,playground_equipment_supplier -101,plaza -63174,plumbing -263,plus_size_clothing -27673,podiatrist -67,podiatry -1182,poke_restaurant -84934,police_department -2637,polish_restaurant -33566,political_organization -8942,political_party_office -114,polynesian_restaurant -364,pool_and_billiards -2905,pool_and_hot_tub_services -16047,pool_billiards -27182,pool_cleaning -82,pool_hall -4,pop_up_restaurant -7193,pop_up_shop -104,popcorn_shop -10229,portuguese_restaurant -131606,post_office -9,potato_restaurant -1658,poultry_farm -98,poultry_farming -3,poutinerie_restaurant -3677,powder_coating_service -435,power_plants_and_power_plant_service -9441,prenatal_perinatal_care -145123,preschool -2654,pressure_washing -712,pretzels -83,preventive_medicine -16223,print_media -1845,printing_equipment_and_supply -218603,printing_services -9193,private_association -272,private_equity_firm -43,private_establishments_and_corporates -8914,private_investigation -133,private_jet_charters -36482,private_school -1186,private_tutor -3629,process_servers -1158,proctologist -1290,produce_wholesaler -50,product_design -1341243,professional_services -657,professional_sports_league -5927,professional_sports_team -1819,promotional_products_and_services -48943,propane_supplier -92208,property_management -11,props -3250,prosthetics -1874,prosthodontist -7810,psychiatrist -9289,psychic -1080,psychic_medium -28,psychoanalyst -67318,psychologist -3,psychomotor_therapist -21438,psychotherapist -176998,pub -232,public_adjuster -368876,public_and_government_association -290,public_bath_houses -2253,public_health_clinic -834,public_market -2,public_phones -59931,public_plaza -8048,public_relations -203,public_restrooms -34027,public_school -260674,public_service_and_government -1292,public_toilet -1164,public_transportation -20329,public_utility_company -665,publicity_service -391,puerto_rican_restaurant -3899,pulmonologist -91,pumpkin_patch -22,qi_gong_studio -697,quarries -456,quay -18626,race_track -25,racing_experience -312,racquetball_court -1164,radio_and_television_commercials -23678,radio_station -9236,radiologist -437,rafting_kayaking_area -3361,railroad_freight -170,railway_service -14,railway_ticket_agent -556,ranch -633065,real_estate -519636,real_estate_agent -9929,real_estate_investment -3040,real_estate_law -187,real_estate_photography -62868,real_estate_service -5652,record_label -1094,recording_and_rehearsal_studio -3592,recreation_vehicle_repair -12385,recreational_vehicle_dealer -60,recreational_vehicle_parts_and_accessories -17603,recycling_center -510,refinishing_services -3268,reflexology -152,registry_office -2475,rehabilitation_center -420,reiki -509,religious_destination -400,religious_items -510265,religious_organization -12873,religious_school -17411,rental_kiosks -28373,rental_service -17217,rental_services -1596,reptile_shop -1198,research_institute -92530,resort -539,rest_areas -112,rest_stop -1599628,restaurant -6398,restaurant_equipment_and_supply -15,restaurant_management -4794,restaurant_wholesale -198631,retail -46,retaining_wall_supplier -137,retina_specialist -140782,retirement_home -2543,rheumatologist -75,rice_mill -38,rice_shop -146,ride_sharing -129263,river -1043,road_contractor -127,road_structures_and_services -1350,roadside_assistance -102,rock_climbing_gym -7,rock_climbing_instructor -5350,rock_climbing_spot -1768,rodeo -1539,roller_skating_rink -422,romanian_restaurant -62665,roofing -5,rotisserie_chicken_restaurant -9,rowing_club -1613,rug_store -416,rugby_pitch -241,rugby_stadium -16,ruin -8,russian_grocery_store -1218,russian_restaurant -1,rv_and_boat_storage_facility -25342,rv_park -1905,rv_rentals -673,rv_storage_facility -4,ryokan -402,safe_store -5772,safety_equipment -162,sailing_area -121,sailing_club -12820,sake_bar -9363,salad_bar -635,salsa_club -616,salvadoran_restaurant -651,sand_and_gravel_supplier -11,sand_dune -1847,sandblasting_service -31718,sandwich_shop -18,saree_shop -259,sauna -1126,saw_mill -198,scale_supplier -1500,scandinavian_restaurant -2,scavenger_hunts_provider -726672,school -173,school_district_offices -188,school_sports_league -1687,school_sports_team -2118,science_museum -53,science_schools -175,scientific_laboratories -221,scooter_dealers -127,scooter_rental -2,scooter_tours -120,scottish_restaurant -27,scout_hall -3670,scrap_metals -34959,screen_printing_t_shirt_printing -11177,scuba_diving_center -1150,scuba_diving_instruction -3564,sculpture_statue -286,seafood_market -156143,seafood_restaurant -278,seafood_wholesaler -1,seal_and_hanko_dealers -188,seaplane_bases -1419,secretarial_services -6790,security_services -6710,security_systems -718,self_catering_accommodation -211,self_defense_classes -45073,self_storage_facility -30,senegalese_restaurant -14184,senior_citizen_services -5447,septic_services -6,serbo_croatian_restaurant -11703,service_apartments -4947,session_photography -41161,sewing_and_alterations -913,sex_therapist -2471,shades_and_blinds -339,shared_office_space -3105,shaved_ice_shop -1,shaved_snow_shop -301,sheet_metal -18,shinto_shrines -65110,shipping_center -998,shipping_collection_services -33,shoe_factory -11002,shoe_repair -15,shoe_shining_service -233671,shoe_store -11524,shooting_range -1374920,shopping -172469,shopping_center -4,shopping_passage -1599,shredding_services -205,shutters -878,siding -6173,sightseeing_tour_agency -25804,sign_making -3849,sikh_temple -3,silent_disco -440,singaporean_restaurant -13873,skate_park -2995,skate_shop -173,skating_rink -1690,ski_and_snowboard_school -2753,ski_and_snowboard_shop -17,ski_area -15093,ski_resort -4669,skilled_nursing -23853,skin_care -1678,sky_diving -158,skylight_installation -1,skyline -7,skyscraper -56,sledding_rental -1184,sleep_specialist -1,sleepwear -123,slovakian_restaurant -89,smokehouse -51255,smoothie_juice_bar -336,snorkeling -6,snorkeling_equipment_rental -336,snow_removal_service -3,snowboarding_center -2,snuggle_service -431,soccer_club -35602,soccer_field -7381,soccer_stadium -5073,social_and_human_services -884,social_club -9970,social_media_agency -372,social_media_company -578,social_security_law -779,social_security_services -137384,social_service_organizations -526,social_welfare_center -104331,software_development -18441,solar_installation -15,solar_panel_cleaning -2,sommelier_service -1231,soul_food -10877,soup_restaurant -225,south_african_restaurant -3555,southern_restaurant -8042,souvenir_shop -20004,spanish_restaurant -268297,spas -2153,speakeasy -1437,specialty_foods -6835,specialty_grocery_store -39318,specialty_school -10771,speech_therapist -49,speech_training -10,sperm_clinic -38,spices_wholesaler -40,spine_surgeon -188,spiritual_shop -352,sport_equipment_rentals -123258,sporting_goods -10296,sports_and_fitness_instruction -135840,sports_and_recreation_venue -8615,sports_bar -216888,sports_club_and_league -4078,sports_medicine -103,sports_museum -230,sports_psychologist -688,sports_school -25555,sports_wear -728,spray_tanning -76,spring_supplier -744,squash_court -669,sri_lankan_restaurant -114286,stadium_arena -1,stargazing_area -318,state_museum -149,state_park -62770,steakhouse -1949,steel_fabricators -5511,stock_and_bond_brokers -26,stocking -1151,stone_and_masonry -950,stone_supplier -68969,storage_facility -8,street_art -16,street_vendor -32,stress_management_services -221,strip_club -6,striptease_dancer -4129,structural_engineer -84746,structure_and_geography -471,stucco_services -594,student_union -88,studio_taping -4,sugar_shack -662,sugaring -2,suicide_prevention_services -7618,sunglasses_store -275399,supermarket -89,supernatural_reading -17528,superstore -1,supper_club -4,surf_lifesaving_club -3996,surf_shop -71,surfboard_rental -5880,surfing -193,surfing_school -23393,surgeon -15194,surgical_appliances_and_supplies -4473,surgical_center -100279,sushi_restaurant -7691,swimming_instructor -61321,swimming_pool -4027,swimwear_store -1690,swiss_restaurant -6213,synagogue -611,syrian_restaurant -6114,t_shirt_store -155,tabac -32,table_tennis_club -59,tabletop_games -269,tableware_supplier -7895,taco_restaurant -447,taekwondo_club -549,tai_chi_studio -8500,taiwanese_restaurant -462,talent_agency -86,tanning_bed -34136,tanning_salon -32912,tapas_bar -4,tasting_classes -81,tatar_restaurant -1499,tattoo -162513,tattoo_and_piercing -333,tattoo_removal -1769,tax_law -56,tax_office -36529,tax_services -47,taxi_rank -37639,taxi_service -4756,taxidermist -73051,tea_room -28,tea_wholesaler -173,team_building_activity -2723,teeth_whitening -19819,telecommunications -78706,telecommunications_company -2102,telemarketing_services -731,telephone_services -13962,television_service_providers -335,television_station -4530,temp_agency -90,temple -69,tenant_and_eviction_law -22794,tennis_court -655,tennis_stadium -11,tent_house_supplier -7650,test_preparation -13553,texmex_restaurant -2463,textile_mill -88,textile_museum -110210,thai_restaurant -1476,theaters_and_performance_venues -74141,theatre -2104,theatrical_productions -22619,theme_restaurant -4,thread_supplier -951,threading_service -285,threads_and_yarns_wholesaler -66100,thrift_store -268,ticket_sales -422,tiki_bar -5179,tile_store -3981,tiling -106397,tire_dealer_and_repair -338,tire_repair_shop -23169,tire_shop -534,tobacco_company -57083,tobacco_shop -37,toll_stations -375,tools_wholesaler -178436,topic_concert_venue -28508,topic_publisher -140114,tours -10,tower -18,tower_communication_service -26865,towing_service -322,town_car_service -69674,town_hall -9,toxicologist -62789,toy_store -1086,track_stadium -190,trade_fair -23,traditional_chinese_medicine -1650,traditional_clothing -2206,traffic_school -27,traffic_ticketing_law -30,trail -6262,trailer_dealer -3691,trailer_rentals -163,trailer_repair -106345,train_station -1247,trains -71,trampoline_park -223,transcription_services -8740,translating_and_interpreting_services -1258,translation_services -1964,transmission_repair -50,transport_interchange -184439,transportation -131909,travel -19419,travel_agents -28206,travel_company -267024,travel_services -13477,tree_services -31,trinidadian_restaurant -3,trivia_host -4858,trophy_shop -9175,truck_dealer -10884,truck_dealer_for_businesses -2540,truck_gas_station -44746,truck_rentals -11535,truck_repair -135,truck_repair_and_services_for_businesses -414,trucks_and_industrial_vehicles -54623,trusts -13,tubing_provider -50,tui_na -37486,turkish_restaurant -56,turnery -69909,tutoring_center -1040,tv_mounting -114,typing_services -758,ukrainian_restaurant -1,ultralight_airports -49,ultrasound_imaging_center -101,undersea_hyperbaric_medicine -113,unemployment_office -9657,uniform_store -1156,university_housing -9566,urban_farm -3007,urgent_care_clinic -10100,urologist -45,uruguayan_restaurant -65,used_bookstore -34125,used_car_dealer -12043,used_vintage_and_consignment -703,utility_service -154,uzbek_restaurant -2479,vacation_rental_agents -433,valet_service -257,vascular_medicine -269,vegan_restaurant -28381,vegetarian_restaurant -2932,vehicle_shipping -368,vehicle_wrap -6914,vending_machine_supplier -674,venezuelan_restaurant -14301,venue_and_event_space -2,vermouth_bar -386,veterans_organization -180102,veterinarian -1,veterinary_schools -10685,video_and_video_game_rentals -3775,video_film_production -11,video_game_critic -20429,video_game_store -3096,videographer -34709,vietnamese_restaurant -644,vinyl_record_store -36,virtual_reality_center -146,visa_agent -2034,visitor_center -45315,vitamins_and_supplements -154,vocal_coach -37833,vocational_and_technical_school -29,volleyball_club -1573,volleyball_court -469,volunteer_association -11,waffle_restaurant -12,waldorf_school -1849,walk_in_clinic -86,walking_tours -37,wallpaper_installers -242,wallpaper_store -71,warehouse_rental_services_and_yards -8296,warehouses -101,washer_and_dryer_repair_service -145,watch_repair_service -2041,watch_store -53,water_delivery -2011,water_heater_installation_repair -13387,water_park -1209,water_purification_services -504,water_softening_equipment_supplier -43,water_store -8835,water_supplier -2,water_taxi -24647,water_treatment_equipment_and_services -6241,waterfall -1220,waterproofing -5045,waxing -25,weather_forecast_services -80,weather_station -25,weaving_mill -54444,web_designer -1257,web_hosting_service -79,wedding_chapel -44441,wedding_planning -13605,weight_loss_center -1335,welders -2571,welding_supply_store -6068,well_drilling -1664,wellness_program -57,whale_watching_tours -4065,wheel_and_rim_repair -1367,whiskey_bar -412,wholesale_florist -6548,wholesale_grocer -110288,wholesale_store -12735,wholesaler -4065,wig_store -256,wildlife_control -238,wildlife_hunting_range -10025,wildlife_sanctuary -6377,wills_trusts_and_probate -77,wind_energy -5348,window_supplier -3209,window_treatment_store -2005,window_washing -30298,windows_installation -2403,windshield_installation_and_repair -37866,wine_bar -12,wine_tasting_classes -156,wine_tasting_room -152,wine_tours -1202,wine_wholesaler -66780,winery -6,wok_restaurant -360492,womens_clothing_store -8103,womens_health_clinic -6164,wood_and_pulp -3579,woodworking_supply_store -159,workers_compensation_law -3,wrap_restaurant -1679,writing_service -162,yoga_instructor -71314,yoga_studio -41611,youth_organizations -29,ziplining_center -9289,zoo \ No newline at end of file diff --git a/docs/guides/places/csv/2025-09-29-Basic-Level-Category.csv b/docs/guides/places/csv/2025-09-29-Basic-Level-Category.csv deleted file mode 100644 index 0a2114c67..000000000 --- a/docs/guides/places/csv/2025-09-29-Basic-Level-Category.csv +++ /dev/null @@ -1,2118 +0,0 @@ -Basic hierarchy,Basic label,Modified,Remove from V1,Match type,Overture label,Overture hierarchy -Business location,business_location,,,CLOSE,business,business_to_business > business -Business location,business_location,,,NARROWER,private_association,public_service_and_government > organization > private_association -Business location > B2B service,b2b_service,,,NARROWER,audio_visual_production_and_design,business_to_business > business_to_business_services > audio_visual_production_and_design -Business location > B2B service,b2b_service,,,NARROWER,automation_services,business_to_business > commercial_industrial > automation_services -Business location > B2B service,b2b_service,,,NARROWER,b2b_cleaning_and_waste_management,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > b2b_cleaning_and_waste_management -Business location > B2B service,b2b_service,,,NARROWER,b2b_energy_and_mining,business_to_business > b2b_energy_and_mining -Business location > B2B service,b2b_service,,,NARROWER,b2b_medical_support_services,business_to_business > b2b_medical_support_services -Business location > B2B service,b2b_service,,,NARROWER,b2b_science_and_technology,business_to_business > b2b_science_and_technology -Business location > B2B service,b2b_service,,,NARROWER,b2b_scientific_equipment,business_to_business > b2b_science_and_technology > b2b_scientific_equipment -Business location > B2B service,b2b_service,,,NARROWER,b2b_storage_and_warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses -Business location > B2B service,b2b_service,,,NARROWER,bank_equipment_service,professional_services > bank_equipment_service -Business location > B2B service,b2b_service,,,NARROWER,billing_services,professional_services > billing_services -Business location > B2B service,b2b_service,,,NARROWER,biotechnology_company,business_to_business > b2b_medical_support_services > biotechnology_company -Business location > B2B service,b2b_service,,,NARROWER,blacksmiths,professional_services > construction_services > metal_materials_and_experts > blacksmiths -Business location > B2B service,b2b_service,,,NARROWER,boat_builder,business_to_business > business_to_business_services > boat_builder -Business location > B2B service,b2b_service,,,NARROWER,business_consulting,professional_services > business_consulting -Business location > B2B service,b2b_service,,,NARROWER,business_records_storage_and_management,business_to_business > business_to_business_services > business_records_storage_and_management -Business location > B2B service,b2b_service,,,NARROWER,business_storage_and_transportation,business_to_business > business_storage_and_transportation -Business location > B2B service,b2b_service,,,CLOSE,business_to_business,business_to_business -Business location > B2B service,b2b_service,,,NARROWER,business_to_business_services,business_to_business > business_to_business_services -Business location > B2B service,b2b_service,,,NARROWER,certification_agency,professional_services > certification_agency -Business location > B2B service,b2b_service,,,NARROWER,clinical_laboratories,business_to_business > b2b_medical_support_services > clinical_laboratories -Business location > B2B service,b2b_service,,,NARROWER,commercial_printer,professional_services > commercial_printer -Business location > B2B service,b2b_service,,,NARROWER,commercial_real_estate,real_estate > commercial_real_estate -Business location > B2B service,b2b_service,,,NARROWER,commercial_refrigeration,professional_services > commercial_refrigeration -Business location > B2B service,b2b_service,,,NARROWER,corporate_entertainment_services,private_establishments_and_corporates > corporate_entertainment_services -Business location > B2B service,b2b_service,,,NARROWER,coworking_space,business_to_business > business_to_business_services > coworking_space -Business location > B2B service,b2b_service,,,NARROWER,crane_services,professional_services > crane_services -Business location > B2B service,b2b_service,,,NARROWER,customs_broker,professional_services > customs_broker -Business location > B2B service,b2b_service,,,NARROWER,dental_laboratories,business_to_business > b2b_medical_support_services > dental_laboratories -Business location > B2B service,b2b_service,,,NARROWER,domestic_business_and_trade_organizations,business_to_business > business_to_business_services > domestic_business_and_trade_organizations -Business location > B2B service,b2b_service,,,NARROWER,dumpster_rentals,professional_services > junk_removal_and_hauling > dumpster_rentals -Business location > B2B service,b2b_service,,,NARROWER,elevator_service,professional_services > elevator_service -Business location > B2B service,b2b_service,,,NARROWER,energy_management_and_conservation_consultants,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > energy_management_and_conservation_consultants -Business location > B2B service,b2b_service,,,NARROWER,environmental_abatement_services,professional_services > environmental_abatement_services -Business location > B2B service,b2b_service,,,NARROWER,environmental_and_ecological_services_for_businesses,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses -Business location > B2B service,b2b_service,,,NARROWER,environmental_renewable_natural_resource,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > environmental_renewable_natural_resource -Business location > B2B service,b2b_service,,,NARROWER,environmental_testing,professional_services > environmental_testing -Business location > B2B service,b2b_service,,,NARROWER,fingerprinting_service,professional_services > fingerprinting_service -Business location > B2B service,b2b_service,,,NARROWER,food_and_beverage_consultant,professional_services > food_and_beverage_consultant -Business location > B2B service,b2b_service,,,NARROWER,forestry_consultants,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > forestry_consultants -Business location > B2B service,b2b_service,,,NARROWER,forestry_service,professional_services > forestry_service -Business location > B2B service,b2b_service,,,NARROWER,generator_installation_repair,professional_services > generator_installation_repair -Business location > B2B service,b2b_service,,,NARROWER,geological_services,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > geological_services -Business location > B2B service,b2b_service,,,NARROWER,hazardous_waste_disposal,professional_services > hazardous_waste_disposal -Business location > B2B service,b2b_service,,,NARROWER,hospital_equipment_and_supplies,business_to_business > b2b_medical_support_services > hospital_equipment_and_supplies -Business location > B2B service,b2b_service,,,NARROWER,hydraulic_repair_service,professional_services > hydraulic_repair_service -Business location > B2B service,b2b_service,,,NARROWER,international_business_and_trade_services,business_to_business > business_to_business_services > international_business_and_trade_services -Business location > B2B service,b2b_service,,,NARROWER,inventory_control_service,business_to_business > commercial_industrial > inventory_control_service -Business location > B2B service,b2b_service,,,NARROWER,ironworkers,professional_services > construction_services > metal_materials_and_experts > ironworkers -Business location > B2B service,b2b_service,,,NARROWER,laboratory,professional_services > laboratory -Business location > B2B service,b2b_service,,,NARROWER,laser_cutting_service_provider,business_to_business > business_to_business_services > laser_cutting_service_provider -Business location > B2B service,b2b_service,,,NARROWER,manufacturers_agents_and_representatives,business_to_business > business_to_business_services > domestic_business_and_trade_organizations > manufacturers_agents_and_representatives -Business location > B2B service,b2b_service,,,NARROWER,mediator,professional_services > mediator -Business location > B2B service,b2b_service,,,NARROWER,medical_research_and_development,business_to_business > b2b_medical_support_services > medical_research_and_development -Business location > B2B service,b2b_service,,,NARROWER,metal_materials_and_experts,professional_services > construction_services > metal_materials_and_experts -Business location > B2B service,b2b_service,,,NARROWER,mooring_service,professional_services > mooring_service -Business location > B2B service,b2b_service,,,NARROWER,occupational_safety,business_to_business > commercial_industrial > occupational_safety -Business location > B2B service,b2b_service,,,NARROWER,packaging_contractors_and_service,professional_services > packaging_contractors_and_service -Business location > B2B service,b2b_service,,,NARROWER,pharmaceutical_companies,business_to_business > b2b_medical_support_services > pharmaceutical_companies -Business location > B2B service,b2b_service,,,NARROWER,powder_coating_service,professional_services > powder_coating_service -Business location > B2B service,b2b_service,,,NARROWER,research_institute,business_to_business > b2b_science_and_technology > research_institute -Business location > B2B service,b2b_service,,,NARROWER,restaurant_management,business_to_business > business_to_business_services > restaurant_management -Business location > B2B service,b2b_service,,,NARROWER,road_contractor,professional_services > construction_services > road_contractor -Business location > B2B service,b2b_service,,,NARROWER,sandblasting_service,professional_services > sandblasting_service -Business location > B2B service,b2b_service,,,NARROWER,scientific_laboratories,business_to_business > b2b_science_and_technology > scientific_laboratories -Business location > B2B service,b2b_service,,,NARROWER,surgical_appliances_and_supplies,business_to_business > b2b_medical_support_services > surgical_appliances_and_supplies -Business location > B2B service,b2b_service,,,NARROWER,transcription_services,business_to_business > business_to_business_services > transcription_services -Business location > B2B service,b2b_service,,,NARROWER,translating_and_interpreting_services,business_to_business > business_to_business_services > translating_and_interpreting_services -Business location > B2B service,b2b_service,,,NARROWER,water_treatment_equipment_and_services,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > b2b_cleaning_and_waste_management > water_treatment_equipment_and_services -Business location > B2B service,b2b_service,,,NARROWER,welders,professional_services > construction_services > metal_materials_and_experts > welders -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,agricultural_cooperatives,business_to_business > b2b_agriculture_and_food > agricultural_cooperatives -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,agricultural_engineering_service,business_to_business > b2b_agriculture_and_food > agricultural_engineering_service -Business location > B2B service > Agricultural service,agricultural_service,,,EXACT,agricultural_service,business_to_business > b2b_agriculture_and_food > agricultural_service -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,b2b_agriculture_and_food,business_to_business > b2b_agriculture_and_food -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,b2b_food_products,business_to_business > b2b_agriculture_and_food > b2b_food_products -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,farm_equipment_and_supply,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,farm_equipment_repair_service,professional_services > farm_equipment_repair_service -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,farming_services,business_to_business > b2b_agriculture_and_food > b2b_farming > farming_services -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,fertilizer_store,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,grain_elevators,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevators -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,irrigation_companies,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > irrigation_companies -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,livestock_breeder,business_to_business > b2b_agriculture_and_food > livestock_breeder -Business location > B2B service > Agricultural service,agricultural_service,,,NARROWER,livestock_dealers,business_to_business > b2b_agriculture_and_food > livestock_dealers -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,advertising_agency,professional_services > advertising_agency -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,business_advertising,business_to_business > business_advertising -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,business_signage,business_to_business > business_advertising > business_signage -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,direct_mail_advertising,business_to_business > business_advertising > direct_mail_advertising -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,internet_marketing_service,professional_services > internet_marketing_service -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,marketing_agency,professional_services > marketing_agency -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,marketing_consultant,business_to_business > business_advertising > marketing_consultant -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,merchandising_service,professional_services > merchandising_service -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,newspaper_advertising,business_to_business > business_advertising > newspaper_advertising -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,outdoor_advertising,business_to_business > business_advertising > outdoor_advertising -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,promotional_products_and_services,business_to_business > business_advertising > promotional_products_and_services -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,publicity_service,business_to_business > business_advertising > publicity_service -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,radio_and_television_commercials,business_to_business > business_advertising > radio_and_television_commercials -Business location > B2B service > Business advertising or marketing,business_advertising_marketing,,,NARROWER,telemarketing_services,business_to_business > business_advertising > telemarketing_services -Business location > B2B service > Business cleaning service,business_cleaning_service,,,CLOSE,cleaning_services,professional_services > cleaning_services -Business location > B2B service > Business cleaning service,business_cleaning_service,,,CLOSE,industrial_cleaning_services,professional_services > cleaning_services > industrial_cleaning_services -Business location > B2B service > Business cleaning service,business_cleaning_service,,,CLOSE,janitorial_services,professional_services > cleaning_services > janitorial_services -Business location > B2B service > Business cleaning service,business_cleaning_service,,,CLOSE,office_cleaning,professional_services > cleaning_services > office_cleaning -Business location > B2B service > Business management service,business_management_service,,,EXACT,business_management_services,business_to_business > business_to_business_services > consultant_and_general_service > business_management_services -Business location > B2B service > Business management service,business_management_service,,,NARROWER,consultant_and_general_service,business_to_business > business_to_business_services > consultant_and_general_service -Business location > B2B service > Business management service,business_management_service,,,NARROWER,executive_search_consultants,business_to_business > business_to_business_services > consultant_and_general_service > executive_search_consultants -Business location > B2B service > Business management service,business_management_service,,,NARROWER,food_consultant,business_to_business > business_to_business_services > consultant_and_general_service > food_consultant -Business location > B2B service > Business management service,business_management_service,,,NARROWER,manufacturing_and_industrial_consultant,business_to_business > business_to_business_services > consultant_and_general_service > manufacturing_and_industrial_consultant -Business location > B2B service > Business management service,business_management_service,,,NARROWER,public_relations,professional_services > public_relations -Business location > B2B service > Business management service,business_management_service,,,NARROWER,secretarial_services,business_to_business > business_to_business_services > consultant_and_general_service > secretarial_services -Business location > B2B service > Engineering service,engineering_service,,,NARROWER,civil_engineers,professional_services > construction_services > engineering_services > civil_engineers -Business location > B2B service > Engineering service,engineering_service,,,EXACT,engineering_services,professional_services > construction_services > engineering_services -Business location > B2B service > Engineering service,engineering_service,,,NARROWER,instrumentation_engineers,professional_services > construction_services > engineering_services > instrumentation_engineers -Business location > B2B service > Engineering service,engineering_service,,,NARROWER,mechanical_engineers,professional_services > construction_services > engineering_services > mechanical_engineers -Business location > B2B service > Engineering service,engineering_service,,,NARROWER,product_design,professional_services > product_design -Business location > B2B service > Human resource service,human_resource_service,,,NARROWER,background_check_services,business_to_business > business_to_business_services > human_resource_services > background_check_services -Business location > B2B service > Human resource service,human_resource_service,,,NARROWER,employment_agencies,professional_services > employment_agencies -Business location > B2B service > Human resource service,human_resource_service,,,EXACT,human_resource_services,business_to_business > business_to_business_services > human_resource_services -Business location > B2B service > Human resource service,human_resource_service,,,NARROWER,payroll_services,professional_services > payroll_services -Business location > B2B service > Human resource service,human_resource_service,,,NARROWER,talent_agency,professional_services > talent_agency -Business location > B2B service > Human resource service,human_resource_service,,,NARROWER,temp_agency,professional_services > employment_agencies > temp_agency -Business location > B2B service > Information technology service,information_technology_service,,,CLOSE,information_technology_company,business_to_business > business_to_business_services > information_technology_company -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,abrasives_supplier,business_to_business > business_manufacturing_and_supply > abrasives_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,aggregate_supplier,business_to_business > business_manufacturing_and_supply > aggregate_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,aluminum_supplier,business_to_business > business_manufacturing_and_supply > aluminum_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,awning_supplier,professional_services > awning_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_apparel,business_to_business > business_manufacturing_and_supply > b2b_apparel -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_autos_and_vehicles,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_electronic_equipment,business_to_business > business_manufacturing_and_supply > b2b_electronic_equipment -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_equipment_maintenance_and_repair,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > b2b_equipment_maintenance_and_repair -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_forklift_dealers,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_forklift_dealers -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_furniture_and_housewares,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_hardware,business_to_business > business_manufacturing_and_supply > b2b_hardware -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_jewelers,business_to_business > business_manufacturing_and_supply > b2b_jewelers -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_machinery_and_tools,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_rubber_and_plastics,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_sporting_and_recreation_goods,business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_textiles,business_to_business > business_manufacturing_and_supply > b2b_textiles -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_tires,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_tractor_dealers,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_tractor_dealers -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,b2b_truck_equipment_parts_and_accessories,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_truck_equipment_parts_and_accessories -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,battery_inverter_supplier,business_to_business > business_manufacturing_and_supply > battery_inverter_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,bearing_supplier,business_to_business > business_manufacturing_and_supply > bearing_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,beauty_product_supplier,business_to_business > business_equipment_and_supply > beauty_product_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,beverage_supplier,business_to_business > business_equipment_and_supply > beverage_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,CLOSE,business_equipment_and_supply,business_to_business > business_equipment_and_supply -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,casting_molding_and_machining,business_to_business > business_manufacturing_and_supply > casting_molding_and_machining -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,cement_supplier,business_to_business > business_manufacturing_and_supply > cement_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,chemical_plant,business_to_business > business_manufacturing_and_supply > chemical_plant -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,cleaning_products_supplier,business_to_business > business_manufacturing_and_supply > cleaning_products_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,corporate_gift_supplier,private_establishments_and_corporates > corporate_gift_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,cotton_mill,business_to_business > business_manufacturing_and_supply > mills > cotton_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,drinking_water_dispenser,business_to_business > business_manufacturing_and_supply > drinking_water_dispenser -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,electronic_parts_supplier,business_to_business > business_equipment_and_supply > electronic_parts_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,energy_equipment_and_solution,business_to_business > business_equipment_and_supply > energy_equipment_and_solution -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,fastener_supplier,business_to_business > business_manufacturing_and_supply > fastener_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,flour_mill,business_to_business > business_manufacturing_and_supply > mills > flour_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,food_beverage_service_distribution,business_to_business > business > food_beverage_service_distribution -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,granite_supplier,business_to_business > business_manufacturing_and_supply > granite_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,hotel_supply_service,business_to_business > business > hotel_supply_service -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,hvac_supplier,business_to_business > business_manufacturing_and_supply > hvac_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,hydraulic_equipment_supplier,business_to_business > business_equipment_and_supply > hydraulic_equipment_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,ice_supplier,professional_services > ice_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,industrial_equipment,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,iron_and_steel_industry,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_and_steel_industry -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,iron_work,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_and_steel_industry > iron_work -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,laboratory_equipment_supplier,business_to_business > business_equipment_and_supply > laboratory_equipment_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,logging_contractor,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,logging_equipment_and_supplies,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_equipment_and_supplies -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,logging_services,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_services -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,metal_fabricator,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,metal_plating_service,business_to_business > business_manufacturing_and_supply > metals > metal_plating_service -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,metal_supplier,business_to_business > business_manufacturing_and_supply > metals > metal_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,metals,business_to_business > business_manufacturing_and_supply > metals -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,mills,business_to_business > business_manufacturing_and_supply > mills -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,paper_mill,business_to_business > business_manufacturing_and_supply > mills > paper_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,pipe_supplier,business_to_business > business_manufacturing_and_supply > pipe_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,plastic_company,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_company -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,plastic_fabrication_company,business_to_business > business_manufacturing_and_supply > plastic_fabrication_company -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,plastic_injection_molding_workshop,business_to_business > business_manufacturing_and_supply > plastic_injection_molding_workshop -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,printing_equipment_and_supply,business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,propane_supplier,professional_services > propane_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,restaurant_equipment_and_supply,business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,retaining_wall_supplier,business_to_business > business_manufacturing_and_supply > retaining_wall_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,rice_mill,business_to_business > business_manufacturing_and_supply > mills > rice_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,sand_and_gravel_supplier,business_to_business > business_manufacturing_and_supply > sand_and_gravel_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,saw_mill,business_to_business > business_manufacturing_and_supply > mills > saw_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,scale_supplier,business_to_business > business_manufacturing_and_supply > scale_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,scrap_metals,business_to_business > business_manufacturing_and_supply > metals > scrap_metals -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,seal_and_hanko_dealers,business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealers -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,sheet_metal,business_to_business > business_manufacturing_and_supply > metals > sheet_metal -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,shoe_factory,business_to_business > business_manufacturing_and_supply > shoe_factory -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,spring_supplier,business_to_business > business_manufacturing_and_supply > spring_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,steel_fabricators,business_to_business > business_manufacturing_and_supply > metals > steel_fabricators -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,stone_supplier,business_to_business > business_manufacturing_and_supply > stone_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,tent_house_supplier,professional_services > tent_house_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,textile_mill,business_to_business > business_manufacturing_and_supply > mills > textile_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,thread_supplier,business_to_business > business_equipment_and_supply > thread_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,truck_dealer_for_businesses,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > truck_dealer_for_businesses -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,truck_repair_and_services_for_businesses,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > truck_repair_and_services_for_businesses -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,trucks_and_industrial_vehicles,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,turnery,business_to_business > business_manufacturing_and_supply > turnery -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,vending_machine_supplier,business_to_business > business_equipment_and_supply > vending_machine_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,water_softening_equipment_supplier,business_to_business > business_equipment_and_supply > water_softening_equipment_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,weaving_mill,business_to_business > business_manufacturing_and_supply > mills > weaving_mill -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,window_supplier,business_to_business > business_manufacturing_and_supply > window_supplier -Business location > B2B supplier or distributor,b2b_supplier_distributor,,,NARROWER,wood_and_pulp,business_to_business > business_manufacturing_and_supply > wood_and_pulp -Business location > B2B supplier or distributor > Import export company,import_export_company,,,NARROWER,exporters,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters -Business location > B2B supplier or distributor > Import export company,import_export_company,,,NARROWER,food_and_beverage_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters > food_and_beverage_exporter -Business location > B2B supplier or distributor > Import export company,import_export_company,,,EXACT,importer_and_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter -Business location > B2B supplier or distributor > Import export company,import_export_company,,,NARROWER,importers,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > importers -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,computer_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > computer_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,electrical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > electrical_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,fabric_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fabric_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,fitness_equipment_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fitness_equipment_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,fmcg_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,footwear_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > footwear_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,furniture_wholesalers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesalers -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,greengrocer,business_to_business > business_equipment_and_supply > wholesaler > greengrocer -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,industrial_spares_and_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > industrial_spares_and_products_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,iron_and_steel_store,business_to_business > business_equipment_and_supply > wholesaler > iron_and_steel_store -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,lingerie_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > lingerie_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,meat_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > meat_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,optical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > optical_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,pharmaceutical_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > pharmaceutical_products_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,produce_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > produce_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,restaurant_wholesale,business_to_business > business_equipment_and_supply > wholesaler > restaurant_wholesale -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,seafood_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > seafood_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,spices_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler > spices_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,tea_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tea_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,threads_and_yarns_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > threads_and_yarns_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,tools_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tools_wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,wholesale_florist,business_to_business > business_equipment_and_supply > wholesaler > wholesale_florist -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,wholesale_grocer,business_to_business > business_equipment_and_supply > wholesaler > wholesale_grocer -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,EXACT,wholesaler,business_to_business > business_equipment_and_supply > wholesaler -Business location > B2B supplier or distributor > Wholesaler,wholesaler,,,NARROWER,wine_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > wine_wholesaler -Business location > Corporate or business office,corporate_or_business_office,,,EXACT,corporate_office,private_establishments_and_corporates > corporate_office -Business location > Corporate or business office,corporate_or_business_office,,,CLOSE,private_establishments_and_corporates,private_establishments_and_corporates -Business location > Manufacturer,manufacturer,,,NARROWER,aircraft_manufacturer,business_to_business > business_manufacturing_and_supply > aircraft_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,appliance_manufacturer,business_to_business > business_manufacturing_and_supply > appliance_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,auto_manufacturers_and_distributors,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > auto_manufacturers_and_distributors -Business location > Manufacturer,manufacturer,,,CLOSE,business_manufacturing_and_supply,business_to_business > business_manufacturing_and_supply -Business location > Manufacturer,manufacturer,,,NARROWER,cosmetic_products_manufacturer,business_to_business > business_manufacturing_and_supply > cosmetic_products_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,furniture_manufacturers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_manufacturers -Business location > Manufacturer,manufacturer,,,NARROWER,glass_manufacturer,business_to_business > business_manufacturing_and_supply > glass_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,jewelry_and_watches_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_and_watches_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,jewelry_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,leather_products_manufacturer,business_to_business > business_manufacturing_and_supply > leather_products_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,lighting_fixture_manufacturers,business_to_business > business_manufacturing_and_supply > lighting_fixture_manufacturers -Business location > Manufacturer,manufacturer,,,NARROWER,mattress_manufacturing,business_to_business > business_manufacturing_and_supply > mattress_manufacturing -Business location > Manufacturer,manufacturer,,,NARROWER,motorcycle_manufacturer,automotive > motorcycle_manufacturer -Business location > Manufacturer,manufacturer,,,NARROWER,plastic_manufacturer,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_manufacturer -Business location > Manufacturer > Machine shop,machine_shop,,,EXACT,machine_shop,professional_services > machine_shop -Cultural or civic location > Civic organization or office,civic_organization_office,TRUE,REVIEW,CLOSE,school_district_offices,education > school_district_offices -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,agriculture_association,public_service_and_government > organization > agriculture_association -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,children_hall,public_service_and_government > children_hall -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,disability_services_and_support_organization,public_service_and_government > community_services > disability_services_and_support_organization -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,non_governmental_association,public_service_and_government > organization > non_governmental_association -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,organization,public_service_and_government > organization -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,public_and_government_association,public_service_and_government > organization > public_and_government_association -"Cultural, civic or municipal location > Civic organization or office",civic_organization_office,,,NARROWER,public_service_and_government,public_service_and_government -"Cultural, civic or municipal location > Civic organization or office > Civic center",civic_center,,,EXACT,civic_center,public_service_and_government > civic_center -"Cultural, civic or municipal location > Civic organization or office > Conservation organization",conservation_organization,,,CLOSE,environmental_conservation_and_ecological_organizations,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > environmental_conservation_and_ecological_organizations -"Cultural, civic or municipal location > Civic organization or office > Conservation organization",conservation_organization,,,CLOSE,environmental_conservation_organization,public_service_and_government > organization > environmental_conservation_organization -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,board_of_education_offices,education > board_of_education_offices -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,CLOSE,central_government_office,public_service_and_government > central_government_office -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,chambers_of_commerce,public_service_and_government > chambers_of_commerce -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,courthouse,public_service_and_government > courthouse -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,department_of_motor_vehicles,public_service_and_government > department_of_motor_vehicles -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,department_of_social_service,public_service_and_government > department_of_social_service -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,embassy,public_service_and_government > embassy -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,federal_government_offices,public_service_and_government > federal_government_offices -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,CLOSE,government_services,public_service_and_government > government_services -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,health_department,health_and_medical > health_department -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,immigration_and_naturalization,public_service_and_government > immigration_and_naturalization -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,local_and_state_government_offices,public_service_and_government > local_and_state_government_offices -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,national_security_services,public_service_and_government > national_security_services -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,office_of_vital_records,public_service_and_government > office_of_vital_records -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,pension,public_service_and_government > pension -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,registry_office,public_service_and_government > registry_office -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,social_security_services,public_service_and_government > government_services > social_security_services -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,tax_office,public_service_and_government > tax_office -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,town_hall,public_service_and_government > town_hall -"Cultural, civic or municipal location > Civic organization or office > Government office",government_office,,,NARROWER,unemployment_office,public_service_and_government > unemployment_office -"Cultural, civic or municipal location > Civic organization or office > Labor union",labor_union,,,EXACT,labor_union,public_service_and_government > organization > labor_union -"Cultural, civic or municipal location > Civic organization or office > Political organization",political_organization,,,EXACT,political_organization,public_service_and_government > organization > political_organization -"Cultural, civic or municipal location > Civic organization or office > Political organization",political_organization,,,NARROWER,political_party_office,public_service_and_government > political_party_office -"Cultural, civic or municipal location > Memorial site",memorial_site,,,NARROWER,memorial_park,attractions_and_activities > park > memorial_park -"Cultural, civic or municipal location > Memorial site > Cemetery",cemetery,,,EXACT,cemeteries,professional_services > cemeteries -"Cultural, civic or municipal location > Memorial site > Monument",monument,,,EXACT,monument,attractions_and_activities > monument -"Cultural, civic or municipal location > Military site",military_site,,,NARROWER,armed_forces_branch,public_service_and_government > armed_forces_branch -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,adult_education,education > adult_education -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,campus_building,education > campus_building -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,charter_school,education > school > charter_school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,CLOSE,education,education -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,educational_camp,education > educational_camp -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,educational_research_institute,education > educational_research_institute -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,montessori_school,education > school > montessori_school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,private_school,education > school > private_school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,public_school,education > school > public_school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,religious_school,education > school > religious_school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,school,education > school -"Cultural, civic or municipal location > Place of learning",place_of_learning,,,NARROWER,waldorf_school,education > school > waldorf_school -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,architecture_schools,education > college_university > architecture_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,business_schools,education > college_university > business_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,EXACT,college_university,education > college_university -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,dentistry_schools,education > college_university > medical_sciences_schools > dentistry_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,engineering_schools,education > college_university > engineering_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,law_schools,education > college_university > law_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,medical_sciences_schools,education > college_university > medical_sciences_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,pharmacy_schools,education > college_university > medical_sciences_schools > pharmacy_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,science_schools,education > college_university > science_schools -"Cultural, civic or municipal location > Place of learning > College or university",college_university,,,NARROWER,veterinary_schools,education > college_university > medical_sciences_schools > veterinary_schools -"Cultural, civic or municipal location > Place of learning > Elementary school",elementary_school,,,EXACT,elementary_school,education > school > elementary_school -"Cultural, civic or municipal location > Place of learning > High school",high_school,,,EXACT,high_school,education > school > high_school -"Cultural, civic or municipal location > Place of learning > Library",library,,,EXACT,library,public_service_and_government > library -"Cultural, civic or municipal location > Place of learning > Middle school",middle_school,,,EXACT,middle_school,education > school > middle_school -"Cultural, civic or municipal location > Place of learning > Preschool",preschool,,,EXACT,preschool,education > school > preschool -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,art_school,education > specialty_school > art_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,bartending_school,education > specialty_school > bartending_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,cheerleading,education > specialty_school > cheerleading -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,cheese_tasting_classes,education > tasting_classes > cheese_tasting_classes -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,childbirth_education,education > specialty_school > childbirth_education -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,circus_school,education > specialty_school > circus_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,computer_coaching,education > specialty_school > computer_coaching -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,cooking_school,education > specialty_school > cooking_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,cosmetology_school,education > specialty_school > cosmetology_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,cpr_classes,education > specialty_school > cpr_classes -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,dance_school,active_life > sports_and_fitness_instruction > dance_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,drama_school,education > specialty_school > drama_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,driving_school,education > specialty_school > driving_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,dui_school,education > specialty_school > dui_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,firearm_training,education > specialty_school > firearm_training -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,first_aid_class,education > specialty_school > first_aid_class -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,flight_school,education > specialty_school > flight_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,food_safety_training,education > specialty_school > food_safety_training -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,language_school,education > specialty_school > language_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,massage_school,education > specialty_school > massage_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,medical_school,education > specialty_school > medical_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,music_school,education > specialty_school > music_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,nursing_school,education > specialty_school > nursing_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,parenting_classes,education > specialty_school > parenting_classes -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,photography_classes,education > specialty_school > photography_classes -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,ski_and_snowboard_school,active_life > sports_and_fitness_instruction > ski_and_snowboard_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,EXACT,specialty_school,education > specialty_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,speech_training,education > specialty_school > speech_training -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,sports_school,education > specialty_school > sports_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,surfing_school,active_life > sports_and_fitness_instruction > surfing_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,tasting_classes,education > tasting_classes -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,traffic_school,education > specialty_school > traffic_school -"Cultural, civic or municipal location > Place of learning > Specialty school",specialty_school,,,NARROWER,wine_tasting_classes,education > tasting_classes > wine_tasting_classes -"Cultural, civic or municipal location > Place of learning > Vocational or technical school",vocational_technical_school,,,EXACT,vocational_and_technical_school,education > specialty_school > vocational_and_technical_school -"Cultural, civic or municipal location > Public fountain",public_fountain,,,EXACT,fountain,attractions_and_activities > fountain -"Cultural, civic or municipal location > Public pathway > Bicycle path",bicycle_path,,,EXACT,bicycle_path,active_life > sports_and_recreation_venue > bicycle_path -"Cultural, civic or municipal location > Public plaza",public_plaza,,,EXACT,plaza,attractions_and_activities > plaza -"Cultural, civic or municipal location > Public plaza",public_plaza,,,EXACT,public_plaza,structure_and_geography > public_plaza -"Cultural, civic or municipal location > Public safety service > Ambulance or EMS service",ambulance_ems_service,,,CLOSE,ambulance_and_ems_services,health_and_medical > ambulance_and_ems_services -"Cultural, civic or municipal location > Public safety service > Fire station",fire_station,,,EXACT,fire_department,public_service_and_government > fire_department -"Cultural, civic or municipal location > Public safety service > Jail or prison",jail_or_prison,,,EXACT,jail_and_prison,public_service_and_government > jail_and_prison -"Cultural, civic or municipal location > Public safety service > Jail or prison",jail_or_prison,,,NARROWER,juvenile_detention_center,public_service_and_government > jail_and_prison > juvenile_detention_center -"Cultural, civic or municipal location > Public safety service > Police station",police_station,,,CLOSE,law_enforcement,public_service_and_government > law_enforcement -"Cultural, civic or municipal location > Public safety service > Police station",police_station,,,EXACT,police_department,public_service_and_government > police_department -"Cultural, civic or municipal location > Public toilet",public_toilet,,,EXACT,public_restrooms,professional_services > utility_service > public_restrooms -"Cultural, civic or municipal location > Public toilet",public_toilet,,,EXACT,public_toilet,public_service_and_government > public_toilet -"Cultural, civic or municipal location > Public utility service",public_utility_service,,,NARROWER,public_phones,professional_services > utility_service > public_phones -"Cultural, civic or municipal location > Public utility service",public_utility_service,,,EXACT,public_utility_company,public_service_and_government > public_utility_company -"Cultural, civic or municipal location > Public utility service",public_utility_service,,,EXACT,utility_service,professional_services > utility_service -"Cultural, civic or municipal location > Public utility service > Electric utility service",electric_utility_service,,,EXACT,electric_utility_provider,public_service_and_government > public_utility_company > electric_utility_provider -"Cultural, civic or municipal location > Public utility service > Electric utility service",electric_utility_service,,,CLOSE,electricity_supplier,professional_services > utility_service > electricity_supplier -"Cultural, civic or municipal location > Public utility service > Garbage collection service",garbage_collection_service,,,EXACT,garbage_collection_service,professional_services > utility_service > garbage_collection_service -"Cultural, civic or municipal location > Public utility service > Natural gas utility service",natural_gas_utility_service,,,EXACT,natural_gas_supplier,professional_services > utility_service > natural_gas_supplier -"Cultural, civic or municipal location > Public utility service > Recycling center",recycling_center,,,EXACT,recycling_center,professional_services > recycling_center -"Cultural, civic or municipal location > Public utility service > Water utility service",water_utility_service,,,EXACT,water_supplier,professional_services > utility_service > water_supplier -"Cultural, civic or municipal location > Religious organization",religious_organization,,,NARROWER,convents_and_monasteries,religious_organization > convents_and_monasteries -"Cultural, civic or municipal location > Religious organization",religious_organization,,,NARROWER,mission,religious_organization > mission -"Cultural, civic or municipal location > Religious organization",religious_organization,,,NARROWER,religious_destination,religious_organization > religious_destination -"Cultural, civic or municipal location > Religious organization",religious_organization,,,EXACT,religious_organization,religious_organization -"Cultural, civic or municipal location > Religious organization > Buddhist place of worship",buddhist_place_of_worship,,,CLOSE,buddhist_temple,religious_organization > buddhist_temple -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,anglican_church,religious_organization > church_cathedral > anglican_church -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,baptist_church,religious_organization > church_cathedral > baptist_church -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,catholic_church,religious_organization > church_cathedral > catholic_church -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,CLOSE,church_cathedral,religious_organization > church_cathedral -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,episcopal_church,religious_organization > church_cathedral > episcopal_church -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,evangelical_church,religious_organization > church_cathedral > evangelical_church -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,jehovahs_witness_kingdom_hall,religious_organization > church_cathedral > jehovahs_witness_kingdom_hall -"Cultural, civic or municipal location > Religious organization > Christian place of worship",christian_place_of_worship,,,NARROWER,pentecostal_church,religious_organization > church_cathedral > pentecostal_church -"Cultural, civic or municipal location > Religious organization > Hindu place of worship",hindu_place_of_worship,,,CLOSE,hindu_temple,religious_organization > hindu_temple -"Cultural, civic or municipal location > Religious organization > Jewish place of worship",jewish_place_of_worship,,,CLOSE,synagogue,religious_organization > synagogue -"Cultural, civic or municipal location > Religious organization > Muslim place of worship",muslim_place_of_worship,,,CLOSE,mosque,religious_organization > mosque -"Cultural, civic or municipal location > Religious organization > Place of worship",place_of_worship,,,NARROWER,shinto_shrines,religious_organization > shinto_shrines -"Cultural, civic or municipal location > Religious organization > Place of worship",place_of_worship,,,NARROWER,sikh_temple,religious_organization > sikh_temple -"Cultural, civic or municipal location > Religious organization > Place of worship",place_of_worship,,,NARROWER,temple,religious_organization > temple -Eating or drinking location,eating_drinking_location,,,EXACT,eat_and_drink,eat_and_drink -Eating or drinking location > Bar,bar,,,NARROWER,airport_lounge,eat_and_drink > bar > airport_lounge -Eating or drinking location > Bar,bar,,,EXACT,bar,eat_and_drink > bar -Eating or drinking location > Bar,bar,,,NARROWER,beach_bar,eat_and_drink > bar > beach_bar -Eating or drinking location > Bar,bar,,,NARROWER,beer_bar,eat_and_drink > bar > beer_bar -Eating or drinking location > Bar,bar,,,NARROWER,beer_garden,eat_and_drink > bar > beer_garden -Eating or drinking location > Bar,bar,,,NARROWER,champagne_bar,eat_and_drink > bar > champagne_bar -Eating or drinking location > Bar,bar,,,NARROWER,cigar_bar,eat_and_drink > bar > cigar_bar -Eating or drinking location > Bar,bar,,,NARROWER,cocktail_bar,eat_and_drink > bar > cocktail_bar -Eating or drinking location > Bar,bar,,,NARROWER,dive_bar,eat_and_drink > bar > dive_bar -Eating or drinking location > Bar,bar,,,NARROWER,drive_thru_bar,eat_and_drink > bar > drive_thru_bar -Eating or drinking location > Bar,bar,,,NARROWER,gay_bar,eat_and_drink > bar > gay_bar -Eating or drinking location > Bar,bar,,,NARROWER,hookah_bar,eat_and_drink > bar > hookah_bar -Eating or drinking location > Bar,bar,,,NARROWER,hotel_bar,eat_and_drink > bar > hotel_bar -Eating or drinking location > Bar,bar,,,NARROWER,lounge,eat_and_drink > bar > lounge -Eating or drinking location > Bar,bar,,,NARROWER,piano_bar,eat_and_drink > bar > piano_bar -Eating or drinking location > Bar,bar,,,NARROWER,sake_bar,eat_and_drink > bar > sake_bar -Eating or drinking location > Bar,bar,,,NARROWER,speakeasy,eat_and_drink > bar > speakeasy -Eating or drinking location > Bar,bar,,,NARROWER,sports_bar,eat_and_drink > bar > sports_bar -Eating or drinking location > Bar,bar,,,NARROWER,sugar_shack,eat_and_drink > bar > sugar_shack -Eating or drinking location > Bar,bar,,,NARROWER,tabac,eat_and_drink > bar > tabac -Eating or drinking location > Bar,bar,,,NARROWER,tiki_bar,eat_and_drink > bar > tiki_bar -Eating or drinking location > Bar,bar,,,NARROWER,vermouth_bar,eat_and_drink > bar > vermouth_bar -Eating or drinking location > Bar,bar,,,NARROWER,whiskey_bar,eat_and_drink > bar > whiskey_bar -Eating or drinking location > Bar,bar,,,NARROWER,wine_bar,eat_and_drink > bar > wine_bar -Eating or drinking location > Bar > Pub,pub,,,NARROWER,irish_pub,eat_and_drink > bar > irish_pub -Eating or drinking location > Bar > Pub,pub,,,EXACT,pub,eat_and_drink > bar > pub -Eating or drinking location > Beverage shop,beverage_shop,,,CLOSE,beverage_store,retail > beverage_store -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,bubble_tea,eat_and_drink > bar > bubble_tea -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,cidery,eat_and_drink > bar > cidery -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,kombucha,eat_and_drink > bar > kombucha -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,milk_bar,eat_and_drink > bar > milk_bar -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,milkshake_bar,eat_and_drink > bar > milkshake_bar -Eating or drinking location > Beverage shop,beverage_shop,,,NARROWER,tea_room,eat_and_drink > cafe > tea_room -Eating or drinking location > Beverage shop > Coffee shop,coffee_shop,,,NARROWER,coffee_roastery,eat_and_drink > cafe > coffee_roastery -Eating or drinking location > Beverage shop > Coffee shop,coffee_shop,,,EXACT,coffee_shop,eat_and_drink > cafe > coffee_shop -Eating or drinking location > Beverage shop > Juice bar,juice_bar,,,CLOSE,smoothie_juice_bar,eat_and_drink > bar > smoothie_juice_bar -Eating or drinking location > Brewery,brewery,,,EXACT,brewery,eat_and_drink > bar > brewery -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,bagel_restaurant,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > bagel_restaurant -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,bagel_shop,retail > food > bagel_shop -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,baguettes,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > baguettes -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,bistro,eat_and_drink > restaurant > bistro -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,brasserie,eat_and_drink > restaurant > brasserie -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,desserts,retail > food > desserts -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,donuts,retail > food > donuts -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,flatbread,retail > food > bakery > flatbread -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,food_truck,retail > food > food_truck -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,friterie,retail > food > friterie -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,frozen_yoghurt_shop,retail > food > ice_cream_and_frozen_yoghurt > frozen_yoghurt_shop -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,gelato,retail > food > ice_cream_and_frozen_yoghurt > gelato -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,ice_cream_and_frozen_yoghurt,retail > food > ice_cream_and_frozen_yoghurt -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,ice_cream_shop,retail > food > ice_cream_and_frozen_yoghurt > ice_cream_shop -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,kiosk,retail > food > kiosk -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,macarons,retail > food > specialty_foods > macarons -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,shaved_ice_shop,retail > food > ice_cream_and_frozen_yoghurt > shaved_ice_shop -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,shaved_snow_shop,retail > food > ice_cream_and_frozen_yoghurt > shaved_snow_shop -Eating or drinking location > Casual eatery,casual_eatery,,,NARROWER,street_vendor,retail > food > street_vendor -Eating or drinking location > Casual eatery > Bakery,bakery,,,EXACT,bakery,retail > food > bakery -Eating or drinking location > Casual eatery > Cafe,cafe,,,EXACT,cafe,eat_and_drink > cafe -Eating or drinking location > Casual eatery > Cafe,cafe,,,NARROWER,internet_cafe,arts_and_entertainment > internet_cafe -Eating or drinking location > Casual eatery > Candy shop,candy_shop,,,EXACT,candy_store,retail > food > candy_store -Eating or drinking location > Casual eatery > Candy shop,candy_shop,,,NARROWER,chocolatier,retail > food > chocolatier -Eating or drinking location > Casual eatery > Candy shop,candy_shop,,,NARROWER,indian_sweets_shop,retail > food > specialty_foods > indian_sweets_shop -Eating or drinking location > Casual eatery > Candy shop,candy_shop,,,NARROWER,japanese_confectionery_shop,retail > food > candy_store > japanese_confectionery_shop -Eating or drinking location > Casual eatery > Deli,deli,,,EXACT,delicatessen,retail > food > specialty_foods > delicatessen -Eating or drinking location > Casual eatery > Food court,food_court,,,EXACT,food_court,eat_and_drink > restaurant > food_court -Eating or drinking location > Casual eatery > Sandwich shop,sandwich_shop,,,EXACT,sandwich_shop,retail > food > sandwich_shop -Eating or drinking location > Restaurant,restaurant,,,NARROWER,acai_bowls,eat_and_drink > restaurant > acai_bowls -Eating or drinking location > Restaurant,restaurant,,,NARROWER,afghan_restaurant,eat_and_drink > restaurant > afghan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,african_restaurant,eat_and_drink > restaurant > african_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,american_restaurant,eat_and_drink > restaurant > american_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,arabian_restaurant,eat_and_drink > restaurant > arabian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,argentine_restaurant,eat_and_drink > restaurant > latin_american_restaurant > argentine_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,armenian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,asian_fusion_restaurant,eat_and_drink > restaurant > asian_restaurant > asian_fusion_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,asian_restaurant,eat_and_drink > restaurant > asian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,australian_restaurant,eat_and_drink > restaurant > australian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,austrian_restaurant,eat_and_drink > restaurant > austrian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,azerbaijani_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,bangladeshi_restaurant,eat_and_drink > restaurant > bangladeshi_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,baozi_restaurant,eat_and_drink > restaurant > baozi_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,barbecue_restaurant,eat_and_drink > restaurant > barbecue_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,basque_restaurant,eat_and_drink > restaurant > basque_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,belarusian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > belarusian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,belgian_restaurant,eat_and_drink > restaurant > belgian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,belizean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > belizean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,bolivian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > bolivian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,brazilian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > brazilian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,british_restaurant,eat_and_drink > restaurant > british_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,bulgarian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > bulgarian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,burger_restaurant,eat_and_drink > restaurant > burger_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,burmese_restaurant,eat_and_drink > restaurant > asian_restaurant > burmese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,cafeteria,eat_and_drink > restaurant > cafeteria -Eating or drinking location > Restaurant,restaurant,,,NARROWER,cajun_and_creole_restaurant,eat_and_drink > restaurant > cajun_and_creole_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,cambodian_restaurant,eat_and_drink > restaurant > asian_restaurant > cambodian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,canadian_restaurant,eat_and_drink > restaurant > canadian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,canteen,eat_and_drink > restaurant > canteen -Eating or drinking location > Restaurant,restaurant,,,NARROWER,caribbean_restaurant,eat_and_drink > restaurant > caribbean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,catalan_restaurant,eat_and_drink > restaurant > catalan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,cheesesteak_restaurant,eat_and_drink > restaurant > cheesesteak_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,chilean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > chilean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > chinese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,colombian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > colombian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,comfort_food_restaurant,eat_and_drink > restaurant > comfort_food_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,costa_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > costa_rican_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,cuban_restaurant,eat_and_drink > restaurant > latin_american_restaurant > cuban_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,curry_sausage_restaurant,eat_and_drink > restaurant > curry_sausage_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,czech_restaurant,eat_and_drink > restaurant > czech_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,danish_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > danish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,dim_sum_restaurant,eat_and_drink > restaurant > asian_restaurant > dim_sum_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,diner,eat_and_drink > restaurant > diner -Eating or drinking location > Restaurant,restaurant,,,NARROWER,diy_foods_restaurant,eat_and_drink > restaurant > diy_foods_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,dog_meat_restaurant,eat_and_drink > restaurant > dog_meat_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,dominican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > dominican_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,doner_kebab,eat_and_drink > restaurant > doner_kebab -Eating or drinking location > Restaurant,restaurant,,,NARROWER,dumpling_restaurant,eat_and_drink > restaurant > dumpling_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,eastern_european_restaurant,eat_and_drink > restaurant > eastern_european_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,ecuadorian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > ecuadorian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,egyptian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > egyptian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,empanadas,eat_and_drink > restaurant > empanadas -Eating or drinking location > Restaurant,restaurant,,,NARROWER,ethiopian_restaurant,eat_and_drink > restaurant > african_restaurant > ethiopian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,european_restaurant,eat_and_drink > restaurant > european_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,falafel_restaurant,eat_and_drink > restaurant > falafel_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,filipino_restaurant,eat_and_drink > restaurant > asian_restaurant > filipino_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,fischbrotchen_restaurant,eat_and_drink > restaurant > fischbrotchen_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,fish_and_chips_restaurant,eat_and_drink > restaurant > fish_and_chips_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,fish_restaurant,eat_and_drink > restaurant > fish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,flatbread_restaurant,eat_and_drink > restaurant > flatbread_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,fondue_restaurant,eat_and_drink > restaurant > fondue_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,french_restaurant,eat_and_drink > restaurant > french_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,gastropub,eat_and_drink > restaurant > gastropub -Eating or drinking location > Restaurant,restaurant,,,NARROWER,georgian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,german_restaurant,eat_and_drink > restaurant > german_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,gluten_free_restaurant,eat_and_drink > restaurant > gluten_free_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,greek_restaurant,eat_and_drink > restaurant > mediterranean_restaurant > greek_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,guamanian_restaurant,eat_and_drink > restaurant > guamanian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,guatemalan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > guatemalan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,haitian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > haitian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,halal_restaurant,eat_and_drink > restaurant > halal_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,haute_cuisine_restaurant,eat_and_drink > restaurant > haute_cuisine_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,hawaiian_restaurant,eat_and_drink > restaurant > hawaiian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,health_food_restaurant,eat_and_drink > restaurant > health_food_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,himalayan_nepalese_restaurant,eat_and_drink > restaurant > himalayan_nepalese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,honduran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > honduran_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,hong_kong_style_cafe,eat_and_drink > restaurant > asian_restaurant > hong_kong_style_cafe -Eating or drinking location > Restaurant,restaurant,,,NARROWER,hot_dog_restaurant,eat_and_drink > restaurant > hot_dog_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,hungarian_restaurant,eat_and_drink > restaurant > hungarian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,iberian_restaurant,eat_and_drink > restaurant > iberian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,indian_restaurant,eat_and_drink > restaurant > indian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,indo_chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > indo_chinese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,indonesian_restaurant,eat_and_drink > restaurant > asian_restaurant > indonesian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,international_restaurant,eat_and_drink > restaurant > international_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,irish_restaurant,eat_and_drink > restaurant > irish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,israeli_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,italian_restaurant,eat_and_drink > restaurant > italian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,jamaican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > jamaican_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,japanese_restaurant,eat_and_drink > restaurant > asian_restaurant > japanese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,jewish_restaurant,eat_and_drink > restaurant > jewish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,kofta_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,korean_restaurant,eat_and_drink > restaurant > asian_restaurant > korean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,kosher_restaurant,eat_and_drink > restaurant > kosher_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,kurdish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,laotian_restaurant,eat_and_drink > restaurant > asian_restaurant > laotian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,latin_american_restaurant,eat_and_drink > restaurant > latin_american_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,lebanese_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,live_and_raw_food_restaurant,eat_and_drink > restaurant > live_and_raw_food_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,malaysian_restaurant,eat_and_drink > restaurant > asian_restaurant > malaysian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,meat_restaurant,eat_and_drink > restaurant > meat_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,meatball_restaurant,eat_and_drink > restaurant > meatball_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,mediterranean_restaurant,eat_and_drink > restaurant > mediterranean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,mexican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > mexican_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,middle_eastern_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,molecular_gastronomy_restaurant,eat_and_drink > restaurant > molecular_gastronomy_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,mongolian_restaurant,eat_and_drink > restaurant > asian_restaurant > mongolian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,moroccan_restaurant,eat_and_drink > restaurant > african_restaurant > moroccan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,nasi_restaurant,eat_and_drink > restaurant > nasi_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,nicaraguan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > nicaraguan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,nigerian_restaurant,eat_and_drink > restaurant > african_restaurant > nigerian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,noodles_restaurant,eat_and_drink > restaurant > asian_restaurant > noodles_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,norwegian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > norwegian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,oriental_restaurant,eat_and_drink > restaurant > oriental_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,pakistani_restaurant,eat_and_drink > restaurant > pakistani_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,pan_asian_restaurant,eat_and_drink > restaurant > asian_restaurant > pan_asian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,panamanian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > panamanian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,pancake_house,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house -Eating or drinking location > Restaurant,restaurant,,,NARROWER,paraguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > paraguayan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,persian_iranian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > persian_iranian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,peruvian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > peruvian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,piadina_restaurant,eat_and_drink > restaurant > piadina_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,pigs_trotters_restaurant,eat_and_drink > restaurant > pigs_trotters_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,poke_restaurant,eat_and_drink > restaurant > poke_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,polish_restaurant,eat_and_drink > restaurant > polish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,polynesian_restaurant,eat_and_drink > restaurant > polynesian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,pop_up_restaurant,eat_and_drink > restaurant > pop_up_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,portuguese_restaurant,eat_and_drink > restaurant > portuguese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,potato_restaurant,eat_and_drink > restaurant > potato_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,poutinerie_restaurant,eat_and_drink > restaurant > poutinerie_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,puerto_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > puerto_rican_restaurant -Eating or drinking location > Restaurant,restaurant,,,EXACT,restaurant,eat_and_drink > restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,romanian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > romanian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,rotisserie_chicken_restaurant,eat_and_drink > restaurant > rotisserie_chicken_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,russian_restaurant,eat_and_drink > restaurant > russian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,salad_bar,eat_and_drink > restaurant > salad_bar -Eating or drinking location > Restaurant,restaurant,,,NARROWER,salvadoran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > salvadoran_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,scandinavian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,schnitzel_restaurant,eat_and_drink > restaurant > schnitzel_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,scottish_restaurant,eat_and_drink > restaurant > scottish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,seafood_restaurant,eat_and_drink > restaurant > seafood_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,senegalese_restaurant,eat_and_drink > restaurant > african_restaurant > senegalese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,serbo_croatian_restaurant,eat_and_drink > restaurant > serbo_croatian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,singaporean_restaurant,eat_and_drink > restaurant > asian_restaurant > singaporean_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,slovakian_restaurant,eat_and_drink > restaurant > slovakian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,soul_food,eat_and_drink > restaurant > soul_food -Eating or drinking location > Restaurant,restaurant,,,NARROWER,soup_restaurant,eat_and_drink > restaurant > soup_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,south_african_restaurant,eat_and_drink > restaurant > african_restaurant > south_african_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,southern_restaurant,eat_and_drink > restaurant > southern_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,spanish_restaurant,eat_and_drink > restaurant > spanish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,sri_lankan_restaurant,eat_and_drink > restaurant > sri_lankan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,steakhouse,eat_and_drink > restaurant > steakhouse -Eating or drinking location > Restaurant,restaurant,,,NARROWER,supper_club,eat_and_drink > restaurant > supper_club -Eating or drinking location > Restaurant,restaurant,,,NARROWER,sushi_restaurant,eat_and_drink > restaurant > asian_restaurant > sushi_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,swiss_restaurant,eat_and_drink > restaurant > swiss_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,syrian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,taco_restaurant,eat_and_drink > restaurant > taco_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,taiwanese_restaurant,eat_and_drink > restaurant > asian_restaurant > taiwanese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,tapas_bar,eat_and_drink > restaurant > tapas_bar -Eating or drinking location > Restaurant,restaurant,,,NARROWER,tatar_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > tatar_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,texmex_restaurant,eat_and_drink > restaurant > latin_american_restaurant > texmex_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,thai_restaurant,eat_and_drink > restaurant > asian_restaurant > thai_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,theme_restaurant,eat_and_drink > restaurant > theme_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,trinidadian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > trinidadian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,turkish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,ukrainian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > ukrainian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,uruguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > uruguayan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,uzbek_restaurant,eat_and_drink > restaurant > uzbek_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,vegan_restaurant,eat_and_drink > restaurant > vegan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,vegetarian_restaurant,eat_and_drink > restaurant > vegetarian_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,venezuelan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > venezuelan_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,venison_restaurant,eat_and_drink > restaurant > venison_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,vietnamese_restaurant,eat_and_drink > restaurant > asian_restaurant > vietnamese_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,waffle_restaurant,eat_and_drink > restaurant > waffle_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,wild_game_meats_restaurant,eat_and_drink > restaurant > wild_game_meats_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,wok_restaurant,eat_and_drink > restaurant > wok_restaurant -Eating or drinking location > Restaurant,restaurant,,,NARROWER,wrap_restaurant,eat_and_drink > restaurant > wrap_restaurant -Eating or drinking location > Restaurant > Bar and grill,bar_and_grill,,,EXACT,bar_and_grill_restaurant,eat_and_drink > restaurant > bar_and_grill_restaurant -Eating or drinking location > Restaurant > Breakfast restaurant,breakfast_restaurant,,,CLOSE,breakfast_and_brunch_restaurant,eat_and_drink > restaurant > breakfast_and_brunch_restaurant -Eating or drinking location > Restaurant > Buffet restaurant,buffet_restaurant,,,EXACT,buffet_restaurant,eat_and_drink > restaurant > buffet_restaurant -Eating or drinking location > Restaurant > Chicken restaurant,chicken_restaurant,,,EXACT,chicken_restaurant,eat_and_drink > restaurant > chicken_restaurant -Eating or drinking location > Restaurant > Chicken restaurant,chicken_restaurant,,,NARROWER,chicken_wings_restaurant,eat_and_drink > restaurant > chicken_wings_restaurant -Eating or drinking location > Restaurant > Fast food restaurant,fast_food_restaurant,,,EXACT,fast_food_restaurant,eat_and_drink > restaurant > fast_food_restaurant -Eating or drinking location > Restaurant > Pizzaria,pizzaria,,,NARROWER,pizza_delivery_service,retail > food > food_delivery_service > pizza_delivery_service -Eating or drinking location > Restaurant > Pizzaria,pizzaria,,,EXACT,pizza_restaurant,eat_and_drink > restaurant > pizza_restaurant -Eating or drinking location > Winery,winery,,,NARROWER,wine_tasting_room,retail > food > winery > wine_tasting_room -Eating or drinking location > Winery,winery,,,EXACT,winery,retail > food > winery -Entertainment location,entertainment_location,,,NARROWER,adult_entertainment,arts_and_entertainment > adult_entertainment -Entertainment location,entertainment_location,,,CLOSE,arts_and_entertainment,arts_and_entertainment -Entertainment location,entertainment_location,,,NARROWER,attractions_and_activities,attractions_and_activities -Entertainment location,entertainment_location,,,NARROWER,axe_throwing,attractions_and_activities > axe_throwing -Entertainment location,entertainment_location,,,NARROWER,carousel,arts_and_entertainment > carousel -Entertainment location,entertainment_location,,,NARROWER,chamber_of_handicraft,arts_and_entertainment > chamber_of_handicraft -Entertainment location,entertainment_location,,,NARROWER,country_dance_hall,arts_and_entertainment > country_dance_hall -Entertainment location,entertainment_location,,,NARROWER,cultural_center,attractions_and_activities > cultural_center -Entertainment location,entertainment_location,,,NARROWER,eatertainment,arts_and_entertainment > eatertainment -Entertainment location,entertainment_location,,,NARROWER,erotic_massage,arts_and_entertainment > adult_entertainment > erotic_massage -Entertainment location,entertainment_location,,,NARROWER,glass_blowing,arts_and_entertainment > glass_blowing -Entertainment location,entertainment_location,,,NARROWER,haunted_house,attractions_and_activities > haunted_house -Entertainment location,entertainment_location,,,NARROWER,indoor_playcenter,arts_and_entertainment > indoor_playcenter -Entertainment location,entertainment_location,,,NARROWER,laser_tag,arts_and_entertainment > laser_tag -Entertainment location,entertainment_location,,,NARROWER,observatory,attractions_and_activities > observatory -Entertainment location,entertainment_location,,,NARROWER,paint_and_sip,arts_and_entertainment > paint_and_sip -Entertainment location,entertainment_location,,,NARROWER,paintball,arts_and_entertainment > paintball -Entertainment location,entertainment_location,,,NARROWER,planetarium,arts_and_entertainment > planetarium -Entertainment location,entertainment_location,,,NARROWER,rodeo,arts_and_entertainment > rodeo -Entertainment location,entertainment_location,,,NARROWER,strip_club,arts_and_entertainment > adult_entertainment > strip_club -Entertainment location,entertainment_location,,,NARROWER,striptease_dancer,arts_and_entertainment > adult_entertainment > striptease_dancer -Entertainment location,entertainment_location,,,NARROWER,studio_taping,arts_and_entertainment > studio_taping -Entertainment location,entertainment_location,,,NARROWER,ticket_sales,arts_and_entertainment > ticket_sales -Entertainment location,entertainment_location,,,NARROWER,virtual_reality_center,arts_and_entertainment > virtual_reality_center -Entertainment location > Animal attraction > Aquarium,aquarium,,,EXACT,aquarium,attractions_and_activities > aquarium -Entertainment location > Animal attraction > Wildlife sanctuary,wildlife_sanctuary,,,EXACT,wildlife_sanctuary,arts_and_entertainment > wildlife_sanctuary -Entertainment location > Animal attraction > Zoo,zoo,,,NARROWER,petting_zoo,attractions_and_activities > zoo > petting_zoo -Entertainment location > Animal attraction > Zoo,zoo,,,EXACT,zoo,attractions_and_activities > zoo -Entertainment location > Artspace,Artspace,,,NARROWER,art_space_rental,real_estate > art_space_rental -Entertainment location > Artspace > Art gallery,art_gallery,,,EXACT,art_gallery,attractions_and_activities > art_gallery -Entertainment location > Artspace > Statue or sculpture,statue_sculpture,,,EXACT,sculpture_statue,attractions_and_activities > sculpture_statue -Entertainment location > Artspace > Street art,street_art,,,EXACT,street_art,attractions_and_activities > street_art -Entertainment location > Dance club,dance_club,,,EXACT,dance_club,arts_and_entertainment > dance_club -Entertainment location > Dance club,dance_club,,,NARROWER,salsa_club,arts_and_entertainment > salsa_club -Entertainment location > Event space,event_space,,,NARROWER,exhibition_and_trade_center,arts_and_entertainment > exhibition_and_trade_center -Entertainment location > Event space,event_space,,,NARROWER,trade_fair,arts_and_entertainment > festival > trade_fair -Entertainment location > Event space,event_space,,,EXACT,venue_and_event_space,professional_services > event_planning > venue_and_event_space -Entertainment location > Festival venue,festival_venue,,,CLOSE,festival,arts_and_entertainment > festival -Entertainment location > Festival venue,festival_venue,,,NARROWER,film_festivals_and_organizations,arts_and_entertainment > festival > film_festivals_and_organizations -Entertainment location > Festival venue,festival_venue,,,NARROWER,general_festivals,arts_and_entertainment > festival > general_festivals -Entertainment location > Festival venue,festival_venue,,,NARROWER,holiday_market,arts_and_entertainment > festival > holiday_market -Entertainment location > Festival venue,festival_venue,,,NARROWER,music_festivals_and_organizations,arts_and_entertainment > festival > music_festivals_and_organizations -Entertainment location > Festival venue > Fairgrounds,fairgrounds,,,CLOSE,fair,arts_and_entertainment > festival > fair -Entertainment location > Gaming venue,gaming_venue,,,NARROWER,betting_center,arts_and_entertainment > betting_center -Entertainment location > Gaming venue,gaming_venue,,,NARROWER,bookmakers,arts_and_entertainment > bookmakers -Entertainment location > Gaming venue > Arcade,arcade,,,EXACT,arcade,arts_and_entertainment > arcade -Entertainment location > Gaming venue > Bingo hall,bingo_hall,,,EXACT,bingo_hall,arts_and_entertainment > bingo_hall -Entertainment location > Gaming venue > Casino,casino,,,EXACT,casino,arts_and_entertainment > casino -Entertainment location > Gaming venue > Escape room,escape_room,,,EXACT,escape_rooms,arts_and_entertainment > escape_rooms -Entertainment location > Historic site,historic_site,,,NARROWER,architecture,attractions_and_activities > architecture -Entertainment location > Historic site,historic_site,,,NARROWER,landmark_and_historical_building,attractions_and_activities > landmark_and_historical_building -Entertainment location > Historic site,historic_site,,,NARROWER,lookout,attractions_and_activities > lookout -Entertainment location > Historic site,historic_site,,,NARROWER,palace,attractions_and_activities > palace -Entertainment location > Historic site,historic_site,,,NARROWER,ruin,attractions_and_activities > ruin -Entertainment location > Historic site > Castle,castle,,,EXACT,castle,attractions_and_activities > castle -Entertainment location > Historic site > Fort,fort,,,EXACT,fort,attractions_and_activities > fort -Entertainment location > Historic site > Lighthouse,lighthouse,,,EXACT,lighthouse,attractions_and_activities > lighthouse -Entertainment location > Makerspace,makerspace,,,EXACT,makerspace,arts_and_entertainment > makerspace -Entertainment location > Movie theater,movie_theater,,,EXACT,cinema,arts_and_entertainment > cinema -Entertainment location > Movie theater,movie_theater,,,NARROWER,drive_in_theater,arts_and_entertainment > cinema > drive_in_theater -Entertainment location > Movie theater,movie_theater,,,NARROWER,outdoor_movies,arts_and_entertainment > cinema > outdoor_movies -Entertainment location > Museum,museum,,,NARROWER,civilization_museum,attractions_and_activities > museum > history_museum > civilization_museum -Entertainment location > Museum,museum,,,NARROWER,community_museum,attractions_and_activities > museum > history_museum > community_museum -Entertainment location > Museum,museum,,,NARROWER,military_museum,attractions_and_activities > museum > military_museum -Entertainment location > Museum,museum,,,EXACT,museum,attractions_and_activities > museum -Entertainment location > Museum,museum,,,NARROWER,national_museum,attractions_and_activities > museum > national_museum -Entertainment location > Museum,museum,,,NARROWER,sports_museum,attractions_and_activities > museum > sports_museum -Entertainment location > Museum,museum,,,NARROWER,state_museum,attractions_and_activities > museum > state_museum -Entertainment location > Museum > Art museum,art_museum,,,EXACT,art_museum,attractions_and_activities > museum > art_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,asian_art_museum,attractions_and_activities > museum > art_museum > asian_art_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,cartooning_museum,attractions_and_activities > museum > art_museum > cartooning_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,contemporary_art_museum,attractions_and_activities > museum > art_museum > contemporary_art_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,costume_museum,attractions_and_activities > museum > art_museum > costume_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,decorative_arts_museum,attractions_and_activities > museum > art_museum > decorative_arts_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,design_museum,attractions_and_activities > museum > art_museum > design_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,modern_art_museum,attractions_and_activities > museum > art_museum > modern_art_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,photography_museum,attractions_and_activities > museum > art_museum > photography_museum -Entertainment location > Museum > Art museum,art_museum,,,NARROWER,textile_museum,attractions_and_activities > museum > art_museum > textile_museum -Entertainment location > Museum > Childrens museum,childrens_museum,,,EXACT,childrens_museum,attractions_and_activities > museum > childrens_museum -Entertainment location > Museum > History museum,history_museum,,,EXACT,history_museum,attractions_and_activities > museum > history_museum -Entertainment location > Museum > Science museum,science_museum,,,NARROWER,aviation_museum,attractions_and_activities > museum > aviation_museum -Entertainment location > Museum > Science museum,science_museum,,,NARROWER,computer_museum,attractions_and_activities > museum > science_museum > computer_museum -Entertainment location > Museum > Science museum,science_museum,,,EXACT,science_museum,attractions_and_activities > museum > science_museum -Entertainment location > Performing arts venue,performing_arts_venue,,,CLOSE,auditorium,arts_and_entertainment > auditorium -Entertainment location > Performing arts venue,performing_arts_venue,,,NARROWER,cabaret,arts_and_entertainment > cabaret -Entertainment location > Performing arts venue,performing_arts_venue,,,NARROWER,circus,arts_and_entertainment > circus -Entertainment location > Performing arts venue,performing_arts_venue,,,NARROWER,dinner_theater,arts_and_entertainment > dinner_theater -Entertainment location > Performing arts venue,performing_arts_venue,,,NARROWER,opera_and_ballet,arts_and_entertainment > opera_and_ballet -Entertainment location > Performing arts venue,performing_arts_venue,,,CLOSE,performing_arts,arts_and_entertainment > performing_arts -Entertainment location > Performing arts venue,performing_arts_venue,,,CLOSE,theaters_and_performance_venues,arts_and_entertainment > theaters_and_performance_venues -Entertainment location > Performing arts venue > Comedy club,comedy_club,,,EXACT,comedy_club,arts_and_entertainment > comedy_club -Entertainment location > Performing arts venue > Music venue,music_venue,,,NARROWER,choir,arts_and_entertainment > choir -Entertainment location > Performing arts venue > Music venue,music_venue,,,NARROWER,jazz_and_blues,arts_and_entertainment > jazz_and_blues -Entertainment location > Performing arts venue > Music venue,music_venue,,,NARROWER,karaoke,arts_and_entertainment > karaoke -Entertainment location > Performing arts venue > Music venue,music_venue,,,NARROWER,marching_band,arts_and_entertainment > marching_band -Entertainment location > Performing arts venue > Music venue,music_venue,,,EXACT,music_venue,arts_and_entertainment > music_venue -Entertainment location > Performing arts venue > Music venue,music_venue,,,CLOSE,musical_band_orchestras_and_symphonies,arts_and_entertainment > musical_band_orchestras_and_symphonies -Entertainment location > Performing arts venue > Music venue,music_venue,,,CLOSE,topic_concert_venue,arts_and_entertainment > topic_concert_venue -Entertainment location > Performing arts venue > Theatre venue,threatre_venue,,,EXACT,theatre,arts_and_entertainment > theaters_and_performance_venues > theatre -Entertainment location > Performing arts venue > Theatre venue,threatre_venue,,,NARROWER,theatrical_productions,mass_media > theatrical_productions -Entertainment location > Social club,social_club,,,NARROWER,bar_crawl,arts_and_entertainment > bar_crawl -Entertainment location > Social club,social_club,,,NARROWER,club_crawl,arts_and_entertainment > club_crawl -Entertainment location > Social club,social_club,,,NARROWER,fraternal_organization,arts_and_entertainment > social_club > fraternal_organization -Entertainment location > Social club,social_club,,,EXACT,social_club,arts_and_entertainment > social_club -Entertainment location > Social club,social_club,,,NARROWER,veterans_organization,arts_and_entertainment > social_club > veterans_organization -Entertainment location > Social club > Country club,country_club,,,EXACT,country_club,arts_and_entertainment > country_club -Entertainment location > Spiritual advising,spiritual_advising,,,NARROWER,mystic,arts_and_entertainment > supernatural_reading > mystic -Entertainment location > Spiritual advising,spiritual_advising,,,CLOSE,supernatural_reading,arts_and_entertainment > supernatural_reading -Entertainment location > Spiritual advising > Astrological advising,astrological_advising,,,EXACT,astrologer,arts_and_entertainment > supernatural_reading > astrologer -Entertainment location > Spiritual advising > Psychic advising,psychic_advising,,,EXACT,psychic,arts_and_entertainment > supernatural_reading > psychic -Entertainment location > Spiritual advising > Psychic advising,psychic_advising,,,EXACT,psychic_medium,arts_and_entertainment > supernatural_reading > psychic_medium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,baseball_stadium,arts_and_entertainment > stadium_arena > baseball_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,basketball_stadium,arts_and_entertainment > stadium_arena > basketball_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,cricket_ground,arts_and_entertainment > stadium_arena > cricket_ground -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,football_stadium,arts_and_entertainment > stadium_arena > football_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,hockey_arena,arts_and_entertainment > stadium_arena > hockey_arena -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,rugby_stadium,arts_and_entertainment > stadium_arena > rugby_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,soccer_stadium,arts_and_entertainment > stadium_arena > soccer_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,CLOSE,stadium_arena,arts_and_entertainment > stadium_arena -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,tennis_stadium,arts_and_entertainment > stadium_arena > tennis_stadium -Entertainment location > Sport entertainment venue > Sport stadium,sport_stadium,,,NARROWER,track_stadium,arts_and_entertainment > stadium_arena > track_stadium -Healthcare location,healthcare_location,,,NARROWER,anesthesiologist,health_and_medical > doctor > anesthesiologist -Healthcare location,healthcare_location,,,NARROWER,audiologist,health_and_medical > doctor > audiologist -Healthcare location,healthcare_location,,,NARROWER,bulk_billing,health_and_medical > medical_center > bulk_billing -Healthcare location,healthcare_location,,,NARROWER,cryotherapy,health_and_medical > cryotherapy -Healthcare location,healthcare_location,,,NARROWER,dermatologist,health_and_medical > doctor > dermatologist -Healthcare location,healthcare_location,,,NARROWER,doula,health_and_medical > doula -Healthcare location,healthcare_location,,,NARROWER,ear_nose_and_throat,health_and_medical > doctor > ear_nose_and_throat -Healthcare location,healthcare_location,,,NARROWER,emergency_medicine,health_and_medical > doctor > emergency_medicine -Healthcare location,healthcare_location,,,NARROWER,ems_training,active_life > sports_and_fitness_instruction > ems_training -Healthcare location,healthcare_location,,,NARROWER,endoscopist,health_and_medical > doctor > endoscopist -Healthcare location,healthcare_location,,,NARROWER,environmental_medicine,health_and_medical > environmental_medicine -Healthcare location,healthcare_location,,,NARROWER,fertility,health_and_medical > doctor > fertility -Healthcare location,healthcare_location,,,NARROWER,geneticist,health_and_medical > doctor > geneticist -Healthcare location,healthcare_location,,,NARROWER,geriatric_medicine,health_and_medical > doctor > geriatric_medicine -Healthcare location,healthcare_location,,,NARROWER,gerontologist,health_and_medical > doctor > gerontologist -Healthcare location,healthcare_location,,,NARROWER,halotherapy,health_and_medical > halotherapy -Healthcare location,healthcare_location,,,CLOSE,health_and_medical,health_and_medical -Healthcare location,healthcare_location,,,NARROWER,health_coach,health_and_medical > health_coach -Healthcare location,healthcare_location,,,NARROWER,hepatologist,health_and_medical > doctor > hepatologist -Healthcare location,healthcare_location,,,NARROWER,home_health_care,health_and_medical > personal_care_service > home_health_care -Healthcare location,healthcare_location,,,NARROWER,hospice,health_and_medical > hospice -Healthcare location,healthcare_location,,,NARROWER,hospitalist,health_and_medical > doctor > hospitalist -Healthcare location,healthcare_location,,,NARROWER,hydrotherapy,health_and_medical > hydrotherapy -Healthcare location,healthcare_location,,,NARROWER,hypnosis_hypnotherapy,health_and_medical > hypnosis_hypnotherapy -Healthcare location,healthcare_location,,,NARROWER,infectious_disease_specialist,health_and_medical > doctor > infectious_disease_specialist -Healthcare location,healthcare_location,,,NARROWER,iv_hydration,health_and_medical > iv_hydration -Healthcare location,healthcare_location,,,NARROWER,lactation_services,health_and_medical > lactation_services -Healthcare location,healthcare_location,,,NARROWER,lice_treatment,health_and_medical > lice_treatment -Healthcare location,healthcare_location,,,NARROWER,maternity_centers,health_and_medical > maternity_centers -Healthcare location,healthcare_location,,,NARROWER,medical_cannabis_referral,health_and_medical > medical_cannabis_referral -Healthcare location,healthcare_location,,,NARROWER,medical_center,health_and_medical > medical_center -Healthcare location,healthcare_location,,,NARROWER,medical_service_organizations,health_and_medical > medical_service_organizations -Healthcare location,healthcare_location,,,NARROWER,medical_transportation,health_and_medical > medical_transportation -Healthcare location,healthcare_location,,,NARROWER,memory_care,health_and_medical > memory_care -Healthcare location,healthcare_location,,,NARROWER,midwife,health_and_medical > midwife -Healthcare location,healthcare_location,,,NARROWER,nurse_practitioner,health_and_medical > nurse_practitioner -Healthcare location,healthcare_location,,,NARROWER,nutritionist,health_and_medical > nutritionist -Healthcare location,healthcare_location,,,NARROWER,obstetrician_and_gynecologist,health_and_medical > doctor > obstetrician_and_gynecologist -Healthcare location,healthcare_location,,,NARROWER,occupational_medicine,health_and_medical > occupational_medicine -Healthcare location,healthcare_location,,,NARROWER,occupational_therapy,health_and_medical > occupational_therapy -Healthcare location,healthcare_location,,,NARROWER,organ_and_tissue_donor_service,health_and_medical > organ_and_tissue_donor_service -Healthcare location,healthcare_location,,,NARROWER,orthopedist,health_and_medical > doctor > orthopedist -Healthcare location,healthcare_location,,,NARROWER,orthotics,health_and_medical > orthotics -Healthcare location,healthcare_location,,,NARROWER,osteopath,health_and_medical > medical_center > osteopath -Healthcare location,healthcare_location,,,NARROWER,osteopathic_physician,health_and_medical > doctor > osteopathic_physician -Healthcare location,healthcare_location,,,NARROWER,otologist,health_and_medical > doctor > otologist -Healthcare location,healthcare_location,,,NARROWER,oxygen_bar,health_and_medical > oxygen_bar -Healthcare location,healthcare_location,,,NARROWER,pain_management,health_and_medical > doctor > pain_management -Healthcare location,healthcare_location,,,NARROWER,paternity_tests_and_services,health_and_medical > paternity_tests_and_services -Healthcare location,healthcare_location,,,NARROWER,pathologist,health_and_medical > doctor > pathologist -Healthcare location,healthcare_location,,,NARROWER,phlebologist,health_and_medical > doctor > phlebologist -Healthcare location,healthcare_location,,,NARROWER,physician_assistant,health_and_medical > doctor > physician_assistant -Healthcare location,healthcare_location,,,NARROWER,placenta_encapsulation_service,health_and_medical > placenta_encapsulation_service -Healthcare location,healthcare_location,,,NARROWER,podiatrist,health_and_medical > doctor > podiatrist -Healthcare location,healthcare_location,,,NARROWER,podiatry,health_and_medical > podiatry -Healthcare location,healthcare_location,,,NARROWER,prenatal_perinatal_care,health_and_medical > prenatal_perinatal_care -Healthcare location,healthcare_location,,,NARROWER,preventive_medicine,health_and_medical > doctor > preventive_medicine -Healthcare location,healthcare_location,,,NARROWER,proctologist,health_and_medical > doctor > proctologist -Healthcare location,healthcare_location,,,NARROWER,prosthetics,health_and_medical > prosthetics -Healthcare location,healthcare_location,,,NARROWER,prosthodontist,health_and_medical > prosthodontist -Healthcare location,healthcare_location,,,NARROWER,psychomotor_therapist,health_and_medical > psychomotor_therapist -Healthcare location,healthcare_location,,,NARROWER,radiologist,health_and_medical > doctor > radiologist -Healthcare location,healthcare_location,,,NARROWER,skilled_nursing,health_and_medical > skilled_nursing -Healthcare location,healthcare_location,,,NARROWER,sleep_specialist,health_and_medical > sleep_specialist -Healthcare location,healthcare_location,,,NARROWER,speech_therapist,health_and_medical > speech_therapist -Healthcare location,healthcare_location,,,NARROWER,tattoo_removal,health_and_medical > doctor > tattoo_removal -Healthcare location,healthcare_location,,,NARROWER,toxicologist,health_and_medical > doctor > toxicologist -Healthcare location,healthcare_location,,,NARROWER,tropical_medicine,health_and_medical > doctor > tropical_medicine -Healthcare location,healthcare_location,,,NARROWER,undersea_hyperbaric_medicine,health_and_medical > doctor > undersea_hyperbaric_medicine -Healthcare location,healthcare_location,,,NARROWER,urologist,health_and_medical > doctor > urologist -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,acupuncture,health_and_medical > acupuncture -Healthcare location > Alternative medicine,alternative_medicine,,,EXACT,alternative_medicine,health_and_medical > alternative_medicine -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,ayurveda,health_and_medical > ayurveda -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,chiropractor,health_and_medical > chiropractor -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,homeopathic_medicine,health_and_medical > doctor > homeopathic_medicine -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,naturopathic_holistic,health_and_medical > doctor > naturopathic_holistic -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,reflexology,health_and_medical > reflexology -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,reiki,health_and_medical > reiki -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,traditional_chinese_medicine,health_and_medical > traditional_chinese_medicine -Healthcare location > Alternative medicine,alternative_medicine,,,NARROWER,tui_na,health_and_medical > traditional_chinese_medicine > tui_na -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,abortion_clinic,health_and_medical > abortion_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,abuse_and_addiction_treatment,health_and_medical > abuse_and_addiction_treatment -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,addiction_rehabilitation_center,health_and_medical > rehabilitation_center > addiction_rehabilitation_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,alcohol_and_drug_treatment_center,health_and_medical > alcohol_and_drug_treatment_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,alcohol_and_drug_treatment_centers,health_and_medical > abuse_and_addiction_treatment > alcohol_and_drug_treatment_centers -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,blood_and_plasma_donation_center,health_and_medical > blood_and_plasma_donation_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,cancer_treatment_center,health_and_medical > cancer_treatment_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,cannabis_clinic,health_and_medical > cannabis_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,cannabis_collective,health_and_medical > cannabis_collective -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,colonics,health_and_medical > colonics -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,community_health_center,health_and_medical > community_health_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,concierge_medicine,health_and_medical > concierge_medicine -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,crisis_intervention_services,health_and_medical > abuse_and_addiction_treatment > crisis_intervention_services -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,dialysis_clinic,health_and_medical > dialysis_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,eating_disorder_treatment_centers,health_and_medical > abuse_and_addiction_treatment > eating_disorder_treatment_centers -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,mobile_clinic,health_and_medical > dental_hygienist > mobile_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,public_health_clinic,health_and_medical > public_health_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,rehabilitation_center,health_and_medical > rehabilitation_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,sperm_clinic,health_and_medical > sperm_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,storefront_clinic,health_and_medical > dental_hygienist > storefront_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,urgent_care_clinic,health_and_medical > urgent_care_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,walk_in_clinic,health_and_medical > medical_center > walk_in_clinic -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,weight_loss_center,health_and_medical > weight_loss_center -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,wellness_program,health_and_medical > wellness_program -Healthcare location > Clinic or treatment center,clinic_or_treatment_center,,,NARROWER,womens_health_clinic,health_and_medical > womens_health_clinic -Healthcare location > Dental care,dental_care,,,NARROWER,cosmetic_dentist,health_and_medical > dentist > cosmetic_dentist -Healthcare location > Dental care,dental_care,,,NARROWER,endodontist,health_and_medical > dentist > endodontist -Healthcare location > Dental care,dental_care,,,NARROWER,oral_surgeon,health_and_medical > dentist > oral_surgeon -Healthcare location > Dental care,dental_care,,,NARROWER,pediatric_dentist,health_and_medical > dentist > pediatric_dentist -Healthcare location > Dental care,dental_care,,,NARROWER,periodontist,health_and_medical > dentist > periodontist -Healthcare location > Dental care > Dental hygiene,dental_hygiene,,,EXACT,dental_hygienist,health_and_medical > dental_hygienist -Healthcare location > Dental care > General dentistry,general_dentistry,,,CLOSE,dentist,health_and_medical > dentist -Healthcare location > Dental care > General dentistry,general_dentistry,,,EXACT,general_dentistry,health_and_medical > dentist > general_dentistry -Healthcare location > Dental care > Orthodontic care,orthodontic_care,,,EXACT,orthodontist,health_and_medical > dentist > orthodontist -Healthcare location > Diagnostic service,diagnostic_service,,,NARROWER,diagnostic_imaging,health_and_medical > diagnostic_services > diagnostic_imaging -Healthcare location > Diagnostic service,diagnostic_service,,,EXACT,diagnostic_services,health_and_medical > diagnostic_services -Healthcare location > Diagnostic service,diagnostic_service,,,NARROWER,laboratory_testing,health_and_medical > diagnostic_services > laboratory_testing -Healthcare location > Diagnostic service,diagnostic_service,,,NARROWER,ultrasound_imaging_center,health_and_medical > ultrasound_imaging_center -Healthcare location > Doctors office,doctors_office,,,CLOSE,doctor,health_and_medical > doctor -Healthcare location > Eye care,eye_care,,,NARROWER,eye_care_clinic,health_and_medical > eye_care_clinic -Healthcare location > Eye care,eye_care,,,NARROWER,laser_eye_surgery_lasik,health_and_medical > laser_eye_surgery_lasik -Healthcare location > Eye care,eye_care,,,NARROWER,ophthalmologist,health_and_medical > doctor > ophthalmologist -Healthcare location > Eye care,eye_care,,,NARROWER,optometrist,health_and_medical > optometrist -Healthcare location > Eye care,eye_care,,,NARROWER,retina_specialist,health_and_medical > doctor > ophthalmologist > retina_specialist -Healthcare location > Eye care > Optician,optician,,,CLOSE,eyewear_and_optician,retail > shopping > eyewear_and_optician -Healthcare location > Family Medicine,family_medicine,,,EXACT,family_practice,health_and_medical > doctor > family_practice -Healthcare location > Hospital,hospital,,,EXACT,hospital,health_and_medical > hospital -Healthcare location > Hospital > Childrens hospital,childrens_hospital,,,EXACT,childrens_hospital,health_and_medical > childrens_hospital -Healthcare location > Hospital > Emergency room,emergency_room,,,EXACT,emergency_room,health_and_medical > emergency_room -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,endocrinologist,health_and_medical > doctor > endocrinologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,gastroenterologist,health_and_medical > doctor > gastroenterologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,hematology,health_and_medical > doctor > internal_medicine > hematology -Healthcare location > Internal medicine,internal_medicine,,,EXACT,internal_medicine,health_and_medical > doctor > internal_medicine -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,nephrologist,health_and_medical > doctor > nephrologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,neurologist,health_and_medical > doctor > neurologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,neuropathologist,health_and_medical > doctor > neuropathologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,neurotologist,health_and_medical > doctor > neurotologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,oncologist,health_and_medical > doctor > oncologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,pulmonologist,health_and_medical > doctor > pulmonologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,rheumatologist,health_and_medical > doctor > rheumatologist -Healthcare location > Internal medicine,internal_medicine,,,NARROWER,vascular_medicine,health_and_medical > doctor > vascular_medicine -Healthcare location > Internal medicine > Allergy and immunology,allergy_and_immunology,,,CLOSE,allergist,health_and_medical > doctor > allergist -Healthcare location > Internal medicine > Allergy and immunology,allergy_and_immunology,,,NARROWER,immunodermatologist,health_and_medical > doctor > immunodermatologist -Healthcare location > Internal medicine > Cardiology,cardiology,,,EXACT,cardiologist,health_and_medical > doctor > cardiologist -Healthcare location > Mental health,mental_health,,,NARROWER,behavior_analyst,health_and_medical > behavior_analyst -Healthcare location > Mental health,mental_health,,,CLOSE,counseling_and_mental_health,health_and_medical > counseling_and_mental_health -Healthcare location > Mental health,mental_health,,,NARROWER,family_counselor,health_and_medical > counseling_and_mental_health > family_counselor -Healthcare location > Mental health,mental_health,,,NARROWER,health_consultant,active_life > sports_and_fitness_instruction > health_consultant -Healthcare location > Mental health,mental_health,,,NARROWER,marriage_or_relationship_counselor,health_and_medical > counseling_and_mental_health > marriage_or_relationship_counselor -Healthcare location > Mental health,mental_health,,,NARROWER,meditation_center,active_life > sports_and_fitness_instruction > meditation_center -Healthcare location > Mental health,mental_health,,,NARROWER,psychoanalyst,health_and_medical > counseling_and_mental_health > psychoanalyst -Healthcare location > Mental health,mental_health,,,NARROWER,sex_therapist,health_and_medical > counseling_and_mental_health > sex_therapist -Healthcare location > Mental health,mental_health,,,NARROWER,sophrologist,health_and_medical > counseling_and_mental_health > sophrologist -Healthcare location > Mental health,mental_health,,,NARROWER,sports_psychologist,health_and_medical > counseling_and_mental_health > sports_psychologist -Healthcare location > Mental health,mental_health,,,NARROWER,stress_management_services,health_and_medical > counseling_and_mental_health > stress_management_services -Healthcare location > Mental health,mental_health,,,NARROWER,suicide_prevention_services,health_and_medical > counseling_and_mental_health > suicide_prevention_services -Healthcare location > Mental health > Psychiatry,psychiatry,,,NARROWER,child_psychiatrist,health_and_medical > doctor > psychiatrist > child_psychiatrist -Healthcare location > Mental health > Psychiatry,psychiatry,,,NARROWER,geriatric_psychiatry,health_and_medical > doctor > geriatric_medicine > geriatric_psychiatry -Healthcare location > Mental health > Psychiatry,psychiatry,,,EXACT,psychiatrist,health_and_medical > doctor > psychiatrist -Healthcare location > Mental health > Psychology,psychology,,,EXACT,psychologist,health_and_medical > counseling_and_mental_health > psychologist -Healthcare location > Mental health > Psychotherapy,psychotherapy,,,NARROWER,animal_assisted_therapy,health_and_medical > animal_assisted_therapy -Healthcare location > Mental health > Psychotherapy,psychotherapy,,,EXACT,psychotherapist,health_and_medical > counseling_and_mental_health > psychotherapist -Healthcare location > Nutrition and dietetics,nutrition_and_dietetics,,,CLOSE,dietitian,health_and_medical > dietitian -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_anesthesiology,health_and_medical > doctor > pediatrician > pediatric_anesthesiology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_cardiology,health_and_medical > doctor > pediatrician > pediatric_cardiology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_endocrinology,health_and_medical > doctor > pediatrician > pediatric_endocrinology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_gastroenterology,health_and_medical > doctor > pediatrician > pediatric_gastroenterology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_infectious_disease,health_and_medical > doctor > pediatrician > pediatric_infectious_disease -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_nephrology,health_and_medical > doctor > pediatrician > pediatric_nephrology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_neurology,health_and_medical > doctor > pediatrician > pediatric_neurology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_oncology,health_and_medical > doctor > pediatrician > pediatric_oncology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_orthopedic_surgery,health_and_medical > doctor > pediatrician > pediatric_orthopedic_surgery -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_pulmonology,health_and_medical > doctor > pediatrician > pediatric_pulmonology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_radiology,health_and_medical > doctor > pediatrician > pediatric_radiology -Healthcare location > Pediatrics,pediatrics,,,NARROWER,pediatric_surgery,health_and_medical > doctor > pediatrician > pediatric_surgery -Healthcare location > Pediatrics,pediatrics,,,EXACT,pediatrician,health_and_medical > doctor > pediatrician -Healthcare location > Physical medicine and rehabilitation > Massage therapy,massage_therapy,,,EXACT,massage_therapy,health_and_medical > massage_therapy -Healthcare location > Physical medicine and rehabilitation > Physical therapy,physical_therapy,,,EXACT,physical_therapy,health_and_medical > physical_therapy -Healthcare location > Sports medicine,sports_medicine,,,EXACT,sports_medicine,health_and_medical > doctor > sports_medicine -Healthcare location > Surgery,surgery,,,NARROWER,spine_surgeon,health_and_medical > doctor > spine_surgeon -Healthcare location > Surgery,surgery,,,EXACT,surgeon,health_and_medical > doctor > surgeon -Healthcare location > Surgery > Cardiovascular surgery,cardiovascular_surgery,,,EXACT,cardiovascular_and_thoracic_surgeon,health_and_medical > doctor > surgeon > cardiovascular_and_thoracic_surgeon -"Healthcare location > Surgery > Plastic, reconstructive and aesthetic surgery",plastic_reconstructive_and_aesthetic_surgery,,,CLOSE,aesthetician,health_and_medical > aesthetician -"Healthcare location > Surgery > Plastic, reconstructive and aesthetic surgery",plastic_reconstructive_and_aesthetic_surgery,,,NARROWER,body_contouring,health_and_medical > body_contouring -"Healthcare location > Surgery > Plastic, reconstructive and aesthetic surgery",plastic_reconstructive_and_aesthetic_surgery,,,NARROWER,cosmetic_surgeon,health_and_medical > doctor > cosmetic_surgeon -"Healthcare location > Surgery > Plastic, reconstructive and aesthetic surgery",plastic_reconstructive_and_aesthetic_surgery,,,CLOSE,plastic_surgeon,health_and_medical > doctor > plastic_surgeon -Healthcare location > Surgery center,surgical_center,,,EXACT,surgical_center,health_and_medical > surgical_center -Infrastructure location > Agricultural area,agricultural_area,,,CLOSE,agricultural_production,business_to_business > business_to_business_services > agricultural_production -Infrastructure location > Agricultural area,agricultural_area,,,CLOSE,agriculture,business_to_business > b2b_agriculture_and_food > agriculture -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,apiaries_and_beekeepers,business_to_business > b2b_agriculture_and_food > apiaries_and_beekeepers -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,attraction_farm,arts_and_entertainment > farm > attraction_farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,b2b_dairies,business_to_business > b2b_agriculture_and_food > b2b_dairies -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,b2b_farming,business_to_business > b2b_agriculture_and_food > b2b_farming -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,b2b_farms,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,crops_production,business_to_business > b2b_agriculture_and_food > crops_production -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,dairy_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > dairy_farm -Infrastructure location > Agricultural area > Farm,farm,,,EXACT,farm,arts_and_entertainment > farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,fish_farm,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries > fish_farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,fish_farms_and_hatcheries,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,grain_production,business_to_business > b2b_agriculture_and_food > crops_production > grain_production -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,orchards_production,business_to_business > b2b_agriculture_and_food > crops_production > orchards_production -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,pick_your_own_farm,arts_and_entertainment > farm > pick_your_own_farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,pig_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > pig_farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,poultry_farm,arts_and_entertainment > farm > poultry_farm -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,poultry_farming,business_to_business > b2b_agriculture_and_food > poultry_farming -Infrastructure location > Agricultural area > Farm,farm,,,NARROWER,urban_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > urban_farm -Infrastructure location > Agricultural area > Greenhouse,greenhouse,,,EXACT,greenhouses,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouses -Infrastructure location > Agricultural area > Orchard,orchard,,,EXACT,orchard,arts_and_entertainment > farm > orchard -Infrastructure location > Agricultural area > Ranch,ranch,,,EXACT,ranch,arts_and_entertainment > farm > ranch -Infrastructure location > Communication infrastructure > Communication tower,communication_tower,,,CLOSE,tower,structure_and_geography > tower -Infrastructure location > Communication infrastructure > Communication tower,communication_tower,,,CLOSE,tower_communication_service,business_to_business > business_to_business_services > tower_communication_service -Infrastructure location > Housing,housing,TRUE,REVIEW,CLOSE,condominium,real_estate > condominium -Infrastructure location > Housing,housing,TRUE,REVIEW,NARROWER,mobile_home_dealer,real_estate > mobile_home_dealer -Infrastructure location > Housing,housing,TRUE,REVIEW,NARROWER,mobile_home_park,real_estate > mobile_home_park -Infrastructure location > Housing,housing,TRUE,REVIEW,NARROWER,university_housing,real_estate > university_housing -Infrastructure location > Industrial or commercial infrastructure,industrial_commercial_infrastructure,,,CLOSE,commercial_industrial,business_to_business > commercial_industrial -Infrastructure location > Industrial or commercial infrastructure,industrial_commercial_infrastructure,,,CLOSE,industrial_company,business_to_business > commercial_industrial > industrial_company -Infrastructure location > Industrial or commercial infrastructure,industrial_commercial_infrastructure,,,NARROWER,skyscraper,structure_and_geography > skyscraper -Infrastructure location > Residential area > Apartment building,apartment_building,,,CLOSE,apartments,real_estate > apartments -Infrastructure location > Utility or energy infrastructure,utility_energy_infrastructure,,,NARROWER,coal_and_coke,business_to_business > b2b_energy_and_mining > mining > coal_and_coke -Infrastructure location > Utility or energy infrastructure,utility_energy_infrastructure,,,CLOSE,energy_company,public_service_and_government > public_utility_company > energy_company -Infrastructure location > Utility or energy infrastructure,utility_energy_infrastructure,,,NARROWER,mining,business_to_business > b2b_energy_and_mining > mining -Infrastructure location > Utility or energy infrastructure,utility_energy_infrastructure,,,NARROWER,quarries,business_to_business > b2b_energy_and_mining > mining > quarries -Infrastructure location > Utility or energy infrastructure,utility_energy_infrastructure,,,NARROWER,wind_energy,professional_services > construction_services > wind_energy -Infrastructure location > Utility or energy infrastructure > Oil or gas facility,oil_or_gas_facility,,,NARROWER,b2b_oil_and_gas_extraction_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > b2b_oil_and_gas_extraction_and_services -Infrastructure location > Utility or energy infrastructure > Oil or gas facility,oil_or_gas_facility,,,EXACT,oil_and_gas,business_to_business > b2b_energy_and_mining > oil_and_gas -Infrastructure location > Utility or energy infrastructure > Oil or gas facility,oil_or_gas_facility,,,NARROWER,oil_and_gas_exploration_and_development,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_exploration_and_development -Infrastructure location > Utility or energy infrastructure > Oil or gas facility,oil_or_gas_facility,,,NARROWER,oil_and_gas_field_equipment_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_field_equipment_and_services -Infrastructure location > Utility or energy infrastructure > Oil or gas facility,oil_or_gas_facility,,,NARROWER,oil_refiners,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_refiners -Infrastructure location > Utility or energy infrastructure > Power plant,power_plant,,,CLOSE,power_plants_and_power_plant_service,business_to_business > b2b_energy_and_mining > power_plants_and_power_plant_service -Infrastructure location > Water managment infrastructure > Dam,dam,,,EXACT,dam,structure_and_geography > dam -Natural location > Landmass > Garden,garden,,,NARROWER,botanical_garden,attractions_and_activities > botanical_garden -Natural location > Landmass > Garden,garden,,,NARROWER,community_gardens,professional_services > community_gardens -Natural location > Scenic viewpoint,scenic_viewpoint,,,NARROWER,skyline,attractions_and_activities > skyline -Recreational location,recreational_location,,,CLOSE,active_life,active_life -Recreational location,recreational_location,,,NARROWER,boating_places,attractions_and_activities > boating_places -Recreational location,recreational_location,,,NARROWER,bobsledding_field,attractions_and_activities > bobsledding_field -Recreational location,recreational_location,,,NARROWER,stargazing_area,attractions_and_activities > stargazing_area -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,canyon,attractions_and_activities > canyon -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,cave,attractions_and_activities > cave -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,crater,attractions_and_activities > crater -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,desert,structure_and_geography > desert -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,geologic_formation,structure_and_geography > geologic_formation -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,hot_springs,attractions_and_activities > hot_springs -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,island,structure_and_geography > island -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,EXACT,lake,attractions_and_activities > lake -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,natural_hot_springs,structure_and_geography > natural_hot_springs -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,EXACT,river,structure_and_geography > river -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,sand_dune,attractions_and_activities > sand_dune -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,CLOSE,structure_and_geography,structure_and_geography -Recreational location > Nature outdoors,nature_outdoors,TRUE,REVIEW,NARROWER,waterfall,attractions_and_activities > waterfall -Recreational location > Nature outdoors > Beach,beach,TRUE,REVIEW,EXACT,beach,attractions_and_activities > beach -Recreational location > Nature outdoors > Beach,beach,TRUE,REVIEW,NARROWER,beach_combing_area,attractions_and_activities > beach_combing_area -Recreational location > Nature outdoors > Forest,forest,TRUE,REVIEW,EXACT,forest,structure_and_geography > forest -Recreational location > Nature outdoors > Mountain,mountain,TRUE,REVIEW,EXACT,mountain,structure_and_geography > mountain -Recreational location > Nature outdoors > Nature reserve,nature_reserve,TRUE,REVIEW,EXACT,nature_reserve,structure_and_geography > nature_reserve -Recreational location > Park,park,,,NARROWER,mountain_bike_parks,attractions_and_activities > mountain_bike_parks -Recreational location > Park,park,,,EXACT,park,attractions_and_activities > park -Recreational location > Park,park,,,NARROWER,state_park,attractions_and_activities > park > state_park -Recreational location > Park,park,,,NARROWER,water_park,arts_and_entertainment > water_park -Recreational location > Park > Amusement park,amusement_park,,,EXACT,amusement_park,attractions_and_activities > amusement_park -Recreational location > Park > Dog park,dog_park,,,EXACT,dog_park,attractions_and_activities > park > dog_park -Recreational location > Park > National park,national_park,,,EXACT,national_park,attractions_and_activities > park > national_park -Recreational location > Park > Playground,playground,,,EXACT,playground,active_life > sports_and_recreation_venue > playground -Recreational location > Recreational equipment rental service,recreational_equipment_rental_service,,,NARROWER,atv_rentals_and_tours,attractions_and_activities > atv_rentals_and_tours -Recreational location > Recreational equipment rental service,recreational_equipment_rental_service,,,NARROWER,canoe_and_kayak_hire_service,active_life > sports_and_recreation_rental_and_services > boat_hire_service > canoe_and_kayak_hire_service -Recreational location > Recreational equipment rental service,recreational_equipment_rental_service,,,CLOSE,sport_equipment_rentals,active_life > sports_and_recreation_rental_and_services > sport_equipment_rentals -Recreational location > Recreational equipment rental service,recreational_equipment_rental_service,,,CLOSE,sports_and_recreation_rental_and_services,active_life > sports_and_recreation_rental_and_services -Recreational location > Recreational equipment rental service > Bicycle rental service,bicycle_rental_service,,,EXACT,bike_rentals,active_life > sports_and_recreation_rental_and_services > bike_rentals -Recreational location > Recreational equipment rental service > Scooter rental service,scooter_rental_service,,,EXACT,scooter_rental,active_life > sports_and_recreation_rental_and_services > scooter_rental -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,CLOSE,beach_equipment_rentals,active_life > sports_and_recreation_rental_and_services > beach_equipment_rentals -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,NARROWER,boat_rental_and_training,attractions_and_activities > boat_rental_and_training -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,NARROWER,jet_skis_rental,attractions_and_activities > jet_skis_rental -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,CLOSE,paddleboard_rental,attractions_and_activities > paddleboard_rental -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,NARROWER,snorkeling_equipment_rental,attractions_and_activities > snorkeling_equipment_rental -Recreational location > Recreational equipment rental service > Water sport equipment rental service,water_sport_equipment_rental_service,,,NARROWER,surfboard_rental,attractions_and_activities > surfing > surfboard_rental -Recreational location > Recreational equipment rental service > Winter sport equipment rental service,winter_sport_equipment_rental_service,,,NARROWER,sledding_rental,attractions_and_activities > sledding_rental -Recreational location > Recreational trail,recreational_trail,,,NARROWER,backpacking_area,attractions_and_activities > backpacking_area -Recreational location > Recreational trail,recreational_trail,,,NARROWER,mountain_bike_trails,attractions_and_activities > trail > mountain_bike_trails -Recreational location > Recreational trail,recreational_trail,,,CLOSE,trail,attractions_and_activities > trail -Recreational location > Recreational trail > Hiking trail,hiking_trail,,,EXACT,hiking_trail,attractions_and_activities > trail > hiking_trail -Recreational location > Sport league,sport_league,,,NARROWER,esports_league,active_life > sports_club_and_league > esports_league -Recreational location > Sport league > Amatuer sport league,amateur_sport_league,,,EXACT,amateur_sports_league,active_life > sports_club_and_league > amateur_sports_league -Recreational location > Sport league > Pro sport league,pro_sport_league,,,EXACT,professional_sports_league,active_life > sports_club_and_league > professional_sports_league -Recreational location > Sport league > School sport league,school_sport_league,,,EXACT,school_sports_league,active_life > sports_club_and_league > school_sports_league -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,adventure_sports_center,active_life > sports_and_recreation_venue > adventure_sports_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,atv_recreation_park,active_life > sports_and_recreation_venue > atv_recreation_park -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,batting_cage,active_life > sports_and_recreation_venue > batting_cage -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,boxing_class,active_life > sports_and_fitness_instruction > boxing_class -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,boxing_gym,active_life > sports_and_fitness_instruction > boxing_gym -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,bungee_jumping_center,attractions_and_activities > bungee_jumping_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,cardio_classes,active_life > sports_and_fitness_instruction > cardio_classes -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,challenge_courses_center,attractions_and_activities > challenge_courses_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,cliff_jumping_center,attractions_and_activities > cliff_jumping_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,climbing_class,active_life > sports_and_fitness_instruction > climbing_class -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,climbing_service,attractions_and_activities > climbing_service -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,cycling_classes,active_life > sports_and_fitness_instruction > cycling_classes -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,diving_center,active_life > sports_and_recreation_venue > diving_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,driving_range,active_life > sports_and_recreation_venue > golf_course > driving_range -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,fishing_charter,attractions_and_activities > fishing_charter -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,fitness_trainer,active_life > sports_and_fitness_instruction > fitness_trainer -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,flyboarding_center,active_life > sports_and_recreation_venue > flyboarding_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,flyboarding_rental,attractions_and_activities > flyboarding_rental -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,free_diving_center,active_life > sports_and_recreation_venue > diving_center > free_diving_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,free_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > free_diving_instruction -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,go_kart_track,attractions_and_activities > go_kart_track -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,golf_instructor,active_life > sports_and_fitness_instruction > golf_instructor -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,gymnastics_center,active_life > sports_and_recreation_venue > gymnastics_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,hang_gliding_center,active_life > sports_and_recreation_venue > hang_gliding_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,high_gliding_center,attractions_and_activities > high_gliding_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,horseback_riding_service,attractions_and_activities > horseback_riding_service -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,hot_air_balloons_tour,attractions_and_activities > hot_air_balloons_tour -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,indoor_golf_center,active_life > sports_club_and_league > golf_club > indoor_golf_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,kiteboarding,active_life > sports_and_recreation_venue > kiteboarding -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,kiteboarding_instruction,attractions_and_activities > kiteboarding_instruction -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,miniature_golf_course,active_life > sports_and_recreation_venue > miniature_golf_course -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,paddleboarding_center,active_life > sports_and_recreation_venue > paddleboarding_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,paddleboarding_lessons,active_life > sports_and_fitness_instruction > paddleboarding_lessons -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,parasailing_ride_service,attractions_and_activities > parasailing_ride_service -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,racing_experience,active_life > sports_and_fitness_instruction > racing_experience -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,rafting_kayaking_area,attractions_and_activities > rafting_kayaking_area -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,rock_climbing_gym,active_life > sports_and_recreation_venue > rock_climbing_gym -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,rock_climbing_instructor,active_life > sports_and_fitness_instruction > rock_climbing_instructor -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,rock_climbing_spot,attractions_and_activities > rock_climbing_spot -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,sailing_area,attractions_and_activities > sailing_area -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,scuba_diving_center,active_life > sports_and_recreation_venue > diving_center > scuba_diving_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,scuba_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,self_defense_classes,active_life > sports_and_fitness_instruction > self_defense_classes -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,ski_area,attractions_and_activities > ski_area -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,sky_diving,active_life > sports_and_recreation_venue > sky_diving -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,snorkeling,attractions_and_activities > snorkeling -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,snowboarding_center,attractions_and_activities > snowboarding_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,CLOSE,sports_and_fitness_instruction,active_life > sports_and_fitness_instruction -Recreational location > Sport or fitness facility,sport_fitness_facility,,,CLOSE,sports_and_recreation_venue,active_life > sports_and_recreation_venue -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,surfing,attractions_and_activities > surfing -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,trampoline_park,active_life > sports_and_recreation_venue > trampoline_park -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,tubing_provider,active_life > sports_and_recreation_venue > tubing_provider -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,wildlife_hunting_range,active_life > sports_and_recreation_venue > wildlife_hunting_range -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,windsurfing_center,attractions_and_activities > surfing > windsurfing_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,ziplining_center,attractions_and_activities > ziplining_center -Recreational location > Sport or fitness facility,sport_fitness_facility,,,NARROWER,zorbing_center,active_life > sports_and_recreation_venue > zorbing_center -Recreational location > Sport or fitness facility > Bowling alley,bowling_alley,,,EXACT,bowling_alley,active_life > sports_and_recreation_venue > bowling_alley -Recreational location > Sport or fitness facility > Equestrian facility,equestrian_facility,,,EXACT,equestrian_facility,active_life > sports_and_recreation_venue > horse_riding > equestrian_facility -Recreational location > Sport or fitness facility > Equestrian facility,equestrian_facility,,,EXACT,horse_riding,active_life > sports_and_recreation_venue > horse_riding -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,aerial_fitness_center,active_life > sports_and_fitness_instruction > aerial_fitness_center -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,barre_classes,active_life > sports_and_fitness_instruction > barre_classes -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,boot_camp,active_life > sports_and_fitness_instruction > boot_camp -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,pilates_studio,active_life > sports_and_fitness_instruction > pilates_studio -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,qi_gong_studio,active_life > sports_and_fitness_instruction > qi_gong_studio -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,tai_chi_studio,active_life > sports_and_fitness_instruction > tai_chi_studio -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,yoga_instructor,active_life > sports_and_fitness_instruction > yoga_instructor -Recreational location > Sport or fitness facility > Fitness studio,fitness_studio,,,NARROWER,yoga_studio,active_life > sports_and_fitness_instruction > yoga_studio -Recreational location > Sport or fitness facility > Golf course,golf_course,,,EXACT,golf_course,active_life > sports_and_recreation_venue > golf_course -Recreational location > Sport or fitness facility > Gym,gym,,,EXACT,gym,active_life > sports_and_recreation_venue > gym -Recreational location > Sport or fitness facility > Pool hall,pool_hall,,,EXACT,pool_billiards,active_life > sports_and_recreation_venue > pool_billiards -Recreational location > Sport or fitness facility > Pool hall,pool_hall,,,EXACT,pool_hall,active_life > sports_and_recreation_venue > pool_billiards > pool_hall -Recreational location > Sport or fitness facility > Race track,race_track,,,NARROWER,horse_racing_track,active_life > sports_and_recreation_venue > horse_riding > horse_racing_track -Recreational location > Sport or fitness facility > Race track,race_track,,,EXACT,race_track,active_life > sports_and_recreation_venue > race_track -Recreational location > Sport or fitness facility > Shooting range,shooting_range,,,NARROWER,archery_range,active_life > sports_and_recreation_venue > archery_range -Recreational location > Sport or fitness facility > Shooting range,shooting_range,,,EXACT,shooting_range,active_life > sports_and_recreation_venue > shooting_range -Recreational location > Sport or fitness facility > Skate park,skate_park,,,EXACT,skate_park,active_life > sports_and_recreation_venue > skate_park -Recreational location > Sport or fitness facility > Skating rink,skating_rink,,,NARROWER,ice_skating_rink,active_life > sports_and_recreation_venue > skating_rink > ice_skating_rink -Recreational location > Sport or fitness facility > Skating rink,skating_rink,,,NARROWER,roller_skating_rink,active_life > sports_and_recreation_venue > skating_rink > roller_skating_rink -Recreational location > Sport or fitness facility > Skating rink,skating_rink,,,EXACT,skating_rink,active_life > sports_and_recreation_venue > skating_rink -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,badminton_court,active_life > sports_and_recreation_venue > badminton_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,basketball_court,active_life > sports_and_recreation_venue > basketball_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,beach_volleyball_court,active_life > sports_and_recreation_venue > beach_volleyball_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,bocce_ball_court,active_life > sports_and_recreation_venue > bocce_ball_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,handball_court,active_life > sports_and_recreation_venue > handball_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,racquetball_court,active_life > sports_and_recreation_venue > racquetball_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,squash_court,active_life > sports_and_recreation_venue > squash_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,tennis_court,active_life > sports_and_recreation_venue > tennis_court -Recreational location > Sport or fitness facility > Sport court,sport_court,,,NARROWER,volleyball_court,active_life > sports_and_recreation_venue > volleyball_court -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,airsoft_fields,active_life > sports_and_recreation_venue > airsoft_fields -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,american_football_field,active_life > sports_and_recreation_venue > american_football_field -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,baseball_field,active_life > sports_and_recreation_venue > baseball_field -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,bubble_soccer_field,active_life > sports_and_recreation_venue > bubble_soccer_field -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,disc_golf_course,active_life > sports_and_recreation_venue > disc_golf_course -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,futsal_field,active_life > sports_and_recreation_venue > futsal_field -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,hockey_field,active_life > sports_and_recreation_venue > hockey_field -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,rugby_pitch,active_life > sports_and_recreation_venue > rugby_pitch -Recreational location > Sport or fitness facility > Sport field,sport_field,,,NARROWER,soccer_field,active_life > sports_and_recreation_venue > soccer_field -Recreational location > Sport or fitness facility > Swimming pool,swimming_pool,,,NARROWER,swimming_instructor,active_life > sports_and_fitness_instruction > swimming_instructor -Recreational location > Sport or fitness facility > Swimming pool,swimming_pool,,,EXACT,swimming_pool,active_life > sports_and_recreation_venue > swimming_pool -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,beach_volleyball_club,active_life > sports_club_and_league > beach_volleyball_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,boxing_club,active_life > sports_and_fitness_instruction > boxing_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,fencing_club,active_life > sports_club_and_league > fencing_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,fishing_club,active_life > sports_club_and_league > fishing_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,football_club,active_life > sports_club_and_league > football_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,go_kart_club,active_life > sports_club_and_league > go_kart_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,gymnastics_club,active_life > sports_club_and_league > gymnastics_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,lawn_bowling_club,active_life > sports_club_and_league > lawn_bowling_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,nudist_clubs,active_life > sports_club_and_league > nudist_clubs -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,paddle_tennis_club,active_life > sports_club_and_league > paddle_tennis_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,rowing_club,active_life > sports_club_and_league > rowing_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,sailing_club,active_life > sports_club_and_league > sailing_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,soccer_club,active_life > sports_club_and_league > soccer_club -Recreational location > Sport or recreation club,sport_recreation_club,,,CLOSE,sports_club_and_league,active_life > sports_club_and_league -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,surf_lifesaving_club,active_life > sports_club_and_league > surf_lifesaving_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,table_tennis_club,active_life > sports_club_and_league > table_tennis_club -Recreational location > Sport or recreation club,sport_recreation_club,,,NARROWER,volleyball_club,active_life > sports_club_and_league > volleyball_club -Recreational location > Sport or recreation club > Golf club,golf_club,,,EXACT,golf_club,active_life > sports_club_and_league > golf_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,brazilian_jiu_jitsu_club,active_life > sports_club_and_league > martial_arts_club > brazilian_jiu_jitsu_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,chinese_martial_arts_club,active_life > sports_club_and_league > martial_arts_club > chinese_martial_arts_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,karate_club,active_life > sports_club_and_league > martial_arts_club > karate_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,kickboxing_club,active_life > sports_club_and_league > martial_arts_club > kickboxing_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,EXACT,martial_arts_club,active_life > sports_club_and_league > martial_arts_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,muay_thai_club,active_life > sports_club_and_league > martial_arts_club > muay_thai_club -Recreational location > Sport or recreation club > Martial arts club,martial_arts_club,,,NARROWER,taekwondo_club,active_life > sports_club_and_league > martial_arts_club > taekwondo_club -Recreational location > Sport team,sport_team,,,NARROWER,esports_team,active_life > sports_club_and_league > esports_team -Recreational location > Sport team > Amatuer sport team,amateur_sport_team,,,EXACT,amateur_sports_team,active_life > sports_club_and_league > amateur_sports_team -Recreational location > Sport team > Pro sport team,pro_sport_team,,,EXACT,professional_sports_team,active_life > sports_club_and_league > professional_sports_team -Recreational location > Sport team > School sport team,school_sport_team,,,EXACT,school_sports_team,active_life > sports_club_and_league > school_sports_team -Retail location,retail_location,,,NARROWER,outlet_store,retail > shopping > outlet_store -Retail location,retail_location,,,NARROWER,pop_up_shop,retail > shopping > pop_up_shop -Retail location,retail_location,,,NARROWER,public_market,retail > shopping > public_market -Retail location,retail_location,,,CLOSE,retail,retail -Retail location,retail_location,,,CLOSE,shopping,retail > shopping -Retail location,retail_location,,,NARROWER,shopping_passage,retail > shopping > shopping_passage -Retail location,retail_location,,,NARROWER,superstore,retail > shopping > superstore -Retail location > Convenience store,convenience_store,,,EXACT,convenience_store,retail > shopping > convenience_store -Retail location > Department store,department_store,,,EXACT,department_store,retail > shopping > department_store -Retail location > Discount store,discount_store,,,EXACT,discount_store,retail > shopping > discount_store -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,boutique,retail > shopping > boutique -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,bridal_shop,retail > shopping > bridal_shop -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,custom_clothing,retail > shopping > custom_clothing -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,CLOSE,fashion,retail > shopping > fashion -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,fashion_accessories_store,retail > shopping > fashion > fashion_accessories_store -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,handbag_stores,retail > shopping > fashion > fashion_accessories_store > handbag_stores -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,hat_shop,retail > shopping > fashion > hat_shop -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,leather_goods,retail > shopping > fashion > leather_goods -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,sleepwear,retail > shopping > fashion > sleepwear -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,stocking,retail > shopping > fashion > stocking -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,uniform_store,retail > shopping > uniform_store -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,watch_store,retail > shopping > watch_store -Retail location > Fashion or apparel store,fashion_or_apparel_store,,,NARROWER,wig_store,retail > shopping > wig_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,ceremonial_clothing,retail > shopping > fashion > clothing_store > ceremonial_clothing -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,childrens_clothing_store,retail > shopping > fashion > clothing_store > childrens_clothing_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,EXACT,clothing_company,business_to_business > business > clothing_company -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,clothing_rental,retail > shopping > fashion > clothing_store > clothing_rental -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,EXACT,clothing_store,retail > shopping > fashion > clothing_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,custom_t_shirt_store,retail > shopping > fashion > clothing_store > t_shirt_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,denim_wear_store,retail > shopping > fashion > clothing_store > denim_wear_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,designer_clothing,retail > shopping > fashion > clothing_store > designer_clothing -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,formal_wear_store,retail > shopping > fashion > clothing_store > formal_wear_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,fur_clothing,retail > shopping > fashion > clothing_store > fur_clothing -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,lingerie_store,retail > shopping > fashion > clothing_store > lingerie_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,maternity_wear,retail > shopping > fashion > clothing_store > maternity_wear -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,mens_clothing_store,retail > shopping > fashion > clothing_store > mens_clothing_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,plus_size_clothing,retail > shopping > fashion > plus_size_clothing -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,saree_shop,retail > shopping > fashion > saree_shop -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,t_shirt_store,retail > shopping > fashion > clothing_store > t_shirt_store -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,traditional_clothing,retail > shopping > fashion > clothing_store > traditional_clothing -Retail location > Fashion or apparel store > Clothing store,clothing_store,,,NARROWER,womens_clothing_store,retail > shopping > fashion > clothing_store > womens_clothing_store -Retail location > Fashion or apparel store > Eyewear store,eyewear_store,,,NARROWER,sunglasses_store,retail > shopping > eyewear_and_optician > sunglasses_store -Retail location > Fashion or apparel store > Jewelry store,jewelry_store,,,EXACT,jewelry_store,retail > shopping > jewelry_store -Retail location > Fashion or apparel store > Shoe store,shoe_store,,,NARROWER,orthopedic_shoe_store,retail > shopping > fashion > shoe_store > orthopedic_shoe_store -Retail location > Fashion or apparel store > Shoe store,shoe_store,,,EXACT,shoe_store,retail > shopping > fashion > shoe_store -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,back_shop,retail > food > back_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,beer_wine_and_spirits,retail > food > beer_wine_and_spirits -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,bottled_water_company,business_to_business > business > bottled_water_company -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,box_lunch_supplier,retail > food > box_lunch_supplier -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,cheese_shop,retail > food > cheese_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,chimney_cake_shop,retail > food > patisserie_cake_shop > chimney_cake_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,coffee_and_tea_supplies,retail > food > coffee_and_tea_supplies -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,csa_farm,retail > food > csa_farm -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,cupcake_shop,retail > food > patisserie_cake_shop > cupcake_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,custom_cakes_shop,retail > food > patisserie_cake_shop > custom_cakes_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,distillery,retail > distillery -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,fishmonger,retail > food > fishmonger -Retail location > Food or beverage store,food_or_beverage_store,,,CLOSE,food,retail > food -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,frozen_foods,retail > food > specialty_foods > frozen_foods -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,herb_and_spice_shop,retail > herb_and_spice_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,honey_farm_shop,retail > honey_farm_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,imported_food,retail > food > imported_food -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,meat_shop,retail > meat_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,mulled_wine,retail > food > mulled_wine -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,olive_oil,retail > olive_oil -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,pasta_shop,retail > food > specialty_foods > pasta_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,patisserie_cake_shop,retail > food > patisserie_cake_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,pie_shop,retail > food > pie_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,popcorn_shop,retail > popcorn_shop -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,pretzels,retail > food > pretzels -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,seafood_market,retail > seafood_market -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,smokehouse,retail > food > smokehouse -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,specialty_foods,retail > food > specialty_foods -Retail location > Food or beverage store,food_or_beverage_store,,,NARROWER,water_store,retail > water_store -Retail location > Food or beverage store > Butcher shop,butcher_shop,,,EXACT,butcher_shop,retail > food > butcher_shop -Retail location > Food or beverage store > Farmers market,farmers_market,,,EXACT,farmers_market,retail > shopping > farmers_market -Retail location > Food or beverage store > Food stand,food_stand,,,EXACT,food_stand,retail > food > food_stand -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,asian_grocery_store,retail > shopping > grocery_store > asian_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,dairy_stores,retail > shopping > grocery_store > dairy_stores -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,ethical_grocery,retail > shopping > grocery_store > ethical_grocery -Retail location > Food or beverage store > Grocery store,grocery_store,,,EXACT,grocery_store,retail > shopping > grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,health_food_store,retail > food > health_food_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,indian_grocery_store,retail > shopping > grocery_store > indian_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,international_grocery_store,retail > shopping > international_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,japanese_grocery_store,retail > shopping > grocery_store > japanese_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,korean_grocery_store,retail > shopping > grocery_store > korean_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,kosher_grocery_store,retail > shopping > grocery_store > kosher_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,mexican_grocery_store,retail > shopping > grocery_store > mexican_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,organic_grocery_store,retail > shopping > grocery_store > organic_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,rice_shop,retail > shopping > grocery_store > rice_shop -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,russian_grocery_store,retail > shopping > grocery_store > russian_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,NARROWER,specialty_grocery_store,retail > shopping > grocery_store > specialty_grocery_store -Retail location > Food or beverage store > Grocery store,grocery_store,,,EXACT,supermarket,retail > shopping > supermarket -Retail location > Food or beverage store > Liquor store,liquor_store,,,EXACT,liquor_store,retail > food > liquor_store -Retail location > Food or beverage store > Produce store,produce_store,,,CLOSE,fruits_and_vegetables,retail > food > fruits_and_vegetables -Retail location > Second-hand shop,second-hand_shop,,,NARROWER,flea_market,retail > shopping > flea_market -Retail location > Second-hand shop,second-hand_shop,,,NARROWER,junkyard,professional_services > junkyard -Retail location > Second-hand shop,second-hand_shop,,,NARROWER,pawn_shop,retail > shopping > pawn_shop -Retail location > Second-hand shop,second-hand_shop,,,CLOSE,thrift_store,retail > shopping > thrift_store -Retail location > Second-hand shop,second-hand_shop,,,NARROWER,used_vintage_and_consignment,retail > shopping > fashion > used_vintage_and_consignment -Retail location > Second-hand shop > Antique shop,antique_shop,,,EXACT,antique_store,retail > shopping > antique_store -Retail location > Shopping mall,shopping_mall,,,CLOSE,shopping_center,retail > shopping > shopping_center -Retail location > Specialty store,specialty_store,,,NARROWER,adult_store,retail > shopping > adult_store -Retail location > Specialty store,specialty_store,,,NARROWER,agricultural_seed_store,retail > shopping > agricultural_seed_store -Retail location > Specialty store,specialty_store,,,NARROWER,aircraft_parts_and_supplies,automotive > aircraft_parts_and_supplies -Retail location > Specialty store,specialty_store,,,NARROWER,appliance_store,retail > shopping > home_and_garden > appliance_store -Retail location > Specialty store,specialty_store,,,NARROWER,army_and_navy_store,retail > shopping > army_and_navy_store -Retail location > Specialty store,specialty_store,,,NARROWER,auction_house,retail > shopping > auction_house -Retail location > Specialty store,specialty_store,,,NARROWER,auto_parts_and_supply_store,retail > auto_parts_and_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,automotive_parts_and_accessories,automotive > automotive_parts_and_accessories -Retail location > Specialty store,specialty_store,,,NARROWER,baby_gear_and_furniture,retail > shopping > baby_gear_and_furniture -Retail location > Specialty store,specialty_store,,,NARROWER,bags_luggage_company,business_to_business > business > bags_luggage_company -Retail location > Specialty store,specialty_store,,,NARROWER,bathroom_fixture_stores,retail > shopping > home_and_garden > kitchen_and_bath > bathroom_fixture_stores -Retail location > Specialty store,specialty_store,,,NARROWER,bazaars,retail > shopping > bazaars -Retail location > Specialty store,specialty_store,,,NARROWER,bedding_and_bath_stores,retail > shopping > home_and_garden > bedding_and_bath_stores -Retail location > Specialty store,specialty_store,,,NARROWER,boat_parts_and_accessories,automotive > boat_parts_and_accessories -Retail location > Specialty store,specialty_store,,,NARROWER,boat_parts_and_supply_store,retail > boat_parts_and_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,books_mags_music_and_video,retail > shopping > books_mags_music_and_video -Retail location > Specialty store,specialty_store,,,NARROWER,brewing_supply_store,retail > shopping > brewing_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,building_supply_store,retail > shopping > building_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,candle_store,retail > shopping > home_and_garden > candle_store -Retail location > Specialty store,specialty_store,,,NARROWER,cannabis_dispensary,retail > shopping > cannabis_dispensary -Retail location > Specialty store,specialty_store,,,NARROWER,car_auction,retail > shopping > auction_house > car_auction -Retail location > Specialty store,specialty_store,,,NARROWER,car_stereo_store,automotive > automotive_parts_and_accessories > car_stereo_store -Retail location > Specialty store,specialty_store,,,NARROWER,cards_and_stationery_store,retail > shopping > cards_and_stationery_store -Retail location > Specialty store,specialty_store,,,NARROWER,carpet_store,retail > carpet_store -Retail location > Specialty store,specialty_store,,,NARROWER,christmas_trees,retail > shopping > home_and_garden > christmas_trees -Retail location > Specialty store,specialty_store,,,NARROWER,concept_shop,retail > shopping > concept_shop -Retail location > Specialty store,specialty_store,,,NARROWER,cosmetic_and_beauty_supplies,retail > shopping > cosmetic_and_beauty_supplies -Retail location > Specialty store,specialty_store,,,NARROWER,customized_merchandise,retail > shopping > customized_merchandise -Retail location > Specialty store,specialty_store,,,NARROWER,dental_supply_store,retail > shopping > medical_supply > dental_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,diamond_dealer,professional_services > diamond_dealer -Retail location > Specialty store,specialty_store,,,NARROWER,drone_store,retail > shopping > drone_store -Retail location > Specialty store,specialty_store,,,NARROWER,drugstore,retail > drugstore -Retail location > Specialty store,specialty_store,,,NARROWER,duty_free_shop,retail > shopping > duty_free_shop -Retail location > Specialty store,specialty_store,,,NARROWER,e_cigarette_store,retail > shopping > e_cigarette_store -Retail location > Specialty store,specialty_store,,,NARROWER,educational_supply_store,retail > shopping > educational_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,electrical_supply_store,retail > shopping > home_and_garden > electrical_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,farming_equipment_store,retail > shopping > farming_equipment_store -Retail location > Specialty store,specialty_store,,,NARROWER,firework_retailer,retail > shopping > firework_retailer -Retail location > Specialty store,specialty_store,,,NARROWER,flooring_store,retail > flooring_store -Retail location > Specialty store,specialty_store,,,NARROWER,furniture_accessory_store,retail > shopping > home_and_garden > furniture_accessory_store -Retail location > Specialty store,specialty_store,,,NARROWER,furniture_store,retail > shopping > home_and_garden > furniture_store -Retail location > Specialty store,specialty_store,,,NARROWER,gemstone_and_mineral,retail > shopping > gemstone_and_mineral -Retail location > Specialty store,specialty_store,,,NARROWER,gold_buyer,retail > shopping > gold_buyer -Retail location > Specialty store,specialty_store,,,NARROWER,goldsmith,professional_services > goldsmith -Retail location > Specialty store,specialty_store,,,NARROWER,grilling_equipment,retail > shopping > home_and_garden > grilling_equipment -Retail location > Specialty store,specialty_store,,,NARROWER,guitar_store,retail > shopping > guitar_store -Retail location > Specialty store,specialty_store,,,NARROWER,gun_and_ammo,retail > shopping > gun_and_ammo -Retail location > Specialty store,specialty_store,,,NARROWER,gunsmith,professional_services > gunsmith -Retail location > Specialty store,specialty_store,,,NARROWER,hair_supply_stores,retail > shopping > cosmetic_and_beauty_supplies > hair_supply_stores -Retail location > Specialty store,specialty_store,,,NARROWER,health_market,retail > health_market -Retail location > Specialty store,specialty_store,,,NARROWER,hearing_aids,retail > shopping > medical_supply > hearing_aids -Retail location > Specialty store,specialty_store,,,NARROWER,herbal_shop,retail > shopping > herbal_shop -Retail location > Specialty store,specialty_store,,,NARROWER,holiday_decor,retail > shopping > home_and_garden > holiday_decor -Retail location > Specialty store,specialty_store,,,NARROWER,home_and_garden,retail > shopping > home_and_garden -Retail location > Specialty store,specialty_store,,,NARROWER,home_decor,retail > shopping > home_and_garden > home_decor -Retail location > Specialty store,specialty_store,,,NARROWER,home_goods_store,retail > shopping > home_and_garden > home_goods_store -Retail location > Specialty store,specialty_store,,,NARROWER,horse_equipment_shop,retail > shopping > horse_equipment_shop -Retail location > Specialty store,specialty_store,,,NARROWER,hot_tubs_and_pools,retail > shopping > home_and_garden > hot_tubs_and_pools -Retail location > Specialty store,specialty_store,,,NARROWER,hydroponic_gardening,retail > shopping > home_and_garden > nursery_and_gardening > hydroponic_gardening -Retail location > Specialty store,specialty_store,,,NARROWER,interlock_system,automotive > automotive_parts_and_accessories > interlock_system -Retail location > Specialty store,specialty_store,,,NARROWER,kitchen_and_bath,retail > shopping > home_and_garden > kitchen_and_bath -Retail location > Specialty store,specialty_store,,,NARROWER,kitchen_supply_store,retail > shopping > home_and_garden > kitchen_and_bath > kitchen_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,lawn_mower_store,retail > shopping > home_and_garden > lawn_mower_store -Retail location > Specialty store,specialty_store,,,NARROWER,lighting_store,retail > shopping > home_and_garden > lighting_store -Retail location > Specialty store,specialty_store,,,NARROWER,linen,retail > shopping > home_and_garden > linen -Retail location > Specialty store,specialty_store,,,NARROWER,livestock_feed_and_supply_store,retail > shopping > livestock_feed_and_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,lottery_ticket,professional_services > lottery_ticket -Retail location > Specialty store,specialty_store,,,NARROWER,luggage_store,retail > shopping > luggage_store -Retail location > Specialty store,specialty_store,,,NARROWER,lumber_store,retail > shopping > building_supply_store > lumber_store -Retail location > Specialty store,specialty_store,,,NARROWER,market_stall,retail > shopping > market_stall -Retail location > Specialty store,specialty_store,,,NARROWER,mattress_store,retail > shopping > home_and_garden > mattress_store -Retail location > Specialty store,specialty_store,,,NARROWER,medical_supply,retail > shopping > medical_supply -Retail location > Specialty store,specialty_store,,,NARROWER,military_surplus_store,retail > shopping > military_surplus_store -Retail location > Specialty store,specialty_store,,,NARROWER,motorcycle_gear,automotive > automotive_parts_and_accessories > motorcycle_gear -Retail location > Specialty store,specialty_store,,,NARROWER,motorsports_store,automotive > automotive_parts_and_accessories > motorsports_store -Retail location > Specialty store,specialty_store,,,NARROWER,musical_instrument_store,retail > shopping > musical_instrument_store -Retail location > Specialty store,specialty_store,,,NARROWER,night_market,retail > shopping > night_market -Retail location > Specialty store,specialty_store,,,NARROWER,nursery_and_gardening,retail > shopping > home_and_garden > nursery_and_gardening -Retail location > Specialty store,specialty_store,,,NARROWER,office_equipment,retail > shopping > office_equipment -Retail location > Specialty store,specialty_store,,,NARROWER,online_shop,retail > shopping > online_shop -Retail location > Specialty store,specialty_store,,,NARROWER,outdoor_furniture_store,retail > shopping > home_and_garden > outdoor_furniture_store -Retail location > Specialty store,specialty_store,,,NARROWER,packing_supply,retail > shopping > packing_supply -Retail location > Specialty store,specialty_store,,,NARROWER,paint_store,retail > shopping > home_and_garden > paint_store -Retail location > Specialty store,specialty_store,,,NARROWER,party_supply,retail > party_supply -Retail location > Specialty store,specialty_store,,,NARROWER,pen_store,retail > shopping > pen_store -Retail location > Specialty store,specialty_store,,,NARROWER,perfume_store,retail > shopping > perfume_store -Retail location > Specialty store,specialty_store,,,NARROWER,piano_store,retail > shopping > piano_store -Retail location > Specialty store,specialty_store,,,NARROWER,playground_equipment_supplier,retail > shopping > home_and_garden > playground_equipment_supplier -Retail location > Specialty store,specialty_store,,,NARROWER,pool_and_billiards,retail > shopping > pool_and_billiards -Retail location > Specialty store,specialty_store,,,NARROWER,props,retail > shopping > props -Retail location > Specialty store,specialty_store,,,NARROWER,pumpkin_patch,retail > shopping > home_and_garden > pumpkin_patch -Retail location > Specialty store,specialty_store,,,NARROWER,recreational_vehicle_parts_and_accessories,automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories -Retail location > Specialty store,specialty_store,,,NARROWER,religious_items,retail > shopping > religious_items -Retail location > Specialty store,specialty_store,,,NARROWER,rental_kiosks,retail > shopping > rental_kiosks -Retail location > Specialty store,specialty_store,,,NARROWER,rug_store,retail > shopping > home_and_garden > rug_store -Retail location > Specialty store,specialty_store,,,NARROWER,safe_store,retail > shopping > safe_store -Retail location > Specialty store,specialty_store,,,NARROWER,safety_equipment,retail > shopping > safety_equipment -Retail location > Specialty store,specialty_store,,,NARROWER,spiritual_shop,retail > shopping > spiritual_shop -Retail location > Specialty store,specialty_store,,,NARROWER,tabletop_games,retail > shopping > tabletop_games -Retail location > Specialty store,specialty_store,,,NARROWER,tableware_supplier,retail > shopping > home_and_garden > tableware_supplier -Retail location > Specialty store,specialty_store,,,NARROWER,tile_store,retail > shopping > home_and_garden > tile_store -Retail location > Specialty store,specialty_store,,,NARROWER,tire_shop,retail > tire_shop -Retail location > Specialty store,specialty_store,,,NARROWER,tobacco_company,business_to_business > business > tobacco_company -Retail location > Specialty store,specialty_store,,,NARROWER,tobacco_shop,retail > shopping > tobacco_shop -Retail location > Specialty store,specialty_store,,,NARROWER,trophy_shop,retail > shopping > trophy_shop -Retail location > Specialty store,specialty_store,,,NARROWER,video_and_video_game_rentals,retail > shopping > books_mags_music_and_video > video_and_video_game_rentals -Retail location > Specialty store,specialty_store,,,NARROWER,vitamins_and_supplements,retail > shopping > vitamins_and_supplements -Retail location > Specialty store,specialty_store,,,NARROWER,wallpaper_store,retail > shopping > home_and_garden > wallpaper_store -Retail location > Specialty store,specialty_store,,,NARROWER,welding_supply_store,retail > shopping > home_and_garden > hardware_store > welding_supply_store -Retail location > Specialty store,specialty_store,,,NARROWER,window_treatment_store,retail > shopping > home_and_garden > window_treatment_store -Retail location > Specialty store,specialty_store,,,NARROWER,woodworking_supply_store,retail > shopping > home_and_garden > woodworking_supply_store -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,art_supply_store,retail > shopping > arts_and_crafts > art_supply_store -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,CLOSE,arts_and_crafts,retail > shopping > arts_and_crafts -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,atelier,retail > shopping > arts_and_crafts > atelier -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,cooking_classes,retail > shopping > arts_and_crafts > cooking_classes -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,costume_store,retail > shopping > arts_and_crafts > costume_store -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,craft_shop,retail > shopping > arts_and_crafts > craft_shop -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,embroidery_and_crochet,retail > shopping > arts_and_crafts > embroidery_and_crochet -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,fabric_store,retail > shopping > arts_and_crafts > fabric_store -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,framing_store,retail > shopping > arts_and_crafts > framing_store -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,handicraft_shop,retail > shopping > arts_and_crafts > handicraft_shop -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,hobby_shop,retail > shopping > hobby_shop -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,knitting_supply,retail > shopping > knitting_supply -"Retail location > Specialty store > Art, craft or hobby store",art_craft_hobby_store,,,NARROWER,paint_your_own_pottery,retail > shopping > arts_and_crafts > paint_your_own_pottery -Retail location > Specialty store > Bookstore,bookstore,,,NARROWER,academic_bookstore,retail > shopping > books_mags_music_and_video > academic_bookstore -Retail location > Specialty store > Bookstore,bookstore,,,EXACT,bookstore,retail > shopping > books_mags_music_and_video > bookstore -Retail location > Specialty store > Bookstore,bookstore,,,NARROWER,comic_books_store,retail > shopping > books_mags_music_and_video > comic_books_store -Retail location > Specialty store > Bookstore,bookstore,,,NARROWER,newspaper_and_magazines_store,retail > shopping > books_mags_music_and_video > newspaper_and_magazines_store -Retail location > Specialty store > Bookstore,bookstore,,,NARROWER,used_bookstore,retail > shopping > used_bookstore -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,audio_visual_equipment_store,retail > shopping > audio_visual_equipment_store -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,battery_store,retail > shopping > battery_store -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,computer_store,retail > shopping > computer_store -Retail location > Specialty store > Electronics store,electronics_store,,,EXACT,electronics,retail > shopping > electronics -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,hearing_aid_provider,retail > hearing_aid_provider -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,home_theater_systems_stores,retail > shopping > home_theater_systems_stores -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,mobile_phone_accessories,retail > shopping > mobile_phone_accessories -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,mobile_phone_store,retail > shopping > mobile_phone_store -Retail location > Specialty store > Electronics store,electronics_store,,,NARROWER,video_game_store,retail > shopping > books_mags_music_and_video > video_game_store -Retail location > Specialty store > Flower shop,flower_shop,,,CLOSE,florist,retail > shopping > flowers_and_gifts_shop > florist -Retail location > Specialty store > Flower shop,flower_shop,,,NARROWER,flower_markets,retail > shopping > flower_markets -Retail location > Specialty store > Flower shop,flower_shop,,,CLOSE,flowers_and_gifts_shop,retail > shopping > flowers_and_gifts_shop -Retail location > Specialty store > Gift shop,gift_shop,,,EXACT,gift_shop,retail > shopping > flowers_and_gifts_shop > gift_shop -Retail location > Specialty store > Gift shop,gift_shop,,,NARROWER,souvenir_shop,retail > shopping > souvenir_shop -Retail location > Specialty store > Hardware store,hardware_store,,,EXACT,hardware_store,retail > shopping > home_and_garden > hardware_store -Retail location > Specialty store > Home improvement center,home_improvement_center,,,CLOSE,do_it_yourself_store,retail > shopping > do_it_yourself_store -Retail location > Specialty store > Home improvement center,home_improvement_center,,,EXACT,home_improvement_store,retail > shopping > home_and_garden > home_improvement_store -Retail location > Specialty store > Music store,music_store,,,CLOSE,music_and_dvd_store,retail > shopping > books_mags_music_and_video > music_and_dvd_store -Retail location > Specialty store > Music store,music_store,,,NARROWER,vinyl_record_store,retail > shopping > books_mags_music_and_video > vinyl_record_store -Retail location > Specialty store > Office supply store,office_supply_store,,,CLOSE,business_office_supplies_and_stationery,business_to_business > business_equipment_and_supply > business_office_supplies_and_stationery -Retail location > Specialty store > Pet store,pet_store,,,NARROWER,aquatic_pet_store,retail > shopping > pet_store > aquatic_pet_store -Retail location > Specialty store > Pet store,pet_store,,,NARROWER,bird_shop,retail > shopping > pet_store > bird_shop -Retail location > Specialty store > Pet store,pet_store,,,EXACT,pet_store,retail > shopping > pet_store -Retail location > Specialty store > Pet store,pet_store,,,NARROWER,reptile_shop,retail > shopping > pet_store > reptile_shop -Retail location > Specialty store > Pharmacy,pharmacy,,,EXACT,pharmacy,retail > pharmacy -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,archery_shop,retail > shopping > sporting_goods > archery_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,bicycle_shop,retail > shopping > sporting_goods > bicycle_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,dance_wear,retail > shopping > sporting_goods > sports_wear > dance_wear -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,dive_shop,retail > shopping > sporting_goods > dive_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,fitness_exercise_equipment,retail > shopping > fitness_exercise_equipment -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,golf_equipment,retail > shopping > sporting_goods > golf_equipment -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,hockey_equipment,retail > shopping > sporting_goods > hockey_equipment -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,hunting_and_fishing_supplies,retail > shopping > sporting_goods > hunting_and_fishing_supplies -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,outdoor_gear,retail > shopping > sporting_goods > outdoor_gear -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,skate_shop,retail > shopping > sporting_goods > skate_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,ski_and_snowboard_shop,retail > shopping > sporting_goods > ski_and_snowboard_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,EXACT,sporting_goods,retail > shopping > sporting_goods -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,sports_wear,retail > shopping > sporting_goods > sports_wear -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,surf_shop,retail > shopping > sporting_goods > surf_shop -Retail location > Specialty store > Sporting goods store,sporting_goods_store,,,NARROWER,swimwear_store,retail > shopping > sporting_goods > swimwear_store -Retail location > Specialty store > Toys store,toy_store,,,EXACT,toy_store,retail > shopping > toy_store -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,aircraft_dealer,automotive > aircraft_dealer -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,auto_company,automotive > auto_company -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,commercial_vehicle_dealer,automotive > automotive_dealer > commercial_vehicle_dealer -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,forklift_dealer,retail > shopping > farming_equipment_store > forklift_dealer -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,golf_cart_dealer,automotive > automotive_dealer > golf_cart_dealer -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,motorsport_vehicle_dealer,automotive > automotive_dealer > motorsport_vehicle_dealer -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,scooter_dealers,automotive > automotive_dealer > scooter_dealers -Retail location > Vehicle dealer,vehicle_dealer,,,NARROWER,trailer_dealer,automotive > automotive_dealer > trailer_dealer -Retail location > Vehicle dealer > Boat dealer,boat_dealer,,,EXACT,boat_dealer,automotive > boat_dealer -Retail location > Vehicle dealer > Car dealer,car_dealer,,,EXACT,automotive_dealer,automotive > automotive_dealer -Retail location > Vehicle dealer > Car dealer,car_dealer,,,NARROWER,car_broker,professional_services > car_broker -Retail location > Vehicle dealer > Car dealer,car_dealer,,,NARROWER,car_buyer,automotive > car_buyer -Retail location > Vehicle dealer > Car dealer,car_dealer,,,EXACT,car_dealer,automotive > automotive_dealer > car_dealer -Retail location > Vehicle dealer > Car dealer,car_dealer,,,NARROWER,used_car_dealer,automotive > automotive_dealer > used_car_dealer -Retail location > Vehicle dealer > Motorcycle dealer,motorcycle_dealer,,,EXACT,motorcycle_dealer,automotive > automotive_dealer > motorcycle_dealer -Retail location > Vehicle dealer > Recreational vehicle dealer,recreational_vehicle_dealer,,,EXACT,recreational_vehicle_dealer,automotive > automotive_dealer > recreational_vehicle_dealer -Retail location > Vehicle dealer > Truck dealer,truck_dealer,,,EXACT,truck_dealer,automotive > automotive_dealer > truck_dealer -Retail location > Warehouse club,warehouse_club,,,CLOSE,wholesale_store,retail > shopping > wholesale_store -Service location,service_location,,,NARROWER,acoustical_consultant,professional_services > acoustical_consultant -Service location,service_location,,,CLOSE,professional_services,professional_services -Service location > Accommodation,accommodation,,,EXACT,accommodation,accommodation -Service location > Accommodation,accommodation,,,NARROWER,cabin,accommodation > cabin -Service location > Accommodation,accommodation,,,NARROWER,cottage,accommodation > cottage -Service location > Accommodation,accommodation,,,NARROWER,country_house,travel > country_house -Service location > Accommodation,accommodation,,,NARROWER,health_retreats,accommodation > health_retreats -Service location > Accommodation,accommodation,,,NARROWER,hostel,accommodation > hostel -Service location > Accommodation,accommodation,,,NARROWER,houseboat,travel > houseboat -Service location > Accommodation,accommodation,,,NARROWER,lodge,accommodation > lodge -Service location > Accommodation,accommodation,,,NARROWER,mountain_huts,accommodation > mountain_huts -Service location > Accommodation,accommodation,,,NARROWER,self_catering_accommodation,travel > self_catering_accommodation -Service location > Accommodation,accommodation,,,NARROWER,service_apartments,accommodation > service_apartments -Service location > Accommodation,accommodation,,,NARROWER,vacation_rental_agents,travel > vacation_rental_agents -Service location > Accommodation > Bed and breakfast,bed_and_breakfast,,,EXACT,bed_and_breakfast,accommodation > bed_and_breakfast -Service location > Accommodation > Campground,campground,,,EXACT,campground,accommodation > campground -Service location > Accommodation > Hotel,hotel,,,EXACT,hotel,accommodation > hotel -Service location > Accommodation > Inn,inn,,,EXACT,inn,accommodation > inn -Service location > Accommodation > Inn,inn,,,NARROWER,ryokan,travel > ryokan -Service location > Accommodation > Motel,motel,,,EXACT,motel,accommodation > motel -Service location > Accommodation > Private lodging,private_lodging,,,NARROWER,guest_house,accommodation > guest_house -Service location > Accommodation > Private lodging,private_lodging,,,NARROWER,holiday_rental_home,accommodation > holiday_rental_home -Service location > Accommodation > Resort,resort,,,NARROWER,beach_resort,accommodation > resort > beach_resort -Service location > Accommodation > Resort,resort,,,NARROWER,holiday_park,real_estate > holiday_park -Service location > Accommodation > Resort,resort,,,EXACT,resort,accommodation > resort -Service location > Accommodation > Resort,resort,,,NARROWER,ski_resort,travel > ski_resort -Service location > Accommodation > RV park,rv_park,,,EXACT,rv_park,accommodation > rv_park -Service location > Animal service,animal_service,,,NARROWER,animal_physical_therapy,pets > pet_services > animal_physical_therapy -Service location > Animal service,animal_service,,,NARROWER,aquarium_services,pets > pet_services > aquarium_services -Service location > Animal service,animal_service,,,NARROWER,farrier_services,pets > pet_services > farrier_services -Service location > Animal service,animal_service,,,NARROWER,holistic_animal_care,pets > pet_services > holistic_animal_care -Service location > Animal service,animal_service,,,NARROWER,pet_cemetery_and_crematorium_services,pets > pet_services > pet_cemetery_and_crematorium_services -Service location > Animal service,animal_service,,,NARROWER,pet_hospice,pets > pet_services > pet_hospice -Service location > Animal service,animal_service,,,NARROWER,pet_insurance,pets > pet_services > pet_insurance -Service location > Animal service,animal_service,,,NARROWER,pet_photography,pets > pet_services > pet_photography -Service location > Animal service,animal_service,,,CLOSE,pet_services,pets > pet_services -Service location > Animal service,animal_service,,,NARROWER,pet_transportation,pets > pet_services > pet_transportation -Service location > Animal service,animal_service,,,NARROWER,pet_waste_removal,pets > pet_services > pet_waste_removal -Service location > Animal service,animal_service,,,CLOSE,pets,pets -Service location > Animal service > Animal adoption,animal_adoption,,,CLOSE,pet_adoption,pets > pet_adoption -Service location > Animal service > Animal boarding,animal_boarding,,,NARROWER,horse_boarding,pets > horse_boarding -Service location > Animal service > Animal boarding,animal_boarding,,,CLOSE,pet_boarding,pets > pet_services > pet_sitting > pet_boarding -Service location > Animal service > Animal breeding,animal_breeding,,,CLOSE,pet_breeder,pets > pet_services > pet_breeder -Service location > Animal service > Animal hospital,animal_hospital,,,EXACT,animal_hospital,pets > pet_services > animal_hospital -Service location > Animal service > Animal hospital,animal_hospital,,,NARROWER,emergency_pet_hospital,pets > pet_services > emergency_pet_hospital -Service location > Animal service > Animal rescue,animal_rescue,,,EXACT,animal_rescue_service,pets > animal_rescue_service -Service location > Animal service > Animal shelter,animal_shelter,,,EXACT,animal_shelter,pets > animal_shelter -Service location > Animal service > Animal training,animal_training,,,NARROWER,dog_trainer,pets > pet_services > pet_training > dog_trainer -Service location > Animal service > Animal training,animal_training,,,NARROWER,horse_trainer,pets > pet_services > pet_training > horse_trainer -Service location > Animal service > Animal training,animal_training,,,CLOSE,pet_training,pets > pet_services > pet_training -Service location > Animal service > Dog walker,dog_walker,,,EXACT,dog_walkers,pets > pet_services > dog_walkers -Service location > Animal service > Pet grooming,pet_grooming,,,EXACT,pet_groomer,pets > pet_services > pet_groomer -Service location > Animal service > Pet sitting,pet_sitting,,,EXACT,pet_sitting,pets > pet_services > pet_sitting -Service location > Animal service > Veterinarian,veterinarian,,,EXACT,veterinarian,pets > veterinarian -Service location > Design service > Architectural design service,architectural_design_service,,,EXACT,architect,professional_services > architect -Service location > Design service > Architectural design service,architectural_design_service,,,EXACT,architectural_designer,professional_services > architectural_designer -Service location > Design service > Graphic design service,graphic_design_service,,,EXACT,graphic_designer,professional_services > graphic_designer -Service location > Design service > Interior design service,interior_design_service,,,EXACT,interior_design,home_service > interior_design -Service location > Design service > Sign making service,sign_making_service,,,EXACT,sign_making,professional_services > sign_making -Service location > Design service > Web design service,web_design_service,,,EXACT,web_designer,professional_services > web_designer -Service location > Educational service,educational_service,,,NARROWER,after_school_program,professional_services > after_school_program -Service location > Educational service,educational_service,,,NARROWER,archaeological_services,education > educational_services > archaeological_services -Service location > Educational service,educational_service,,,NARROWER,career_counseling,professional_services > career_counseling -Service location > Educational service,educational_service,,,NARROWER,civil_examinations_academy,education > tutoring_center > civil_examinations_academy -Service location > Educational service,educational_service,,,NARROWER,college_counseling,education > college_counseling -Service location > Educational service,educational_service,,,EXACT,educational_services,education > educational_services -Service location > Educational service,educational_service,,,NARROWER,genealogists,professional_services > genealogists -Service location > Educational service,educational_service,,,NARROWER,life_coach,professional_services > life_coach -Service location > Educational service,educational_service,,,NARROWER,student_union,education > student_union -Service location > Educational service,educational_service,,,NARROWER,test_preparation,education > test_preparation -Service location > Educational service > Tutoring service,tutoring_service,,,CLOSE,private_tutor,education > private_tutor -Service location > Educational service > Tutoring service,tutoring_service,,,CLOSE,tutoring_center,education > tutoring_center -Service location > Event or party service,event_or_party_service,,,NARROWER,audiovisual_equipment_rental,professional_services > event_planning > party_equipment_rental > audiovisual_equipment_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,balloon_services,professional_services > event_planning > balloon_services -Service location > Event or party service,event_or_party_service,,,NARROWER,bartender,professional_services > event_planning > bartender -Service location > Event or party service,event_or_party_service,,,NARROWER,boat_charter,professional_services > event_planning > boat_charter -Service location > Event or party service,event_or_party_service,,,NARROWER,bounce_house_rental,professional_services > event_planning > party_equipment_rental > bounce_house_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,caricature,professional_services > event_planning > caricature -Service location > Event or party service,event_or_party_service,,,NARROWER,clown,professional_services > event_planning > clown -Service location > Event or party service,event_or_party_service,,,EXACT,event_planning,professional_services > event_planning -Service location > Event or party service,event_or_party_service,,,NARROWER,event_technology_service,professional_services > event_planning > event_technology_service -Service location > Event or party service,event_or_party_service,,,NARROWER,face_painting,professional_services > event_planning > face_painting -Service location > Event or party service,event_or_party_service,,,NARROWER,floral_designer,professional_services > event_planning > floral_designer -Service location > Event or party service,event_or_party_service,,,NARROWER,fortune_telling_service,professional_services > fortune_telling_service -Service location > Event or party service,event_or_party_service,,,NARROWER,game_truck_rental,professional_services > event_planning > game_truck_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,golf_cart_rental,professional_services > event_planning > golf_cart_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,henna_artist,professional_services > event_planning > henna_artist -Service location > Event or party service,event_or_party_service,,,NARROWER,karaoke_rental,professional_services > event_planning > party_equipment_rental > karaoke_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,magician,professional_services > event_planning > magician -Service location > Event or party service,event_or_party_service,,,NARROWER,mohel,professional_services > event_planning > mohel -Service location > Event or party service,event_or_party_service,,,NARROWER,musician,professional_services > event_planning > musician -Service location > Event or party service,event_or_party_service,,,NARROWER,officiating_services,professional_services > event_planning > officiating_services -Service location > Event or party service,event_or_party_service,,,EXACT,party_and_event_planning,professional_services > event_planning > party_and_event_planning -Service location > Event or party service,event_or_party_service,,,NARROWER,party_bike_rental,professional_services > event_planning > party_bike_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,party_bus_rental,professional_services > event_planning > party_bus_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,party_character,professional_services > event_planning > party_character -Service location > Event or party service,event_or_party_service,,,NARROWER,party_equipment_rental,professional_services > event_planning > party_equipment_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,personal_chef,professional_services > event_planning > personal_chef -Service location > Event or party service,event_or_party_service,,,NARROWER,photo_booth_rental,professional_services > event_planning > photo_booth_rental -Service location > Event or party service,event_or_party_service,,,NARROWER,scavenger_hunts_provider,attractions_and_activities > scavenger_hunts_provider -Service location > Event or party service,event_or_party_service,,,NARROWER,silent_disco,professional_services > event_planning > silent_disco -Service location > Event or party service,event_or_party_service,,,NARROWER,sommelier_service,professional_services > event_planning > sommelier_service -Service location > Event or party service,event_or_party_service,,,NARROWER,team_building_activity,professional_services > event_planning > team_building_activity -Service location > Event or party service,event_or_party_service,,,NARROWER,trivia_host,professional_services > event_planning > trivia_host -Service location > Event or party service,event_or_party_service,,,NARROWER,valet_service,professional_services > event_planning > valet_service -Service location > Event or party service,event_or_party_service,,,NARROWER,videographer,professional_services > event_planning > videographer -Service location > Event or party service,event_or_party_service,,,NARROWER,wedding_chapel,professional_services > event_planning > wedding_chapel -Service location > Event or party service > Catering service,catering_service,,,EXACT,caterer,professional_services > event_planning > caterer -Service location > Event or party service > Childrens party service,childrens_party_service,,,EXACT,kids_recreation_and_party,professional_services > event_planning > kids_recreation_and_party -Service location > Event or party service > DJ service,dj_service,,,EXACT,dj_service,professional_services > event_planning > dj_service -Service location > Event or party service > Wedding service,wedding_service,,,EXACT,wedding_planning,professional_services > event_planning > wedding_planning -Service location > Family service,family_service,,,CLOSE,family_service_center,public_service_and_government > family_service_center -Service location > Family service,family_service,,,NARROWER,nanny_services,professional_services > nanny_services -Service location > Family service > Adoption service,adoption_service,,,EXACT,adoption_services,professional_services > adoption_services -Service location > Family service > Child care or day care,child_care_or_day_care,,,EXACT,child_care_and_day_care,professional_services > child_care_and_day_care -Service location > Family service > Child care or day care,child_care_or_day_care,,,EXACT,day_care_preschool,professional_services > child_care_and_day_care > day_care_preschool -Service location > Family service > Funeral service,funeral_service,,,NARROWER,cremation_services,professional_services > funeral_services_and_cemeteries > cremation_services -Service location > Family service > Funeral service,funeral_service,,,CLOSE,funeral_services_and_cemeteries,professional_services > funeral_services_and_cemeteries -Service location > Family service > Funeral service,funeral_service,,,NARROWER,mortuary_services,professional_services > funeral_services_and_cemeteries > mortuary_services -Service location > Financial service,financial_service,,,NARROWER,bank_credit_union,financial_service > bank_credit_union -Service location > Financial service,financial_service,,,NARROWER,brokers,financial_service > brokers -Service location > Financial service,financial_service,,,NARROWER,business_banking_service,financial_service > business_banking_service -Service location > Financial service,financial_service,,,NARROWER,business_brokers,financial_service > brokers > business_brokers -Service location > Financial service,financial_service,,,NARROWER,business_financing,financial_service > business_financing -Service location > Financial service,financial_service,,,NARROWER,coin_dealers,financial_service > coin_dealers -Service location > Financial service,financial_service,,,NARROWER,collection_agencies,financial_service > collection_agencies -Service location > Financial service,financial_service,,,NARROWER,credit_and_debt_counseling,financial_service > credit_and_debt_counseling -Service location > Financial service,financial_service,,,NARROWER,currency_exchange,financial_service > currency_exchange -Service location > Financial service,financial_service,,,NARROWER,debt_relief_services,financial_service > debt_relief_services -Service location > Financial service,financial_service,,,NARROWER,financial_advising,financial_service > financial_advising -Service location > Financial service,financial_service,,,EXACT,financial_service,financial_service -Service location > Financial service,financial_service,,,NARROWER,holding_companies,financial_service > holding_companies -Service location > Financial service,financial_service,,,NARROWER,investing,financial_service > investing -Service location > Financial service,financial_service,,,NARROWER,investment_management_company,financial_service > investment_management_company -Service location > Financial service,financial_service,,,NARROWER,money_transfer_services,financial_service > money_transfer_services -Service location > Financial service,financial_service,,,NARROWER,private_equity_firm,private_establishments_and_corporates > private_equity_firm -Service location > Financial service,financial_service,,,NARROWER,real_estate_investment,real_estate > real_estate_investment -Service location > Financial service,financial_service,,,NARROWER,stock_and_bond_brokers,financial_service > brokers > stock_and_bond_brokers -Service location > Financial service,financial_service,,,NARROWER,trusts,financial_service > trusts -Service location > Financial service > Accountant or bookkeeper,accountant_or_bookkeeper,,,EXACT,accountant,financial_service > accountant -Service location > Financial service > Accountant or bookkeeper,accountant_or_bookkeeper,,,EXACT,bookkeeper,professional_services > bookkeeper -Service location > Financial service > ATM,atm,,,EXACT,atms,financial_service > atms -Service location > Financial service > Bank,bank,,,EXACT,banks,financial_service > bank_credit_union > banks -Service location > Financial service > Credit union,credit_union,,,EXACT,credit_union,financial_service > bank_credit_union > credit_union -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,auto_insurance,financial_service > insurance_agency > auto_insurance -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,farm_insurance,financial_service > insurance_agency > farm_insurance -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,fidelity_and_surety_bonds,financial_service > insurance_agency > fidelity_and_surety_bonds -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,health_insurance_office,health_and_medical > health_insurance_office -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,home_and_rental_insurance,financial_service > insurance_agency > home_and_rental_insurance -Service location > Financial service > Insurance agency,insurance_agency,,,EXACT,insurance_agency,financial_service > insurance_agency -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,life_insurance,financial_service > insurance_agency > life_insurance -Service location > Financial service > Insurance agency,insurance_agency,,,NARROWER,public_adjuster,professional_services > public_adjuster -Service location > Financial service > Loan provider,loan_provider,,,NARROWER,auto_loan_provider,financial_service > installment_loans > auto_loan_provider -Service location > Financial service > Loan provider,loan_provider,,,NARROWER,check_cashing_payday_loans,financial_service > check_cashing_payday_loans -Service location > Financial service > Loan provider,loan_provider,,,CLOSE,installment_loans,financial_service > installment_loans -Service location > Financial service > Loan provider,loan_provider,,,NARROWER,mortgage_broker,real_estate > mortgage_broker -Service location > Financial service > Loan provider,loan_provider,,,NARROWER,mortgage_lender,financial_service > installment_loans > mortgage_lender -Service location > Financial service > Tax preparation service,tax_preparation_service,,,EXACT,tax_services,financial_service > tax_services -Service location > Food service > Food delivery service,food_delivery_service,,,EXACT,food_delivery_service,retail > food > food_delivery_service -Service location > Home service,home_service,,,NARROWER,antenna_service,professional_services > antenna_service -Service location > Home service,home_service,,,NARROWER,artificial_turf,home_service > artificial_turf -Service location > Home service,home_service,,,NARROWER,backflow_services,home_service > plumbing > backflow_services -Service location > Home service,home_service,,,NARROWER,bathtub_and_sink_repairs,home_service > bathtub_and_sink_repairs -Service location > Home service,home_service,,,NARROWER,cabinet_sales_service,home_service > cabinet_sales_service -Service location > Home service,home_service,,,NARROWER,carpet_dyeing,professional_services > carpet_dyeing -Service location > Home service,home_service,,,NARROWER,carpet_installation,home_service > carpet_installation -Service location > Home service,home_service,,,NARROWER,ceiling_service,home_service > ceiling_and_roofing_repair_and_service > ceiling_service -Service location > Home service,home_service,,,NARROWER,childproofing,home_service > childproofing -Service location > Home service,home_service,,,NARROWER,chimney_service,home_service > chimney_service -Service location > Home service,home_service,,,NARROWER,chimney_sweep,home_service > chimney_service > chimney_sweep -Service location > Home service,home_service,,,NARROWER,clock_repair_service,professional_services > clock_repair_service -Service location > Home service,home_service,,,NARROWER,countertop_installation,home_service > countertop_installation -Service location > Home service,home_service,,,NARROWER,damage_restoration,home_service > damage_restoration -Service location > Home service,home_service,,,NARROWER,deck_and_railing_sales_service,home_service > deck_and_railing_sales_service -Service location > Home service,home_service,,,NARROWER,demolition_service,home_service > demolition_service -Service location > Home service,home_service,,,NARROWER,door_sales_service,home_service > door_sales_service -Service location > Home service,home_service,,,NARROWER,drywall_services,home_service > drywall_services -Service location > Home service,home_service,,,NARROWER,excavation_service,home_service > excavation_service -Service location > Home service,home_service,,,NARROWER,exterior_design,home_service > exterior_design -Service location > Home service,home_service,,,NARROWER,fence_and_gate_sales_service,home_service > fence_and_gate_sales_service -Service location > Home service,home_service,,,NARROWER,feng_shui,professional_services > feng_shui -Service location > Home service,home_service,,,NARROWER,fire_and_water_damage_restoration,home_service > damage_restoration > fire_and_water_damage_restoration -Service location > Home service,home_service,,,NARROWER,fire_protection_service,home_service > fire_protection_service -Service location > Home service,home_service,,,NARROWER,fireplace_service,home_service > fireplace_service -Service location > Home service,home_service,,,NARROWER,firewood,home_service > firewood -Service location > Home service,home_service,,,NARROWER,foundation_repair,home_service > foundation_repair -Service location > Home service,home_service,,,NARROWER,furniture_assembly,home_service > furniture_assembly -Service location > Home service,home_service,,,NARROWER,furniture_rental_service,professional_services > furniture_rental_service -Service location > Home service,home_service,,,NARROWER,furniture_repair,professional_services > furniture_repair -Service location > Home service,home_service,,,NARROWER,furniture_reupholstery,professional_services > furniture_reupholstery -Service location > Home service,home_service,,,NARROWER,garage_door_service,home_service > garage_door_service -Service location > Home service,home_service,,,NARROWER,glass_and_mirror_sales_service,home_service > glass_and_mirror_sales_service -Service location > Home service,home_service,,,NARROWER,grout_service,home_service > grout_service -Service location > Home service,home_service,,,NARROWER,gutter_service,home_service > gutter_service -Service location > Home service,home_service,,,NARROWER,holiday_decorating,home_service > holiday_decorating -Service location > Home service,home_service,,,NARROWER,home_automation,home_service > home_automation -Service location > Home service,home_service,,,NARROWER,home_energy_auditor,home_service > home_energy_auditor -Service location > Home service,home_service,,,NARROWER,home_inspector,home_service > home_inspector -Service location > Home service,home_service,,,NARROWER,home_network_installation,home_service > home_network_installation -Service location > Home service,home_service,,,NARROWER,home_security,home_service > home_security -Service location > Home service,home_service,,,EXACT,home_service,home_service -Service location > Home service,home_service,,,NARROWER,home_window_tinting,home_service > home_window_tinting -Service location > Home service,home_service,,,NARROWER,homeowner_association,real_estate > homeowner_association -Service location > Home service,home_service,,,NARROWER,house_sitting,home_service > house_sitting -Service location > Home service,home_service,,,NARROWER,insulation_installation,home_service > insulation_installation -Service location > Home service,home_service,,,NARROWER,junk_removal_and_hauling,professional_services > junk_removal_and_hauling -Service location > Home service,home_service,,,NARROWER,knife_sharpening,professional_services > knife_sharpening -Service location > Home service,home_service,,,NARROWER,lawn_mower_repair_service,professional_services > lawn_mower_repair_service -Service location > Home service,home_service,,,NARROWER,lighting_fixtures_and_equipment,home_service > lighting_fixtures_and_equipment -Service location > Home service,home_service,,,NARROWER,masonry_concrete,home_service > masonry_concrete -Service location > Home service,home_service,,,NARROWER,misting_system_services,professional_services > misting_system_services -Service location > Home service,home_service,,,NARROWER,mobile_home_repair,home_service > mobile_home_repair -Service location > Home service,home_service,,,NARROWER,patio_covers,home_service > patio_covers -Service location > Home service,home_service,,,NARROWER,plasterer,home_service > plasterer -Service location > Home service,home_service,,,NARROWER,pool_and_hot_tub_services,home_service > pool_and_hot_tub_services -Service location > Home service,home_service,,,NARROWER,pool_cleaning,home_service > pool_cleaning -Service location > Home service,home_service,,,NARROWER,pressure_washing,home_service > pressure_washing -Service location > Home service,home_service,,,NARROWER,refinishing_services,home_service > refinishing_services -Service location > Home service,home_service,,,NARROWER,security_systems,home_service > security_systems -Service location > Home service,home_service,,,NARROWER,septic_services,professional_services > septic_services -Service location > Home service,home_service,,,NARROWER,shades_and_blinds,home_service > shades_and_blinds -Service location > Home service,home_service,,,NARROWER,shutters,home_service > shutters -Service location > Home service,home_service,,,NARROWER,siding,home_service > siding -Service location > Home service,home_service,,,NARROWER,skylight_installation,home_service > windows_installation > skylight_installation -Service location > Home service,home_service,,,NARROWER,snow_removal_service,professional_services > snow_removal_service -Service location > Home service,home_service,,,NARROWER,solar_installation,home_service > solar_installation -Service location > Home service,home_service,,,NARROWER,solar_panel_cleaning,home_service > solar_panel_cleaning -Service location > Home service,home_service,,,NARROWER,structural_engineer,home_service > structural_engineer -Service location > Home service,home_service,,,NARROWER,stucco_services,home_service > stucco_services -Service location > Home service,home_service,,,NARROWER,television_service_providers,home_service > television_service_providers -Service location > Home service,home_service,,,NARROWER,tiling,home_service > tiling -Service location > Home service,home_service,,,NARROWER,wallpaper_installers,home_service > wallpaper_installers -Service location > Home service,home_service,,,NARROWER,water_delivery,professional_services > water_delivery -Service location > Home service,home_service,,,NARROWER,water_purification_services,home_service > water_purification_services -Service location > Home service,home_service,,,NARROWER,waterproofing,home_service > waterproofing -Service location > Home service,home_service,,,NARROWER,well_drilling,professional_services > well_drilling -Service location > Home service,home_service,,,NARROWER,wildlife_control,professional_services > wildlife_control -Service location > Home service,home_service,,,NARROWER,window_washing,home_service > window_washing -Service location > Home service,home_service,,,NARROWER,windows_installation,home_service > windows_installation -Service location > Home service > Appliance repair service,applicance_repair_service,,,EXACT,appliance_repair_service,professional_services > appliance_repair_service -Service location > Home service > Appliance repair service,applicance_repair_service,,,NARROWER,washer_and_dryer_repair_service,home_service > washer_and_dryer_repair_service -Service location > Home service > Appliance repair service,applicance_repair_service,,,NARROWER,water_heater_installation_repair,home_service > water_heater_installation_repair -Service location > Home service > Carpentry service,carpentry_service,,,EXACT,carpenter,home_service > carpenter -Service location > Home service > Carpet cleaning service,carpet_cleaning_service,,,EXACT,carpet_cleaning,home_service > carpet_cleaning -Service location > Home service > Electrical service,electrical_service,,,EXACT,electrician,home_service > electrician -Service location > Home service > Handyman service,handyman_service,,,EXACT,handyman,home_service > handyman -Service location > Home service > House cleaning service,house_cleaning_service,,,EXACT,home_cleaning,home_service > home_cleaning -Service location > Home service > HVAC service,hvac_service,,,NARROWER,air_duct_cleaning_service,professional_services > air_duct_cleaning_service -Service location > Home service > HVAC service,hvac_service,,,EXACT,hvac_services,home_service > hvac_services -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,CLOSE,gardener,home_service > landscaping > gardener -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,NARROWER,indoor_landscaping,professional_services > indoor_landscaping -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,NARROWER,irrigation,home_service > irrigation -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,NARROWER,landscape_architect,home_service > landscaping > landscape_architect -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,CLOSE,landscaping,home_service > landscaping -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,NARROWER,lawn_service,home_service > landscaping > lawn_service -Service location > Home service > Lanscaping or gardening service,landscaping_gardening_service,,,NARROWER,tree_services,home_service > landscaping > tree_services -Service location > Home service > Locksmith service,locksmith_service,,,EXACT,key_and_locksmith,home_service > key_and_locksmith -Service location > Home service > Moving or packing service,moving_service,,,EXACT,movers,home_service > movers -Service location > Home service > Moving or packing service,moving_service,,,NARROWER,packing_services,home_service > packing_services -Service location > Home service > Painting service,painting_service,,,EXACT,painting,home_service > painting -Service location > Home service > Pest control service,pest_control_service,,,EXACT,pest_control_service,professional_services > pest_control_service -Service location > Home service > Plumbing service,plumbing_service,,,NARROWER,hydro_jetting,professional_services > hydro_jetting -Service location > Home service > Plumbing service,plumbing_service,,,EXACT,plumbing,home_service > plumbing -Service location > Home service > Remodeling service,remodeling_service,,,NARROWER,bathroom_remodeling,home_service > bathroom_remodeling -Service location > Home service > Remodeling service,remodeling_service,,,NARROWER,closet_remodeling,home_service > closet_remodeling -Service location > Home service > Remodeling service,remodeling_service,,,NARROWER,kitchen_remodeling,home_service > kitchen_remodeling -Service location > Home service > Roofing service,roofing_service,,,NARROWER,ceiling_and_roofing_repair_and_service,home_service > ceiling_and_roofing_repair_and_service -Service location > Home service > Roofing service,roofing_service,,,EXACT,roofing,home_service > ceiling_and_roofing_repair_and_service > roofing -Service location > Laundry service,laundry_service,,,EXACT,laundry_services,professional_services > laundry_services -Service location > Laundry service > Dry cleaning service,dry_cleaning_service,,,EXACT,dry_cleaning,professional_services > laundry_services > dry_cleaning -Service location > Laundry service > Laundromat,laundromat,,,EXACT,laundromat,professional_services > laundry_services > laundromat -Service location > Legal service,legal_service,,,NARROWER,court_reporter,professional_services > legal_services > court_reporter -Service location > Legal service,legal_service,,,EXACT,legal_services,professional_services > legal_services -Service location > Legal service,legal_service,,,NARROWER,patent_law,professional_services > patent_law -Service location > Legal service,legal_service,,,NARROWER,private_investigation,professional_services > private_investigation -Service location > Legal service,legal_service,,,NARROWER,process_servers,professional_services > legal_services > process_servers -Service location > Legal service,legal_service,,,NARROWER,tenant_and_eviction_law,professional_services > tenant_and_eviction_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,appellate_practice_lawyers,professional_services > lawyer > appellate_practice_lawyers -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,bankruptcy_law,professional_services > lawyer > bankruptcy_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,business_law,professional_services > lawyer > business_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,civil_rights_lawyers,professional_services > lawyer > civil_rights_lawyers -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,contract_law,professional_services > lawyer > contract_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,criminal_defense_law,professional_services > lawyer > criminal_defense_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,disability_law,professional_services > lawyer > disability_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,divorce_and_family_law,professional_services > lawyer > divorce_and_family_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,dui_law,professional_services > lawyer > dui_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,employment_law,professional_services > lawyer > employment_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,entertainment_law,professional_services > lawyer > entertainment_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,estate_planning_law,professional_services > lawyer > estate_planning_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,general_litigation,professional_services > lawyer > general_litigation -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,immigration_law,professional_services > lawyer > immigration_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,ip_and_internet_law,professional_services > lawyer > ip_and_internet_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,EXACT,lawyer,professional_services > lawyer -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,medical_law,professional_services > lawyer > medical_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,personal_injury_law,professional_services > lawyer > personal_injury_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,real_estate_law,professional_services > lawyer > real_estate_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,social_security_law,professional_services > lawyer > social_security_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,tax_law,professional_services > lawyer > tax_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,traffic_ticketing_law,professional_services > lawyer > traffic_ticketing_law -Service location > Legal service > Attorney or law firm,attorney_or_law_firm,,,NARROWER,workers_compensation_law,professional_services > lawyer > workers_compensation_law -Service location > Legal service > Bail bonds service,bail_bonds_service,,,EXACT,bail_bonds_service,professional_services > bail_bonds_service -Service location > Legal service > Notary public,notary_public,,,EXACT,notary_public,professional_services > notary_public -Service location > Legal service > Paralegal service,paralegal_service,,,EXACT,paralegal_services,professional_services > lawyer > paralegal_services -"Service location > Legal service > Will, trust or probate service",will_trust_probate_service,,,EXACT,wills_trusts_and_probate,professional_services > lawyer > estate_planning_law > wills_trusts_and_probate -Service location > Media service,media_service,,,NARROWER,animation_studio,mass_media > media_news_company > animation_studio -Service location > Media service,media_service,,,NARROWER,art_restoration,mass_media > media_restoration_service > art_restoration -Service location > Media service,media_service,,,NARROWER,art_restoration_service,professional_services > art_restoration_service -Service location > Media service,media_service,,,NARROWER,bookbinding,professional_services > bookbinding -Service location > Media service,media_service,,,NARROWER,broadcasting_media_production,mass_media > media_news_company > broadcasting_media_production -Service location > Media service,media_service,,,NARROWER,calligraphy,professional_services > calligraphy -Service location > Media service,media_service,,,NARROWER,commissioned_artist,professional_services > commissioned_artist -Service location > Media service,media_service,,,NARROWER,community_book_boxes,professional_services > community_book_boxes -Service location > Media service,media_service,,,NARROWER,copywriting_service,professional_services > copywriting_service -Service location > Media service,media_service,,,NARROWER,digitizing_services,professional_services > digitizing_services -Service location > Media service,media_service,,,NARROWER,duplication_services,professional_services > duplication_services -Service location > Media service,media_service,,,NARROWER,editorial_services,professional_services > editorial_services -Service location > Media service,media_service,,,NARROWER,engraving,professional_services > engraving -Service location > Media service,media_service,,,NARROWER,game_publisher,mass_media > media_news_company > game_publisher -Service location > Media service,media_service,,,CLOSE,mass_media,mass_media -Service location > Media service,media_service,,,NARROWER,media_agency,mass_media > media_news_company > media_agency -Service location > Media service,media_service,,,NARROWER,media_critic,mass_media > media_critic -Service location > Media service,media_service,,,NARROWER,media_news_company,mass_media > media_news_company -Service location > Media service,media_service,,,NARROWER,media_news_website,mass_media > media_news_website -Service location > Media service,media_service,,,NARROWER,media_restoration_service,mass_media > media_restoration_service -Service location > Media service,media_service,,,NARROWER,movie_critic,mass_media > media_critic > movie_critic -Service location > Media service,media_service,,,NARROWER,movie_television_studio,mass_media > media_news_company > movie_television_studio -Service location > Media service,media_service,,,NARROWER,music_critic,mass_media > media_critic > music_critic -Service location > Media service,media_service,,,NARROWER,music_production_services,professional_services > music_production_services -Service location > Media service,media_service,,,NARROWER,musical_instrument_services,professional_services > musical_instrument_services -Service location > Media service,media_service,,,NARROWER,piano_services,professional_services > musical_instrument_services > piano_services -Service location > Media service,media_service,,,NARROWER,record_label,professional_services > record_label -Service location > Media service,media_service,,,NARROWER,recording_and_rehearsal_studio,professional_services > recording_and_rehearsal_studio -Service location > Media service,media_service,,,NARROWER,shredding_services,professional_services > shredding_services -Service location > Media service,media_service,,,NARROWER,social_media_agency,professional_services > social_media_agency -Service location > Media service,media_service,,,NARROWER,social_media_company,mass_media > media_news_company > social_media_company -Service location > Media service,media_service,,,NARROWER,translation_services,professional_services > translation_services -Service location > Media service,media_service,,,NARROWER,typing_services,professional_services > typing_services -Service location > Media service,media_service,,,NARROWER,video_film_production,professional_services > video_film_production -Service location > Media service,media_service,,,NARROWER,video_game_critic,mass_media > media_critic > video_game_critic -Service location > Media service,media_service,,,NARROWER,vocal_coach,professional_services > musical_instrument_services > vocal_coach -Service location > Media service,media_service,,,NARROWER,weather_forecast_services,mass_media > media_news_company > weather_forecast_services -Service location > Media service,media_service,,,NARROWER,weather_station,public_service_and_government > weather_station -Service location > Media service,media_service,,,NARROWER,writing_service,professional_services > writing_service -Service location > Media service > Music production service,music_production_service,,,CLOSE,music_production,mass_media > media_news_company > music_production -Service location > Media service > Photography service,photography_service,,,NARROWER,boudoir_photography,professional_services > event_planning > photographer > boudoir_photography -Service location > Media service > Photography service,photography_service,,,NARROWER,event_photography,professional_services > event_planning > photographer > event_photography -Service location > Media service > Photography service,photography_service,,,NARROWER,photographer,professional_services > event_planning > photographer -Service location > Media service > Photography service,photography_service,,,CLOSE,photography_store_and_services,retail > shopping > photography_store_and_services -Service location > Media service > Photography service,photography_service,,,NARROWER,session_photography,professional_services > event_planning > photographer > session_photography -Service location > Media service > Print media service,print_media_service,,,NARROWER,book_magazine_distribution,mass_media > media_news_company > book_magazine_distribution -Service location > Media service > Print media service,print_media_service,,,CLOSE,print_media,mass_media > print_media -Service location > Media service > Print media service,print_media_service,,,NARROWER,topic_publisher,mass_media > media_news_company > topic_publisher -Service location > Media service > Radio station,radio_station,,,EXACT,radio_station,mass_media > media_news_company > radio_station -Service location > Media service > Television station,television_station,,,EXACT,television_station,mass_media > media_news_company > television_station -Service location > Personal service,personal_service,,,NARROWER,acne_treatment,beauty_and_spa > acne_treatment -Service location > Personal service,personal_service,,,NARROWER,aromatherapy,beauty_and_spa > aromatherapy -Service location > Personal service,personal_service,,,NARROWER,esthetician,beauty_and_spa > skin_care > esthetician -Service location > Personal service,personal_service,,,NARROWER,foot_care,beauty_and_spa > foot_care -Service location > Personal service,personal_service,,,NARROWER,gents_tailor,professional_services > sewing_and_alterations > gents_tailor -Service location > Personal service,personal_service,,,NARROWER,hair_loss_center,beauty_and_spa > hair_loss_center -Service location > Personal service,personal_service,,,NARROWER,hair_removal,beauty_and_spa > hair_removal -Service location > Personal service,personal_service,,,NARROWER,hair_replacement,beauty_and_spa > hair_replacement -Service location > Personal service,personal_service,,,NARROWER,health_and_wellness_club,health_and_medical > health_and_wellness_club -Service location > Personal service,personal_service,,,NARROWER,image_consultant,beauty_and_spa > image_consultant -Service location > Personal service,personal_service,,,NARROWER,jewelry_repair_service,professional_services > jewelry_repair_service -Service location > Personal service,personal_service,,,NARROWER,laser_hair_removal,beauty_and_spa > hair_removal > laser_hair_removal -Service location > Personal service,personal_service,,,NARROWER,makeup_artist,beauty_and_spa > makeup_artist -Service location > Personal service,personal_service,,,NARROWER,matchmaker,professional_services > matchmaker -Service location > Personal service,personal_service,,,NARROWER,onsen,beauty_and_spa > onsen -Service location > Personal service,personal_service,,,NARROWER,permanent_makeup,beauty_and_spa > permanent_makeup -Service location > Personal service,personal_service,,,NARROWER,personal_assistant,professional_services > personal_assistant -Service location > Personal service,personal_service,,,EXACT,personal_care_service,health_and_medical > personal_care_service -Service location > Personal service,personal_service,,,NARROWER,personal_shopper,retail > shopping > personal_shopper -Service location > Personal service,personal_service,,,NARROWER,public_bath_houses,beauty_and_spa > public_bath_houses -Service location > Personal service,personal_service,,,NARROWER,sauna,health_and_medical > sauna -Service location > Personal service,personal_service,,,NARROWER,shoe_repair,professional_services > shoe_repair -Service location > Personal service,personal_service,,,NARROWER,shoe_shining_service,professional_services > shoe_shining_service -Service location > Personal service,personal_service,,,NARROWER,skin_care,beauty_and_spa > skin_care -Service location > Personal service,personal_service,,,NARROWER,snuggle_service,professional_services > snuggle_service -Service location > Personal service,personal_service,,,NARROWER,sugaring,beauty_and_spa > hair_removal > sugaring -Service location > Personal service,personal_service,,,NARROWER,taxidermist,professional_services > taxidermist -Service location > Personal service,personal_service,,,NARROWER,teeth_whitening,beauty_and_spa > teeth_whitening -Service location > Personal service,personal_service,,,NARROWER,threading_service,beauty_and_spa > hair_removal > threading_service -Service location > Personal service,personal_service,,,NARROWER,turkish_baths,beauty_and_spa > turkish_baths -Service location > Personal service,personal_service,,,NARROWER,watch_repair_service,professional_services > watch_repair_service -Service location > Personal service,personal_service,,,NARROWER,waxing,beauty_and_spa > hair_removal > waxing -Service location > Personal service > Barber shop,barber_shop,,,EXACT,barber,beauty_and_spa > barber -Service location > Personal service > Beauty salon,beauty_salon,,,CLOSE,beauty_and_spa,beauty_and_spa -Service location > Personal service > Beauty salon,beauty_salon,,,EXACT,beauty_salon,beauty_and_spa > beauty_salon -Service location > Personal service > Beauty salon,beauty_salon,,,NARROWER,eyebrow_service,beauty_and_spa > eyebrow_service -Service location > Personal service > Beauty salon,beauty_salon,,,NARROWER,eyelash_service,beauty_and_spa > eyelash_service -Service location > Personal service > Clothing alteration service,clothing_alteration_service,,,CLOSE,sewing_and_alterations,professional_services > sewing_and_alterations -Service location > Personal service > Hair salon,hair_salon,,,NARROWER,blow_dry_blow_out_service,beauty_and_spa > hair_salon > blow_dry_blow_out_service -Service location > Personal service > Hair salon,hair_salon,,,NARROWER,hair_extensions,beauty_and_spa > hair_extensions -Service location > Personal service > Hair salon,hair_salon,,,EXACT,hair_salon,beauty_and_spa > hair_salon -Service location > Personal service > Hair salon,hair_salon,,,NARROWER,hair_stylist,beauty_and_spa > hair_salon > hair_stylist -Service location > Personal service > Hair salon,hair_salon,,,NARROWER,kids_hair_salon,beauty_and_spa > hair_salon > kids_hair_salon -Service location > Personal service > Massage salon,massage_salon,,,EXACT,massage,beauty_and_spa > massage -Service location > Personal service > Nail salon,nail_salon,,,EXACT,nail_salon,beauty_and_spa > nail_salon -Service location > Personal service > Spa,spa,,,NARROWER,day_spa,beauty_and_spa > spas > day_spa -Service location > Personal service > Spa,spa,,,NARROWER,float_spa,health_and_medical > float_spa -Service location > Personal service > Spa,spa,,,NARROWER,health_spa,beauty_and_spa > health_spa -Service location > Personal service > Spa,spa,,,NARROWER,medical_spa,beauty_and_spa > spas > medical_spa -Service location > Personal service > Spa,spa,,,EXACT,spas,beauty_and_spa > spas -Service location > Personal service > Tanning salon,tanning_salon,,,NARROWER,spray_tanning,beauty_and_spa > tanning_salon > spray_tanning -Service location > Personal service > Tanning salon,tanning_salon,,,NARROWER,tanning_bed,beauty_and_spa > tanning_salon > tanning_bed -Service location > Personal service > Tanning salon,tanning_salon,,,EXACT,tanning_salon,beauty_and_spa > tanning_salon -Service location > Personal service > Tattoo or piercing salon,tattoo_or_piercing_salon,,,NARROWER,piercing,beauty_and_spa > tattoo_and_piercing > piercing -Service location > Personal service > Tattoo or piercing salon,tattoo_or_piercing_salon,,,NARROWER,tattoo,beauty_and_spa > tattoo_and_piercing > tattoo -Service location > Personal service > Tattoo or piercing salon,tattoo_or_piercing_salon,,,EXACT,tattoo_and_piercing,beauty_and_spa > tattoo_and_piercing -Service location > Printing service,printing_service,,,NARROWER,3d_printing_service,professional_services > 3d_printing_service -Service location > Printing service,printing_service,,,EXACT,printing_services,professional_services > printing_services -Service location > Printing service,printing_service,,,NARROWER,screen_printing_t_shirt_printing,professional_services > screen_printing_t_shirt_printing -Service location > Real estate service,real_estate_service,,,NARROWER,display_home_center,real_estate > display_home_center -Service location > Real estate service,real_estate_service,,,NARROWER,escrow_services,real_estate > real_estate_service > escrow_services -Service location > Real estate service,real_estate_service,,,NARROWER,estate_liquidation,real_estate > estate_liquidation -Service location > Real estate service,real_estate_service,,,NARROWER,home_staging,real_estate > home_staging -Service location > Real estate service,real_estate_service,,,NARROWER,kitchen_incubator,real_estate > kitchen_incubator -Service location > Real estate service,real_estate_service,,,NARROWER,land_surveying,real_estate > real_estate_service > land_surveying -Service location > Real estate service,real_estate_service,,,EXACT,real_estate,real_estate -Service location > Real estate service,real_estate_service,,,NARROWER,real_estate_photography,real_estate > real_estate_service > real_estate_photography -Service location > Real estate service,real_estate_service,,,EXACT,real_estate_service,real_estate > real_estate_service -Service location > Real estate service,real_estate_service,,,NARROWER,shared_office_space,real_estate > shared_office_space -Service location > Real estate service > Building appraisal service,building_appraisal_service,,,CLOSE,appraisal_services,professional_services > appraisal_services -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,blueprinters,professional_services > construction_services > blueprinters -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,construction_management,professional_services > construction_services > construction_management -Service location > Real estate service > Building construction service,building_construction_service,,,EXACT,construction_services,professional_services > construction_services -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,gravel_professionals,professional_services > construction_services > stone_and_masonry > gravel_professionals -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,lime_professionals,professional_services > construction_services > stone_and_masonry > lime_professionals -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,marble_and_granite_professionals,professional_services > construction_services > stone_and_masonry > marble_and_granite_professionals -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,masonry_contractors,professional_services > construction_services > stone_and_masonry > masonry_contractors -Service location > Real estate service > Building construction service,building_construction_service,,,NARROWER,stone_and_masonry,professional_services > construction_services > stone_and_masonry -Service location > Real estate service > Building contractor service,building_contractor_service,,,NARROWER,altering_and_remodeling_contractor,home_service > contractor > altering_and_remodeling_contractor -Service location > Real estate service > Building contractor service,building_contractor_service,,,CLOSE,builders,real_estate > builders -Service location > Real estate service > Building contractor service,building_contractor_service,,,EXACT,building_contractor,home_service > contractor > building_contractor -Service location > Real estate service > Building contractor service,building_contractor_service,,,CLOSE,contractor,home_service > contractor -Service location > Real estate service > Building contractor service,building_contractor_service,,,NARROWER,flooring_contractors,home_service > contractor > flooring_contractors -Service location > Real estate service > Building contractor service,building_contractor_service,,,NARROWER,paving_contractor,home_service > contractor > paving_contractor -Service location > Real estate service > Building inspection service,building_inspection_service,,,CLOSE,inspection_services,professional_services > construction_services > inspection_services -Service location > Real estate service > Property management service,property_management_service,,,NARROWER,apartment_agent,real_estate > real_estate_agent > apartment_agent -Service location > Real estate service > Property management service,property_management_service,,,EXACT,property_management,real_estate > property_management -Service location > Real estate service > Property management service,property_management_service,,,NARROWER,rental_services,real_estate > real_estate_service > rental_services -Service location > Real estate service > Real estate agency,real_estate_agency,,,EXACT,real_estate_agent,real_estate > real_estate_agent -Service location > Real estate service > Real estate developer,real_estate_developer,,,CLOSE,home_developer,real_estate > builders > home_developer -Service location > Security service,security_service,,,EXACT,security_services,professional_services > security_services -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,distribution_services,business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_services -Service location > Shipping or delivery service,shipping_delivery_service,,,CLOSE,freight_and_cargo_service,business_to_business > business_storage_and_transportation > freight_and_cargo_service -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,freight_forwarding_agency,business_to_business > business_storage_and_transportation > freight_and_cargo_service > freight_forwarding_agency -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,mailbox_center,professional_services > mailbox_center -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,motor_freight_trucking,business_to_business > business_storage_and_transportation > motor_freight_trucking -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,package_locker,professional_services > package_locker -Service location > Shipping or delivery service,shipping_delivery_service,,,CLOSE,pipeline_transportation,business_to_business > business_storage_and_transportation > pipeline_transportation -Service location > Shipping or delivery service,shipping_delivery_service,,,NARROWER,railroad_freight,business_to_business > business_storage_and_transportation > railroad_freight -Service location > Shipping or delivery service > Courier service,courier_service,,,CLOSE,courier_and_delivery_services,professional_services > courier_and_delivery_services -Service location > Shipping or delivery service > Post office,post_office,,,EXACT,post_office,public_service_and_government > post_office -Service location > Shipping or delivery service > Post office,post_office,,,NARROWER,shipping_collection_services,public_service_and_government > post_office > shipping_collection_services -Service location > Shipping or delivery service > Shipiing center,shipping_center,,,EXACT,shipping_center,professional_services > shipping_center -Service location > Social or community service,social_or_community_service,,,CLOSE,community_services_non_profits,public_service_and_government > community_services -Service location > Social or community service,social_or_community_service,,,NARROWER,donation_center,professional_services > donation_center -Service location > Social or community service,social_or_community_service,,,NARROWER,elder_care_planning,professional_services > elder_care_planning -Service location > Social or community service,social_or_community_service,,,NARROWER,emergency_service,professional_services > emergency_service -Service location > Social or community service,social_or_community_service,,,NARROWER,gay_and_lesbian_services_organization,public_service_and_government > organization > social_service_organizations > gay_and_lesbian_services_organization -Service location > Social or community service,social_or_community_service,,,NARROWER,halfway_house,health_and_medical > halfway_house -Service location > Social or community service,social_or_community_service,,,NARROWER,home_organization,public_service_and_government > organization > home_organization -Service location > Social or community service,social_or_community_service,,,NARROWER,housing_authorities,public_service_and_government > organization > social_service_organizations > housing_authorities -Service location > Social or community service,social_or_community_service,,,NARROWER,housing_cooperative,real_estate > housing_cooperative -Service location > Social or community service,social_or_community_service,,,NARROWER,immigration_assistance_services,professional_services > immigration_assistance_services -Service location > Social or community service,social_or_community_service,,,NARROWER,low_income_housing,public_service_and_government > low_income_housing -Service location > Social or community service,social_or_community_service,,,NARROWER,retirement_home,public_service_and_government > retirement_home -Service location > Social or community service,social_or_community_service,,,NARROWER,scout_hall,public_service_and_government > scout_hall -Service location > Social or community service,social_or_community_service,,,NARROWER,social_and_human_services,public_service_and_government > organization > social_service_organizations > social_and_human_services -Service location > Social or community service,social_or_community_service,,,CLOSE,social_service_organizations,public_service_and_government > organization > social_service_organizations -Service location > Social or community service,social_or_community_service,,,NARROWER,social_welfare_center,public_service_and_government > organization > social_service_organizations > social_welfare_center -Service location > Social or community service,social_or_community_service,,,NARROWER,volunteer_association,public_service_and_government > organization > social_service_organizations > volunteer_association -Service location > Social or community service > Charity organization,charity_organization,,,EXACT,charity_organization,public_service_and_government > organization > social_service_organizations > charity_organization -Service location > Social or community service > Child protection service,child_protection_service,,,EXACT,child_protection_service,public_service_and_government > organization > social_service_organizations > child_protection_service -Service location > Social or community service > Community center,community_center,,,EXACT,community_center,public_service_and_government > community_center -Service location > Social or community service > Food bank,food_bank,,,EXACT,food_banks,public_service_and_government > organization > social_service_organizations > food_banks -Service location > Social or community service > Foster care service,foster_care_service,,,EXACT,foster_care_services,public_service_and_government > organization > social_service_organizations > foster_care_services -Service location > Social or community service > Homeless shelter,homeless_shelter,,,EXACT,homeless_shelter,public_service_and_government > organization > social_service_organizations > homeless_shelter -Service location > Social or community service > Senior citizen service,senior_citizen_service,,,EXACT,senior_citizen_services,public_service_and_government > organization > social_service_organizations > senior_citizen_services -Service location > Social or community service > Senior living facility,senior_living_facility,,,NARROWER,assisted_living_facility,health_and_medical > assisted_living_facility -Service location > Social or community service > Youth organization,youth_organization,,,EXACT,youth_organizations,public_service_and_government > organization > social_service_organizations > youth_organizations -Service location > Storage facility,storage_facility,,,NARROWER,automotive_storage_facility,automotive > automotive_services_and_repair > automotive_storage_facility -Service location > Storage facility,storage_facility,,,NARROWER,boat_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > boat_storage_facility -Service location > Storage facility,storage_facility,,,NARROWER,rv_and_boat_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility -Service location > Storage facility,storage_facility,,,NARROWER,rv_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > rv_storage_facility -Service location > Storage facility,storage_facility,,,EXACT,storage_facility,professional_services > storage_facility -Service location > Storage facility > Self storage facility,self_storage_facility,,,EXACT,self_storage_facility,professional_services > storage_facility > self_storage_facility -Service location > Storage facility > Warehouse,warehouse,,,NARROWER,warehouse_rental_services_and_yards,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > warehouse_rental_services_and_yards -Service location > Storage facility > Warehouse,warehouse,,,EXACT,warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > warehouses -Service location > Technical service,technical_service,,,NARROWER,computer_hardware_company,professional_services > computer_hardware_company -Service location > Technical service,technical_service,,,NARROWER,data_recovery,professional_services > it_service_and_computer_repair > data_recovery -Service location > Technical service,technical_service,,,NARROWER,electrical_consultant,professional_services > electrical_consultant -Service location > Technical service,technical_service,,,NARROWER,it_consultant,professional_services > it_service_and_computer_repair > it_consultant -Service location > Technical service,technical_service,,,NARROWER,it_service_and_computer_repair,professional_services > it_service_and_computer_repair -Service location > Technical service,technical_service,,,NARROWER,it_support_and_service,professional_services > it_service_and_computer_repair > it_support_and_service -Service location > Technical service,technical_service,,,NARROWER,machine_and_tool_rentals,professional_services > machine_and_tool_rentals -Service location > Technical service,technical_service,,,NARROWER,metal_detector_services,professional_services > metal_detector_services -Service location > Technical service,technical_service,,,NARROWER,mobility_equipment_services,professional_services > mobility_equipment_services -Service location > Technical service,technical_service,,,NARROWER,telephone_services,professional_services > telephone_services -Service location > Technical service,technical_service,,,NARROWER,tv_mounting,professional_services > tv_mounting -Service location > Technical service > Electronic repair service,electronic_repiar_service,,,EXACT,electronics_repair_shop,professional_services > electronics_repair_shop -Service location > Technical service > Electronic repair service,electronic_repiar_service,,,NARROWER,mobile_phone_repair,professional_services > it_service_and_computer_repair > mobile_phone_repair -Service location > Technical service > Internet service provider,internet_service_provider,,,EXACT,internet_service_provider,professional_services > internet_service_provider -Service location > Technical service > Internet service provider,internet_service_provider,,,NARROWER,web_hosting_service,professional_services > internet_service_provider > web_hosting_service -Service location > Technical service > Software development,software_development,,,NARROWER,e_commerce_service,professional_services > e_commerce_service -Service location > Technical service > Software development,software_development,,,EXACT,software_development,professional_services > software_development -Service location > Telecommunications service,telecommunications_service,,,NARROWER,telecommunications,professional_services > it_service_and_computer_repair > telecommunications -Service location > Telecommunications service,telecommunications_service,,,CLOSE,telecommunications_company,business_to_business > business_to_business_services > telecommunications_company -Service location > Travel service,travel_service,,,CLOSE,travel,travel -Service location > Travel service,travel_service,,,CLOSE,travel_company,business_to_business > business > travel_company -Service location > Travel service,travel_service,,,EXACT,travel_services,travel > travel_services -Service location > Travel service > Luggage storage,luggage_storage,,,CLOSE,luggage_storage,travel > travel_services > luggage_storage -Service location > Travel service > Passport or visa service,passport_visa_service,,,EXACT,passport_and_visa_services,travel > travel_services > passport_and_visa_services -Service location > Travel service > Passport or visa service,passport_visa_service,,,NARROWER,visa_agent,travel > travel_services > passport_and_visa_services > visa_agent -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,aerial_tours,travel > tours > aerial_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,agriturismo,travel > agriturismo -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,architectural_tours,travel > tours > architectural_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,art_tours,travel > tours > art_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,beer_tours,travel > tours > beer_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,bike_tours,travel > tours > bike_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,boat_tours,travel > tours > boat_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,bus_tours,travel > tours > bus_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,cannabis_tour,travel > tours > cannabis_tour -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,food_tours,travel > tours > food_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,historical_tours,travel > tours > historical_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,scooter_tours,travel > tours > scooter_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,sightseeing_tour_agency,travel > travel_services > travel_agents > sightseeing_tour_agency -Service location > Travel service > Tour operator,tour_operator,,,EXACT,tours,travel > tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,walking_tours,travel > tours > walking_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,whale_watching_tours,travel > tours > whale_watching_tours -Service location > Travel service > Tour operator,tour_operator,,,NARROWER,wine_tours,travel > tours > wine_tours -Service location > Travel service > Travel agent,travel_agent,,,EXACT,travel_agents,travel > travel_services > travel_agents -Service location > Travel service > Travel ticket office,travel_ticket_office,,,NARROWER,airline_ticket_agency,travel > airline_ticket_agency -Service location > Travel service > Travel ticket office,travel_ticket_office,,,NARROWER,bus_ticket_agency,travel > bus_ticket_agency -Service location > Travel service > Travel ticket office,travel_ticket_office,,,NARROWER,railway_ticket_agent,travel > railway_ticket_agent -Service location > Travel service > Visitor information center,visitor_information_center,,,EXACT,visitor_center,travel > travel_services > visitor_center -Service location > Vehicle service,vehicle_service,,,NARROWER,aircraft_repair,automotive > aircraft_services_and_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,auto_customization,automotive > automotive_services_and_repair > auto_customization -Service location > Vehicle service,vehicle_service,,,NARROWER,auto_electrical_repair,automotive > automotive_services_and_repair > auto_electrical_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,auto_restoration_services,automotive > automotive_services_and_repair > auto_restoration_services -Service location > Vehicle service,vehicle_service,,,NARROWER,auto_security,automotive > automotive_services_and_repair > auto_security -Service location > Vehicle service,vehicle_service,,,NARROWER,auto_upholstery,automotive > automotive_services_and_repair > auto_upholstery -Service location > Vehicle service,vehicle_service,,,NARROWER,automobile_leasing,automotive > automobile_leasing -Service location > Vehicle service,vehicle_service,,,NARROWER,automobile_registration_service,automotive > automotive_services_and_repair > automobile_registration_service -Service location > Vehicle service,vehicle_service,,,CLOSE,automotive,automotive -Service location > Vehicle service,vehicle_service,,,NARROWER,automotive_consultant,automotive > automotive_services_and_repair > automotive_consultant -Service location > Vehicle service,vehicle_service,,,CLOSE,automotive_services_and_repair,automotive > automotive_services_and_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,automotive_wheel_polishing_service,automotive > automotive_services_and_repair > automotive_wheel_polishing_service -Service location > Vehicle service,vehicle_service,,,NARROWER,avionics_shop,automotive > aircraft_parts_and_supplies > avionics_shop -Service location > Vehicle service,vehicle_service,,,NARROWER,bike_repair_maintenance,professional_services > bike_repair_maintenance -Service location > Vehicle service,vehicle_service,,,NARROWER,boat_service_and_repair,automotive > boat_service_and_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,bus_rentals,professional_services > bus_rentals -Service location > Vehicle service,vehicle_service,,,NARROWER,car_inspection,automotive > automotive_services_and_repair > car_inspection -Service location > Vehicle service,vehicle_service,,,NARROWER,car_stereo_installation,automotive > automotive_services_and_repair > car_stereo_installation -Service location > Vehicle service,vehicle_service,,,NARROWER,car_window_tinting,automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting -Service location > Vehicle service,vehicle_service,,,NARROWER,delegated_driver_service,professional_services > delegated_driver_service -Service location > Vehicle service,vehicle_service,,,NARROWER,emissions_inspection,automotive > automotive_services_and_repair > emissions_inspection -Service location > Vehicle service,vehicle_service,,,NARROWER,mobile_dent_repair,automotive > automotive_services_and_repair > roadside_assistance > mobile_dent_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,motorcycle_rentals,travel > rental_service > motorcycle_rentals -Service location > Vehicle service,vehicle_service,,,NARROWER,motorcycle_repair,automotive > automotive_services_and_repair > motorcycle_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,motorsport_vehicle_repair,automotive > automotive_services_and_repair > motorsport_vehicle_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,oil_change_station,automotive > automotive_services_and_repair > oil_change_station -Service location > Vehicle service,vehicle_service,,,NARROWER,recreation_vehicle_repair,automotive > automotive_services_and_repair > recreation_vehicle_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,rental_service,travel > rental_service -Service location > Vehicle service,vehicle_service,,,NARROWER,rv_rentals,travel > rental_service > rv_rentals -Service location > Vehicle service,vehicle_service,,,NARROWER,tire_dealer_and_repair,automotive > automotive_services_and_repair > tire_dealer_and_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,tire_repair_shop,retail > tire_shop > tire_repair_shop -Service location > Vehicle service,vehicle_service,,,NARROWER,trailer_rentals,travel > rental_service > trailer_rentals -Service location > Vehicle service,vehicle_service,,,NARROWER,trailer_repair,automotive > automotive_services_and_repair > trailer_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,truck_repair,automotive > automotive_services_and_repair > truck_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,vehicle_shipping,automotive > automotive_services_and_repair > vehicle_shipping -Service location > Vehicle service,vehicle_service,,,NARROWER,vehicle_wrap,automotive > automotive_services_and_repair > vehicle_wrap -Service location > Vehicle service,vehicle_service,,,NARROWER,wheel_and_rim_repair,automotive > automotive_services_and_repair > wheel_and_rim_repair -Service location > Vehicle service,vehicle_service,,,NARROWER,windshield_installation_and_repair,automotive > automotive_services_and_repair > windshield_installation_and_repair -Service location > Vehicle service > Auto body shop,auto_body_shop,,,EXACT,auto_body_shop,automotive > automotive_services_and_repair > auto_body_shop -Service location > Vehicle service > Auto detailing service,auto_detailing_service,,,EXACT,auto_detailing,automotive > automotive_services_and_repair > auto_detailing -Service location > Vehicle service > Auto glass service,auto_glass_service,,,EXACT,auto_glass_service,automotive > automotive_services_and_repair > auto_glass_service -Service location > Vehicle service > Auto rental service,auto_rental_service,,,EXACT,car_rental_agency,travel > rental_service > car_rental_agency -Service location > Vehicle service > Auto repair service,auto_repair_service,,,EXACT,automotive_repair,automotive > automotive_repair -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,brake_service_and_repair,automotive > automotive_services_and_repair > brake_service_and_repair -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,diy_auto_shop,automotive > automotive_services_and_repair > diy_auto_shop -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,engine_repair_service,automotive > automotive_services_and_repair > engine_repair_service -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,exhaust_and_muffler_repair,automotive > automotive_services_and_repair > exhaust_and_muffler_repair -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,hybrid_car_repair,automotive > automotive_services_and_repair > hybrid_car_repair -Service location > Vehicle service > Auto repair service,auto_repair_service,,,NARROWER,transmission_repair,automotive > automotive_services_and_repair > transmission_repair -Service location > Vehicle service > Car wash,car_wash,,,EXACT,car_wash,automotive > automotive_services_and_repair > car_wash -Service location > Vehicle service > Emergency roadside service,emergency_roadside_service,,,EXACT,emergency_roadside_service,automotive > automotive_services_and_repair > roadside_assistance > emergency_roadside_service -Service location > Vehicle service > Emergency roadside service,emergency_roadside_service,,,EXACT,roadside_assistance,automotive > automotive_services_and_repair > roadside_assistance -Service location > Vehicle service > Towing service,towing_service,,,EXACT,towing_service,automotive > automotive_services_and_repair > towing_service -Service location > Vehicle service > Truck rental service,truck_rental_service,,,EXACT,truck_rentals,travel > rental_service > truck_rentals -Transportation location,transportation_location,,,NARROWER,bicycle_sharing_location,travel > transportation > bicycle_sharing_location -Transportation location,transportation_location,,,NARROWER,bike_sharing,travel > transportation > bike_sharing -Transportation location,transportation_location,,,NARROWER,bus_service,travel > transportation > bus_service -Transportation location,transportation_location,,,NARROWER,cable_car_service,travel > transportation > cable_car_service -Transportation location,transportation_location,,,NARROWER,coach_bus,travel > transportation > coach_bus -Transportation location,transportation_location,,,NARROWER,metro_station,travel > transportation > metro_station -Transportation location,transportation_location,,,NARROWER,pedicab_service,travel > transportation > pedicab_service -Transportation location,transportation_location,,,NARROWER,public_transportation,travel > transportation > public_transportation -Transportation location,transportation_location,,,NARROWER,railway_service,public_service_and_government > railway_service -Transportation location,transportation_location,,,NARROWER,road_structures_and_services,travel > road_structures_and_services -Transportation location,transportation_location,,,NARROWER,transport_interchange,travel > transportation > transport_interchange -Transportation location,transportation_location,,,CLOSE,transportation,travel > transportation -Transportation location,transportation_location,,,NARROWER,truck_stop,automotive > truck_stop -Transportation location > Air transport facility or service,air_transport_facility_service,,,NARROWER,airline,business_to_business > business > airline -Transportation location > Air transport facility or service,air_transport_facility_service,,,NARROWER,airlines,travel > transportation > airlines -Transportation location > Air transport facility or service,air_transport_facility_service,,,NARROWER,private_jet_charters,travel > transportation > private_jet_charters -Transportation location > Air transport facility or service > Airport,airport,,,EXACT,airport,travel > airport -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,balloon_ports,travel > airport > balloon_ports -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,domestic_airports,travel > airport > domestic_airports -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,gliderports,travel > airport > gliderports -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,major_airports,travel > airport > major_airports -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,seaplane_bases,travel > airport > seaplane_bases -Transportation location > Air transport facility or service > Airport,airport,,,NARROWER,ultralight_airports,travel > airport > ultralight_airports -Transportation location > Air transport facility or service > Airport shuttle service,airport_shuttle_service,,,EXACT,airport_shuttles,travel > transportation > airport_shuttles -Transportation location > Air transport facility or service > Airport terminal,airport_terminal,,,EXACT,airport_terminal,travel > airport > airport_terminal -Transportation location > Air transport facility or service > Heliport,heliport,,,NARROWER,heliports,travel > airport > heliports -Transportation location > Bus station,bus_station,,,EXACT,bus_station,travel > transportation > bus_station -Transportation location > Ferry service,ferry_service,,,NARROWER,ferry_boat_company,business_to_business > business > ferry_boat_company -Transportation location > Ferry service,ferry_service,,,EXACT,ferry_service,travel > transportation > ferry_service -Transportation location > Ferry service > Water taxi service,water_taxi_service,,,EXACT,water_taxi,travel > transportation > water_taxi -Transportation location > Fueling station,fueling_station,,,CLOSE,fuel_dock,automotive > gas_station > fuel_dock -Transportation location > Fueling station > EV charging station,ev_charging_station,,,EXACT,ev_charging_station,automotive > electric_vehicle_charging_station -Transportation location > Fueling station > Gas station,gas_station,,,EXACT,gas_station,automotive > gas_station -Transportation location > Fueling station > Gas station,gas_station,,,NARROWER,truck_gas_station,automotive > gas_station > truck_gas_station -Transportation location > Parking,parking,,,NARROWER,bike_parking,travel > transportation > bike_parking -Transportation location > Parking,parking,,,NARROWER,motorcycle_parking,travel > transportation > motorcycle_parking -Transportation location > Parking,parking,,,EXACT,parking,travel > transportation > parking -Transportation location > Parking > Parking and ride,park_and_ride,,,EXACT,park_and_rides,travel > transportation > park_and_rides -Transportation location > Rest stop,rest_stop,,,EXACT,rest_areas,travel > road_structures_and_services > rest_areas -Transportation location > Rest stop,rest_stop,,,EXACT,rest_stop,travel > rest_stop -Transportation location > Roadway > Bridge,bridge,,,NARROWER,bridge,structure_and_geography > bridge -Transportation location > Taxi or ride share service,taxi_or_ride_share_service,,,NARROWER,car_sharing,travel > transportation > car_sharing -Transportation location > Taxi or ride share service,taxi_or_ride_share_service,,,NARROWER,limo_services,travel > transportation > limo_services -Transportation location > Taxi or ride share service,taxi_or_ride_share_service,,,NARROWER,town_car_service,travel > transportation > town_car_service -Transportation location > Taxi or ride share service > Ride share service,ride_share_service,,,EXACT,ride_sharing,travel > transportation > ride_sharing -Transportation location > Taxi or ride share service > Taxi service,taxi_service,,,NARROWER,taxi_rank,travel > transportation > taxi_rank -Transportation location > Taxi or ride share service > Taxi service,taxi_service,,,EXACT,taxi_service,travel > transportation > taxi_service -Transportation location > Toll station,toll_station,,,EXACT,toll_stations,travel > road_structures_and_services > toll_stations -Transportation location > Train station,train_station,,,EXACT,train_station,travel > transportation > trains > train_station -Transportation location > Train station,train_station,,,EXACT,trains,travel > transportation > trains -Transportation location > Train station > Light rail or subway station,light_rail_subway_station,,,EXACT,light_rail_and_subway_stations,travel > transportation > light_rail_and_subway_stations -Transportation location > Waterway,waterway,,REVIEW,NARROWER,pier,structure_and_geography > pier -Transportation location > Waterway,waterway,,REVIEW,NARROWER,quay,structure_and_geography > quay -Transportation location > Waterway,waterway,,REVIEW,NARROWER,weir,structure_and_geography > weir -Transportation location > Waterway > Canal,canal,,REVIEW,EXACT,canal,structure_and_geography > canal -Transportation location > Waterway > Marina,marina,,,EXACT,marina,attractions_and_activities > marina \ No newline at end of file diff --git a/docs/guides/places/csv/2025-10-22-counts.csv b/docs/guides/places/csv/2025-10-22-counts.csv deleted file mode 100644 index a76e894c1..000000000 --- a/docs/guides/places/csv/2025-10-22-counts.csv +++ /dev/null @@ -1,2079 +0,0 @@ -_col0,primary_category,basic_category -713,3d_printing_service,printing_service -454,abortion_clinic,clinic_or_treatment_center -95,abrasives_supplier,b2b_supplier_distributor -21257,abuse_and_addiction_treatment,clinic_or_treatment_center -1029,academic_bookstore,bookstore -311,acai_bowls,restaurant -344498,accommodation,accommodation -156341,accountant,accountant_or_bookkeeper -30,acne_treatment,personal_service -195,acoustical_consultant,service_location -185064,active_life,recreational_location -43292,acupuncture,alternative_medicine -1996,addiction_rehabilitation_center,clinic_or_treatment_center -840,adoption_services,adoption_service -8580,adult_education,place_of_learning -11591,adult_entertainment,entertainment_location -1728,adult_store,specialty_store -858,adventure_sports_center,sport_fitness_facility -264775,advertising_agency,business_advertising_marketing -28,aerial_fitness_center,fitness_studio -66,aerial_tours,tour_operator -218,aesthetician,plastic_reconstructive_and_aesthetic_surgery -2057,afghan_restaurant,restaurant -7679,african_restaurant,restaurant -807,after_school_program,educational_service -172,aggregate_supplier,b2b_supplier_distributor -23697,agricultural_cooperatives,agricultural_service -18,agricultural_engineering_service,agricultural_service -215,agricultural_production,agricultural_area -194,agricultural_seed_store,specialty_store -88840,agricultural_service,agricultural_service -63934,agriculture,agricultural_area -678,agriculture_association,civic_organization_office -983,agriturismo,tour_operator -1087,air_duct_cleaning_service,hvac_service -505,aircraft_dealer,vehicle_dealer -590,aircraft_manufacturer,manufacturer -88,aircraft_parts_and_supplies,specialty_store -620,aircraft_repair,vehicle_service -6670,airline,air_transport_facility_service -100,airline_ticket_agency,travel_ticket_office -5425,airlines,air_transport_facility_service -58425,airport,airport -4074,airport_lounge,bar -4480,airport_shuttles,airport_shuttle_service -6984,airport_terminal,airport_terminal -49,airsoft_fields,sport_field -455,alcohol_and_drug_treatment_center,clinic_or_treatment_center -3640,alcohol_and_drug_treatment_centers,clinic_or_treatment_center -5751,allergist,allergy_and_immunology -3707,altering_and_remodeling_contractor,building_contractor_service -18723,alternative_medicine,alternative_medicine -375,aluminum_supplier,b2b_supplier_distributor -459,amateur_sports_league,amateur_sport_league -13185,amateur_sports_team,amateur_sport_team -22508,ambulance_and_ems_services,ambulance_ems_service -206,american_football_field,sport_field -123481,american_restaurant,restaurant -52260,amusement_park,amusement_park -4227,anesthesiologist,healthcare_location -5008,anglican_church,christian_place_of_worship -2,animal_assisted_therapy,psychotherapy -1900,animal_hospital,animal_hospital -16,animal_physical_therapy,animal_service -3847,animal_rescue_service,animal_rescue -22511,animal_shelter,animal_shelter -1527,animation_studio,media_service -102,antenna_service,home_service -74170,antique_store,antique_shop -1173,apartment_agent,property_management_service -31673,apartments,apartment_building -20,apiaries_and_beekeepers,farm -3047,appellate_practice_lawyers,attorney_or_law_firm -18681,appliance_manufacturer,manufacturer -46049,appliance_repair_service,applicance_repair_service -68749,appliance_store,specialty_store -31508,appraisal_services,building_appraisal_service -6819,aquarium,aquarium -92,aquarium_services,animal_service -12631,aquatic_pet_store,pet_store -2353,arabian_restaurant,restaurant -26776,arcade,arcade -783,archaeological_services,educational_service -2372,archery_range,shooting_range -1040,archery_shop,sporting_goods_store -11079,architect,architectural_design_service -104396,architectural_designer,architectural_design_service -99,architectural_tours,tour_operator -278,architecture,historic_site -64,architecture_schools,college_university -4484,argentine_restaurant,restaurant -34537,armed_forces_branch,military_site -374,armenian_restaurant,restaurant -17,army_and_navy_store,specialty_store -5072,aromatherapy,personal_service -165933,art_gallery,art_gallery -15062,art_museum,art_museum -1976,art_restoration,media_service -454,art_restoration_service,media_service -34255,art_school,specialty_school -1,art_space_rental,Artspace -1181,art_supply_store,art_craft_hobby_store -19,art_tours,tour_operator -173,artificial_turf,home_service -142535,arts_and_crafts,art_craft_hobby_store -195964,arts_and_entertainment,entertainment_location -53,asian_art_museum,art_museum -8604,asian_fusion_restaurant,restaurant -452,asian_grocery_store,grocery_store -75632,asian_restaurant,restaurant -38200,assisted_living_facility,senior_living_facility -8429,astrologer,astrological_advising -38,atelier,art_craft_hobby_store -240453,atms,atm -166,attraction_farm,farm -111816,attractions_and_activities,entertainment_location -583,atv_recreation_park,sport_fitness_facility -1824,atv_rentals_and_tours,recreational_equipment_rental_service -16372,auction_house,specialty_store -18015,audio_visual_equipment_store,electronics_store -196,audio_visual_production_and_design,b2b_service -12154,audiologist,healthcare_location -4930,audiovisual_equipment_rental,event_or_party_service -20863,auditorium,performing_arts_venue -2657,australian_restaurant,restaurant -2583,austrian_restaurant,restaurant -48249,auto_body_shop,auto_body_shop -51789,auto_company,vehicle_dealer -14513,auto_customization,vehicle_service -116837,auto_detailing,auto_detailing_service -7069,auto_electrical_repair,vehicle_service -29491,auto_glass_service,auto_glass_service -38308,auto_insurance,insurance_agency -6609,auto_loan_provider,loan_provider -13028,auto_manufacturers_and_distributors,manufacturer -27796,auto_parts_and_supply_store,specialty_store -12275,auto_restoration_services,vehicle_service -1265,auto_security,vehicle_service -3749,auto_upholstery,vehicle_service -19399,automation_services,b2b_service -5102,automobile_leasing,vehicle_service -3655,automobile_registration_service,vehicle_service -171013,automotive,vehicle_service -10502,automotive_consultant,vehicle_service -88429,automotive_dealer,car_dealer -331163,automotive_parts_and_accessories,specialty_store -962573,automotive_repair,auto_repair_service -68761,automotive_services_and_repair,vehicle_service -3512,automotive_storage_facility,storage_facility -360,automotive_wheel_polishing_service,vehicle_service -107,aviation_museum,science_museum -409,avionics_shop,vehicle_service -764,awning_supplier,b2b_supplier_distributor -25,axe_throwing,entertainment_location -254,ayurveda,alternative_medicine -58,azerbaijani_restaurant,restaurant -80,b2b_agriculture_and_food,agricultural_service -5738,b2b_apparel,b2b_supplier_distributor -170,b2b_autos_and_vehicles,b2b_supplier_distributor -5927,b2b_cleaning_and_waste_management,b2b_service -68,b2b_dairies,farm -12964,b2b_electronic_equipment,b2b_supplier_distributor -799,b2b_energy_and_mining,b2b_service -563,b2b_equipment_maintenance_and_repair,b2b_supplier_distributor -12,b2b_farming,farm -80,b2b_farms,farm -1162,b2b_food_products,agricultural_service -472,b2b_forklift_dealers,b2b_supplier_distributor -473,b2b_furniture_and_housewares,b2b_supplier_distributor -139,b2b_hardware,b2b_supplier_distributor -15927,b2b_jewelers,b2b_supplier_distributor -1344,b2b_machinery_and_tools,b2b_supplier_distributor -212,b2b_medical_support_services,b2b_service -1039,b2b_oil_and_gas_extraction_and_services,oil_or_gas_facility -1469,b2b_rubber_and_plastics,b2b_supplier_distributor -13621,b2b_science_and_technology,b2b_service -477,b2b_scientific_equipment,b2b_service -336,b2b_sporting_and_recreation_goods,b2b_supplier_distributor -99,b2b_storage_and_warehouses,b2b_service -28104,b2b_textiles,b2b_supplier_distributor -70,b2b_tires,b2b_supplier_distributor -1625,b2b_tractor_dealers,b2b_supplier_distributor -1401,b2b_truck_equipment_parts_and_accessories,b2b_supplier_distributor -5238,baby_gear_and_furniture,specialty_store -63,back_shop,food_or_beverage_store -68,backflow_services,home_service -23,background_check_services,human_resource_service -5,backpacking_area,recreational_trail -3560,badminton_court,sport_court -980,bagel_restaurant,casual_eatery -9811,bagel_shop,casual_eatery -865,bags_luggage_company,specialty_store -6431,bail_bonds_service,bail_bonds_service -524751,bakery,bakery -100,balloon_ports,airport -370,balloon_services,event_or_party_service -1724,bangladeshi_restaurant,restaurant -404644,bank_credit_union,financial_service -424,bank_equipment_service,b2b_service -9506,bankruptcy_law,attorney_or_law_firm -149750,banks,bank -66084,baptist_church,christian_place_of_worship -751086,bar,bar -48804,bar_and_grill_restaurant,bar_and_grill -3,bar_crawl,social_club -133347,barbecue_restaurant,restaurant -370540,barber,barber_shop -361,barre_classes,fitness_studio -2332,bartender,event_or_party_service -554,bartending_school,specialty_school -22790,baseball_field,sport_field -1098,baseball_stadium,sport_stadium -8439,basketball_court,sport_court -822,basketball_stadium,sport_stadium -664,basque_restaurant,restaurant -288,bathroom_fixture_stores,specialty_store -6120,bathroom_remodeling,remodeling_service -263,bathtub_and_sink_repairs,home_service -1,battery_inverter_supplier,b2b_supplier_distributor -3248,battery_store,electronics_store -2122,batting_cage,sport_fitness_facility -10,bazaars,specialty_store -170630,beach, -925,beach_bar,bar -934,beach_equipment_rentals,water_sport_equipment_rental_service -3839,beach_resort,resort -25,beach_volleyball_court,sport_court -315,bearing_supplier,b2b_supplier_distributor -543634,beauty_and_spa,beauty_salon -22186,beauty_product_supplier,b2b_supplier_distributor -1368421,beauty_salon,beauty_salon -152479,bed_and_breakfast,bed_and_breakfast -1638,bedding_and_bath_stores,specialty_store -28955,beer_bar,bar -22793,beer_garden,bar -25,beer_tours,tour_operator -14201,beer_wine_and_spirits,food_or_beverage_store -138,behavior_analyst,mental_health -42,belarusian_restaurant,restaurant -4025,belgian_restaurant,restaurant -3,belizean_restaurant,restaurant -19324,betting_center,gaming_venue -21293,beverage_store,beverage_shop -8689,beverage_supplier,b2b_supplier_distributor -11,bicycle_path,bicycle_path -6,bicycle_sharing_location,transportation_location -94043,bicycle_shop,sporting_goods_store -19,bike_parking,parking -13195,bike_rentals,bicycle_rental_service -12846,bike_repair_maintenance,vehicle_service -3,bike_sharing,transportation_location -66,bike_tours,tour_operator -632,billing_services,b2b_service -2903,bingo_hall,bingo_hall -7472,biotechnology_company,b2b_service -167,bird_shop,pet_store -6581,bistro,casual_eatery -268,blacksmiths,b2b_service -8117,blood_and_plasma_donation_center,clinic_or_treatment_center -244,blow_dry_blow_out_service,hair_salon -83,blueprinters,building_construction_service -302,board_of_education_offices,government_office -176,boat_builder,b2b_service -771,boat_charter,event_or_party_service -14156,boat_dealer,boat_dealer -4944,boat_parts_and_accessories,specialty_store -770,boat_parts_and_supply_store,specialty_store -16808,boat_rental_and_training,water_sport_equipment_rental_service -11366,boat_service_and_repair,vehicle_service -492,boat_storage_facility,storage_facility -9568,boat_tours,tour_operator -2,boating_places,recreational_location -1,bobsledding_field,recreational_location -2,bocce_ball_court,sport_court -26,body_contouring,plastic_reconstructive_and_aesthetic_surgery -31,bolivian_restaurant,restaurant -2797,book_magazine_distribution,print_media_service -369,bookbinding,media_service -1856,bookkeeper,accountant_or_bookkeeper -14,bookmakers,gaming_venue -6541,books_mags_music_and_video,specialty_store -142978,bookstore,bookstore -9088,boot_camp,fitness_studio -8870,botanical_garden,garden -16707,bottled_water_company,food_or_beverage_store -57,boudoir_photography,photography_service -336,bounce_house_rental,event_or_party_service -71040,boutique,fashion_or_apparel_store -18275,bowling_alley,bowling_alley -67,box_lunch_supplier,food_or_beverage_store -12264,boxing_class,sport_fitness_facility -384,boxing_club,sport_recreation_club -772,boxing_gym,sport_fitness_facility -12324,brake_service_and_repair,auto_repair_service -1647,brasserie,casual_eatery -190,brazilian_jiu_jitsu_club,martial_arts_club -19347,brazilian_restaurant,restaurant -75942,breakfast_and_brunch_restaurant,breakfast_restaurant -48694,brewery,brewery -198,brewing_supply_store,specialty_store -56366,bridal_shop,fashion_or_apparel_store -42087,bridge,bridge -6412,british_restaurant,restaurant -55812,broadcasting_media_production,media_service -9991,brokers,financial_service -1,bubble_soccer_field,sport_field -39277,bubble_tea,beverage_shop -107495,buddhist_temple,buddhist_place_of_worship -35737,buffet_restaurant,buffet_restaurant -13160,builders,building_contractor_service -20964,building_contractor,building_contractor_service -391584,building_supply_store,specialty_store -699,bulgarian_restaurant,restaurant -8,bulk_billing,healthcare_location -1,bungee_jumping_center,sport_fitness_facility -154890,burger_restaurant,restaurant -553,burmese_restaurant,restaurant -1316,bus_rentals,vehicle_service -4503,bus_service,transportation_location -71861,bus_station,bus_station -55,bus_ticket_agency,travel_ticket_office -2738,bus_tours,tour_operator -120032,business,business_location -44104,business_advertising,business_advertising_marketing -325,business_banking_service,financial_service -2071,business_brokers,financial_service -31333,business_consulting,b2b_service -4914,business_equipment_and_supply,b2b_supplier_distributor -217,business_financing,financial_service -3075,business_law,attorney_or_law_firm -67710,business_management_services,business_management_service -294785,business_manufacturing_and_supply,manufacturer -14141,business_office_supplies_and_stationery,office_supply_store -1145,business_records_storage_and_management,b2b_service -988,business_schools,college_university -1135,business_signage,business_advertising_marketing -913,business_storage_and_transportation,b2b_service -31098,business_to_business,b2b_service -12776,business_to_business_services,b2b_service -141617,butcher_shop,butcher_shop -39,cabaret,performing_arts_venue -29072,cabin,accommodation -7154,cabinet_sales_service,home_service -446,cable_car_service,transportation_location -635693,cafe,cafe -4387,cafeteria,restaurant -3156,cajun_and_creole_restaurant,restaurant -30,calligraphy,media_service -775,cambodian_restaurant,restaurant -109953,campground,campground -85380,campus_building,place_of_learning -730,canadian_restaurant,restaurant -2305,canal, -1600,cancer_treatment_center,clinic_or_treatment_center -1451,candle_store,specialty_store -75548,candy_store,candy_shop -11121,cannabis_clinic,clinic_or_treatment_center -2,cannabis_collective,clinic_or_treatment_center -7587,cannabis_dispensary,specialty_store -1,cannabis_tour,tour_operator -6872,canoe_and_kayak_hire_service,recreational_equipment_rental_service -7,canteen,restaurant -14,canyon, -365,car_auction,specialty_store -1687,car_broker,car_dealer -747,car_buyer,car_dealer -469973,car_dealer,car_dealer -3416,car_inspection,vehicle_service -105369,car_rental_agency,auto_rental_service -2947,car_sharing,taxi_or_ride_share_service -327,car_stereo_installation,vehicle_service -10352,car_stereo_store,specialty_store -129709,car_wash,car_wash -17173,car_window_tinting,vehicle_service -76,cardio_classes,sport_fitness_facility -26544,cardiologist,cardiology -687,cardiovascular_and_thoracic_surgeon,cardiovascular_surgery -2490,cards_and_stationery_store,specialty_store -6420,career_counseling,educational_service -7487,caribbean_restaurant,restaurant -14,caricature,event_or_party_service -86147,carpenter,carpentry_service -22191,carpet_cleaning,carpet_cleaning_service -835,carpet_installation,home_service -77876,carpet_store,specialty_store -24,cartooning_museum,art_museum -35881,casino,casino -115,casting_molding_and_machining,b2b_supplier_distributor -12092,castle,castle -222,catalan_restaurant,restaurant -91119,caterer,catering_service -102869,catholic_church,christian_place_of_worship -3451,cave, -167,ceiling_and_roofing_repair_and_service,roofing_service -947,ceiling_service,home_service -1126,cement_supplier,b2b_supplier_distributor -4657,cemeteries,cemetery -230066,central_government_office,government_office -106,ceremonial_clothing,clothing_store -144,certification_agency,b2b_service -41,challenge_courses_center,sport_fitness_facility -13,chamber_of_handicraft,entertainment_location -277,chambers_of_commerce,government_office -151,champagne_bar,bar -60240,charity_organization,charity_organization -139,charter_school,place_of_learning -10575,check_cashing_payday_loans,loan_provider -19,cheerleading,specialty_school -15555,cheese_shop,food_or_beverage_store -6,cheese_tasting_classes,specialty_school -907,cheesesteak_restaurant,restaurant -56304,chemical_plant,b2b_supplier_distributor -104276,chicken_restaurant,chicken_restaurant -3252,chicken_wings_restaurant,chicken_restaurant -25783,child_care_and_day_care,child_care_or_day_care -577,child_protection_service,child_protection_service -711,child_psychiatrist,psychiatry -98,childbirth_education,specialty_school -18,childproofing,home_service -14,children_hall,civic_organization_office -136889,childrens_clothing_store,clothing_store -1369,childrens_hospital,childrens_hospital -728,childrens_museum,childrens_museum -263,chilean_restaurant,restaurant -1,chimney_cake_shop,food_or_beverage_store -198,chimney_service,home_service -7014,chimney_sweep,home_service -157,chinese_martial_arts_club,martial_arts_club -202672,chinese_restaurant,restaurant -109946,chiropractor,alternative_medicine -27168,chocolatier,candy_shop -2843,choir,music_venue -2301,christmas_trees,specialty_store -947160,church_cathedral,christian_place_of_worship -215,cidery,beverage_shop -63,cigar_bar,bar -65853,cinema,movie_theater -3634,circus,performing_arts_venue -59,circus_school,specialty_school -459,civic_center,civic_center -3142,civil_engineers,engineering_service -64,civil_examinations_academy,educational_service -214,civil_rights_lawyers,attorney_or_law_firm -500,civilization_museum,museum -1504,cleaning_products_supplier,b2b_supplier_distributor -21080,cleaning_services,business_cleaning_service -2,climbing_class,sport_fitness_facility -106,climbing_service,sport_fitness_facility -12799,clinical_laboratories,b2b_service -160,clock_repair_service,home_service -25,closet_remodeling,remodeling_service -12141,clothing_company,clothing_store -5188,clothing_rental,clothing_store -952892,clothing_store,clothing_store -38,clown,event_or_party_service -2,club_crawl,social_club -290,coach_bus,transportation_location -528,coal_and_coke,utility_energy_infrastructure -50883,cocktail_bar,bar -160,coffee_and_tea_supplies,food_or_beverage_store -905,coffee_roastery,coffee_shop -715882,coffee_shop,coffee_shop -165,coin_dealers,financial_service -3754,collection_agencies,financial_service -84,college_counseling,educational_service -416296,college_university,college_university -2284,colombian_restaurant,restaurant -39,colonics,clinic_or_treatment_center -7561,comedy_club,comedy_club -6334,comfort_food_restaurant,restaurant -10872,comic_books_store,bookstore -85462,commercial_industrial,industrial_commercial_infrastructure -1236,commercial_printer,b2b_service -35469,commercial_real_estate,b2b_service -5757,commercial_refrigeration,b2b_service -3101,commercial_vehicle_dealer,vehicle_dealer -536,commissioned_artist,media_service -91334,community_center,community_center -98,community_gardens,garden -554,community_health_center,clinic_or_treatment_center -561,community_museum,museum -688097,community_services_non_profits,social_or_community_service -24861,computer_coaching,specialty_school -28009,computer_hardware_company,technical_service -436,computer_museum,science_museum -105927,computer_store,electronics_store -7337,computer_wholesaler,wholesaler -4,concept_shop,specialty_store -30,concierge_medicine,clinic_or_treatment_center -23229,condominium, -859,construction_management,building_construction_service -315809,construction_services,building_construction_service -2198,consultant_and_general_service,business_management_service -14,contemporary_art_museum,art_museum -329,contract_law,attorney_or_law_firm -434687,contractor,building_contractor_service -428125,convenience_store,convenience_store -8464,convents_and_monasteries,religious_organization -440,cooking_classes,art_craft_hobby_store -7880,cooking_school,specialty_school -932,copywriting_service,media_service -5460,corporate_entertainment_services,b2b_service -77,corporate_gift_supplier,b2b_supplier_distributor -131010,corporate_office,corporate_or_business_office -223632,cosmetic_and_beauty_supplies,specialty_store -26697,cosmetic_dentist,dental_care -166,cosmetic_products_manufacturer,manufacturer -2450,cosmetic_surgeon,plastic_reconstructive_and_aesthetic_surgery -7472,cosmetology_school,specialty_school -71,costa_rican_restaurant,restaurant -78,costume_museum,art_museum -19744,costume_store,art_craft_hobby_store -23240,cottage,accommodation -160,cotton_mill,b2b_supplier_distributor -156340,counseling_and_mental_health,mental_health -30989,countertop_installation,home_service -370,country_club,country_club -172,country_dance_hall,entertainment_location -50,country_house,accommodation -57147,courier_and_delivery_services,courier_service -434,court_reporter,legal_service -36756,courthouse,government_office -14481,coworking_space,b2b_service -569,cpr_classes,specialty_school -1721,craft_shop,art_craft_hobby_store -1526,crane_services,b2b_service -8698,credit_and_debt_counseling,financial_service -73023,credit_union,credit_union -5919,cremation_services,funeral_service -2520,cricket_ground,sport_stadium -13409,criminal_defense_law,attorney_or_law_firm -181,crisis_intervention_services,clinic_or_treatment_center -575,crops_production,farm -137,cryotherapy,healthcare_location -22,csa_farm,food_or_beverage_store -2757,cuban_restaurant,restaurant -47004,cultural_center,entertainment_location -39438,cupcake_shop,food_or_beverage_store -19890,currency_exchange,financial_service -2,curry_sausage_restaurant,restaurant -273,custom_cakes_shop,food_or_beverage_store -763,custom_clothing,fashion_or_apparel_store -970,custom_t_shirt_store,clothing_store -2401,customized_merchandise,specialty_store -390,customs_broker,b2b_service -1750,cycling_classes,sport_fitness_facility -1732,czech_restaurant,restaurant -7621,dairy_farm,farm -1689,dairy_stores,grocery_store -15224,damage_restoration,home_service -103110,dance_club,dance_club -121929,dance_school,specialty_school -1648,dance_wear,sporting_goods_store -4,danish_restaurant,restaurant -3128,data_recovery,technical_service -169542,day_care_preschool,child_care_or_day_care -15076,day_spa,spa -726,debt_relief_services,financial_service -1264,deck_and_railing_sales_service,home_service -87,decorative_arts_museum,art_museum -67034,delicatessen,deli -1925,demolition_service,home_service -216,denim_wear_store,clothing_store -66,dental_hygienist,dental_hygiene -1018,dental_laboratories,b2b_service -772,dental_supply_store,specialty_store -642645,dentist,general_dentistry -149,dentistry_schools,college_university -8668,department_of_motor_vehicles,government_office -44,department_of_social_service,government_office -97170,department_store,department_store -34988,dermatologist,healthcare_location -28,desert, -184,design_museum,art_museum -6207,designer_clothing,clothing_store -97959,desserts,casual_eatery -23154,diagnostic_imaging,diagnostic_service -24909,diagnostic_services,diagnostic_service -11750,dialysis_clinic,clinic_or_treatment_center -59,diamond_dealer,specialty_store -626,dietitian,nutrition_and_dietetics -490,digitizing_services,media_service -6093,dim_sum_restaurant,restaurant -99619,diner,restaurant -30,dinner_theater,performing_arts_venue -149,direct_mail_advertising,business_advertising_marketing -2095,disability_law,attorney_or_law_firm -16802,disability_services_and_support_organization,civic_organization_office -2985,disc_golf_course,sport_field -126687,discount_store,discount_store -475,display_home_center,real_estate_service -8548,distillery,food_or_beverage_store -9466,distribution_services,shipping_delivery_service -3996,dive_bar,bar -887,dive_shop,sporting_goods_store -1324,diving_center,sport_fitness_facility -26116,divorce_and_family_law,attorney_or_law_firm -15,diy_auto_shop,auto_repair_service -58,diy_foods_restaurant,restaurant -3620,dj_service,dj_service -398,do_it_yourself_store,home_improvement_center -431422,doctor,doctors_office -13126,dog_park,dog_park -23211,dog_trainer,animal_training -6331,dog_walkers,dog_walker -3,domestic_airports,airport -1045,domestic_business_and_trade_organizations,b2b_service -750,dominican_restaurant,restaurant -393,donation_center,social_or_community_service -13539,doner_kebab,restaurant -32607,donuts,casual_eatery -2900,door_sales_service,home_service -41,doula,healthcare_location -425,drama_school,specialty_school -87,drinking_water_dispenser,b2b_supplier_distributor -4682,drive_in_theater,movie_theater -86,drive_thru_bar,bar -5619,driving_range,sport_fitness_facility -105071,driving_school,specialty_school -136,drone_store,specialty_store -29875,drugstore,specialty_store -52809,dry_cleaning,dry_cleaning_service -3510,drywall_services,home_service -423,dui_law,attorney_or_law_firm -37,dui_school,specialty_school -1399,dumpling_restaurant,restaurant -1747,dumpster_rentals,b2b_service -89,duplication_services,media_service -1169,duty_free_shop,specialty_store -32489,e_cigarette_store,specialty_store -6662,e_commerce_service,software_development -18059,ear_nose_and_throat,healthcare_location -4215,eastern_european_restaurant,restaurant -106389,eat_and_drink,eating_drinking_location -187,eatertainment,entertainment_location -6,eating_disorder_treatment_centers,clinic_or_treatment_center -791,ecuadorian_restaurant,restaurant -86,editorial_services,media_service -511547,education,place_of_learning -6184,educational_camp,place_of_learning -12421,educational_research_institute,place_of_learning -65354,educational_services,educational_service -4723,educational_supply_store,specialty_store -926,egyptian_restaurant,restaurant -26,elder_care_planning,social_or_community_service -16465,electric_utility_provider,electric_utility_service -2,electrical_consultant,technical_service -7543,electrical_supply_store,specialty_store -4487,electrical_wholesaler,wholesaler -126538,electrician,electrical_service -3803,electricity_supplier,electric_utility_service -4414,electronic_parts_supplier,b2b_supplier_distributor -258742,electronics,electronics_store -1783,electronics_repair_shop,electronic_repiar_service -489693,elementary_school,elementary_school -8467,elevator_service,b2b_service -19335,embassy,government_office -1474,embroidery_and_crochet,art_craft_hobby_store -4476,emergency_medicine,healthcare_location -784,emergency_pet_hospital,animal_hospital -1150,emergency_roadside_service,emergency_roadside_service -18873,emergency_room,emergency_room -1140,emergency_service,social_or_community_service -5347,emissions_inspection,vehicle_service -252,empanadas,restaurant -114338,employment_agencies,human_resource_service -8068,employment_law,attorney_or_law_firm -3,ems_training,healthcare_location -5805,endocrinologist,internal_medicine -4269,endodontist,dental_care -31,endoscopist,healthcare_location -30167,energy_company,utility_energy_infrastructure -29828,energy_equipment_and_solution,b2b_supplier_distributor -621,energy_management_and_conservation_consultants,b2b_service -5196,engine_repair_service,auto_repair_service -415,engineering_schools,college_university -144776,engineering_services,engineering_service -378,engraving,media_service -165,entertainment_law,attorney_or_law_firm -209,environmental_abatement_services,b2b_service -11306,environmental_and_ecological_services_for_businesses,b2b_service -6899,environmental_conservation_and_ecological_organizations,conservation_organization -18493,environmental_conservation_organization,conservation_organization -6,environmental_medicine,healthcare_location -98,environmental_renewable_natural_resource,b2b_service -2498,environmental_testing,b2b_service -243,episcopal_church,christian_place_of_worship -17406,equestrian_facility,equestrian_facility -172,erotic_massage,entertainment_location -9322,escape_rooms,escape_room -2771,escrow_services,real_estate_service -621,esports_league,sport_league -363,esports_team,sport_team -240,estate_liquidation,real_estate_service -2859,estate_planning_law,attorney_or_law_firm -46,esthetician,personal_service -2338,ethical_grocery,grocery_store -1736,ethiopian_restaurant,restaurant -14592,european_restaurant,restaurant -35113,ev_charging_station,ev_charging_station -34733,evangelical_church,christian_place_of_worship -111177,event_photography,photography_service -806805,event_planning,event_or_party_service -12082,event_technology_service,event_or_party_service -14987,excavation_service,home_service -632,executive_search_consultants,business_management_service -25,exhaust_and_muffler_repair,auto_repair_service -271,exhibition_and_trade_center,event_space -843,exporters,import_export_company -78,exterior_design,home_service -27094,eye_care_clinic,eye_care -461,eyebrow_service,beauty_salon -1164,eyelash_service,beauty_salon -180412,eyewear_and_optician,optician -61136,fabric_store,art_craft_hobby_store -284,fabric_wholesaler,wholesaler -38,face_painting,event_or_party_service -13148,fair,fairgrounds -1114,falafel_restaurant,restaurant -4079,family_counselor,mental_health -51991,family_practice,family_medicine -398,family_service_center,family_service -249698,farm,farm -6277,farm_equipment_and_supply,agricultural_service -269,farm_equipment_repair_service,agricultural_service -35,farm_insurance,insurance_agency -59643,farmers_market,farmers_market -1066,farming_equipment_store,specialty_store -5404,farming_services,agricultural_service -21,farrier_services,animal_service -91972,fashion,fashion_or_apparel_store -109389,fashion_accessories_store,fashion_or_apparel_store -472822,fast_food_restaurant,fast_food_restaurant -720,fastener_supplier,b2b_supplier_distributor -512,federal_government_offices,government_office -16447,fence_and_gate_sales_service,home_service -1253,fencing_club,sport_recreation_club -45,feng_shui,home_service -8356,ferry_boat_company,ferry_service -352,ferry_service,ferry_service -6013,fertility,healthcare_location -512,fertilizer_store,agricultural_service -322,festival,festival_venue -25,fidelity_and_surety_bonds,insurance_agency -10634,filipino_restaurant,restaurant -70,film_festivals_and_organizations,festival_venue -88917,financial_advising,financial_service -355749,financial_service,financial_service -360,fingerprinting_service,b2b_service -5325,fire_and_water_damage_restoration,home_service -87633,fire_department,fire_station -23192,fire_protection_service,home_service -329,firearm_training,specialty_school -8233,fireplace_service,home_service -415,firewood,home_service -11010,firework_retailer,specialty_store -1962,first_aid_class,specialty_school -19113,fish_and_chips_restaurant,restaurant -5767,fish_farm,farm -162,fish_farms_and_hatcheries,farm -131,fish_restaurant,restaurant -9394,fishing_charter,sport_fitness_facility -11441,fishing_club,sport_recreation_club -29974,fishmonger,food_or_beverage_store -269,fitness_equipment_wholesaler,wholesaler -857,fitness_exercise_equipment,sporting_goods_store -51568,fitness_trainer,sport_fitness_facility -26,flatbread_restaurant,restaurant -26124,flea_market,second-hand_shop -8104,flight_school,specialty_school -34,float_spa,spa -17517,flooring_contractors,building_contractor_service -5744,flooring_store,specialty_store -98,floral_designer,event_or_party_service -17647,florist,flower_shop -88,flour_mill,b2b_supplier_distributor -36,flower_markets,flower_shop -441505,flowers_and_gifts_shop,flower_shop -45,flyboarding_center,sport_fitness_facility -2,flyboarding_rental,sport_fitness_facility -157,fmcg_wholesaler,wholesaler -2471,fondue_restaurant,restaurant -33989,food,food_or_beverage_store -508,food_and_beverage_consultant,b2b_service -648,food_and_beverage_exporter,import_export_company -3961,food_banks,food_bank -52345,food_beverage_service_distribution,b2b_supplier_distributor -2753,food_consultant,business_management_service -3095,food_court,food_court -50996,food_delivery_service,food_delivery_service -633,food_safety_training,specialty_school -42965,food_stand,food_stand -697,food_tours,tour_operator -28037,food_truck,casual_eatery -405,foot_care,personal_service -168,football_club,sport_recreation_club -8628,football_stadium,sport_stadium -70,footwear_wholesaler,wholesaler -7467,forest, -25,forestry_consultants,b2b_service -14339,forestry_service,b2b_service -500,forklift_dealer,vehicle_dealer -1205,formal_wear_store,clothing_store -1364,fort,fort -91,fortune_telling_service,event_or_party_service -1752,foster_care_services,foster_care_service -482,foundation_repair,home_service -12611,fountain,public_fountain -5709,framing_store,art_craft_hobby_store -100,fraternal_organization,social_club -32,free_diving_center,sport_fitness_facility -188937,freight_and_cargo_service,shipping_delivery_service -3219,freight_forwarding_agency,shipping_delivery_service -58755,french_restaurant,restaurant -589,friterie,casual_eatery -723,frozen_foods,food_or_beverage_store -9391,frozen_yoghurt_shop,casual_eatery -64902,fruits_and_vegetables,produce_store -14,fuel_dock,fueling_station -124895,funeral_services_and_cemeteries,funeral_service -466,fur_clothing,clothing_store -1764,furniture_accessory_store,specialty_store -29972,furniture_assembly,home_service -10728,furniture_manufacturers,manufacturer -568,furniture_rental_service,home_service -602,furniture_repair,home_service -290,furniture_reupholstery,home_service -524033,furniture_store,specialty_store -880,furniture_wholesalers,wholesaler -16,futsal_field,sport_field -5301,game_publisher,media_service -11,game_truck_rental,event_or_party_service -18248,garage_door_service,home_service -50470,garbage_collection_service,garbage_collection_service -44243,gardener,landscaping_gardening_service -555607,gas_station,gas_station -12846,gastroenterologist,internal_medicine -28417,gastropub,restaurant -41,gay_and_lesbian_services_organization,social_or_community_service -4438,gay_bar,bar -3287,gelato,casual_eatery -214,gemstone_and_mineral,specialty_store -687,genealogists,educational_service -36977,general_dentistry,general_dentistry -645,general_festivals,festival_venue -1173,general_litigation,attorney_or_law_firm -60,generator_installation_repair,b2b_service -96,geneticist,healthcare_location -4533,gents_tailor,personal_service -2,geologic_formation, -4012,geological_services,b2b_service -1266,georgian_restaurant,restaurant -764,geriatric_medicine,healthcare_location -55,geriatric_psychiatry,psychiatry -24099,german_restaurant,restaurant -295,gerontologist,healthcare_location -49187,gift_shop,gift_shop -38844,glass_and_mirror_sales_service,home_service -833,glass_blowing,entertainment_location -5591,glass_manufacturer,manufacturer -10,gliderports,airport -1065,gluten_free_restaurant,restaurant -3485,go_kart_club,sport_recreation_club -560,go_kart_track,sport_fitness_facility -1865,gold_buyer,specialty_store -78,goldsmith,specialty_store -2772,golf_cart_dealer,vehicle_dealer -80,golf_cart_rental,event_or_party_service -2461,golf_club,golf_club -43351,golf_course,golf_course -2400,golf_equipment,sporting_goods_store -2641,golf_instructor,sport_fitness_facility -10879,government_services,government_office -1006,grain_elevators,agricultural_service -1043,grain_production,farm -9304,granite_supplier,b2b_supplier_distributor -71266,graphic_designer,graphic_design_service -51,gravel_professionals,building_construction_service -32082,greek_restaurant,restaurant -128,greengrocer,wholesaler -233,greenhouses,greenhouse -445,grilling_equipment,specialty_store -581185,grocery_store,grocery_store -210,grout_service,home_service -1,guamanian_restaurant,restaurant -329,guatemalan_restaurant,restaurant -5233,guest_house,private_lodging -516,guitar_store,specialty_store -15785,gun_and_ammo,specialty_store -8,gunsmith,specialty_store -6104,gutter_service,home_service -633910,gym,gym -16858,gymnastics_center,sport_fitness_facility -30,gymnastics_club,sport_recreation_club -2809,hair_extensions,hair_salon -756,hair_loss_center,personal_service -17732,hair_removal,personal_service -6463,hair_replacement,personal_service -517796,hair_salon,hair_salon -10923,hair_stylist,hair_salon -50526,hair_supply_stores,specialty_store -435,haitian_restaurant,restaurant -8219,halal_restaurant,restaurant -1596,halfway_house,social_or_community_service -18,halotherapy,healthcare_location -1011,handbag_stores,fashion_or_apparel_store -942,handicraft_shop,art_craft_hobby_store -10454,handyman,handyman_service -77,hang_gliding_center,sport_fitness_facility -281336,hardware_store,hardware_store -5357,hat_shop,fashion_or_apparel_store -2399,haunted_house,entertainment_location -3,haute_cuisine_restaurant,restaurant -3871,hawaiian_restaurant,restaurant -149,hazardous_waste_disposal,b2b_service -329188,health_and_medical,healthcare_location -890,health_and_wellness_club,personal_service -1139,health_coach,healthcare_location -3235,health_consultant,mental_health -4161,health_department,government_office -9735,health_food_restaurant,restaurant -84046,health_food_store,grocery_store -9412,health_insurance_office,insurance_agency -1732,health_market,specialty_store -112,health_retreats,accommodation -14628,health_spa,spa -303,hearing_aid_provider,electronics_store -21411,hearing_aids,specialty_store -1973,heliports,heliport -3668,hematology,internal_medicine -57,henna_artist,event_or_party_service -61,hepatologist,healthcare_location -957,herb_and_spice_shop,food_or_beverage_store -1049,herbal_shop,specialty_store -8,high_gliding_center,sport_fitness_facility -173420,high_school,high_school -44244,hiking_trail,hiking_trail -2049,himalayan_nepalese_restaurant,restaurant -125856,hindu_temple,hindu_place_of_worship -425,historical_tours,tour_operator -33577,history_museum,history_museum -26322,hobby_shop,art_craft_hobby_store -950,hockey_arena,sport_stadium -185,hockey_equipment,sporting_goods_store -1255,hockey_field,sport_field -965,holding_companies,financial_service -187,holiday_decor,specialty_store -25,holiday_decorating,home_service -4,holiday_market,festival_venue -110,holiday_park,resort -170944,holiday_rental_home,private_lodging -86,holistic_animal_care,animal_service -19633,home_and_garden,specialty_store -623,home_and_rental_insurance,insurance_agency -885,home_automation,home_service -119249,home_cleaning,house_cleaning_service -11146,home_decor,specialty_store -119551,home_developer,real_estate_developer -85,home_energy_auditor,home_service -127785,home_goods_store,specialty_store -70465,home_health_care,healthcare_location -129493,home_improvement_store,home_improvement_center -12722,home_inspector,home_service -108,home_network_installation,home_service -1691,home_organization,social_or_community_service -34008,home_security,home_service -109778,home_service,home_service -3363,home_staging,real_estate_service -1688,home_theater_systems_stores,electronics_store -502,home_window_tinting,home_service -5468,homeless_shelter,homeless_shelter -1044,homeopathic_medicine,alternative_medicine -269,homeowner_association,home_service -605,honduran_restaurant,restaurant -275,honey_farm_shop,food_or_beverage_store -1184,hong_kong_style_cafe,restaurant -16267,hookah_bar,bar -17755,horse_boarding,animal_boarding -488,horse_equipment_shop,specialty_store -407,horse_racing_track,race_track -11046,horse_riding,equestrian_facility -5693,horse_trainer,animal_training -9609,horseback_riding_service,sport_fitness_facility -8303,hospice,healthcare_location -589421,hospital,hospital -1330,hospital_equipment_and_supplies,b2b_service -1253,hospitalist,healthcare_location -56823,hostel,accommodation -1077,hot_air_balloons_tour,sport_fitness_facility -10280,hot_dog_restaurant,restaurant -35,hot_springs, -4131,hot_tubs_and_pools,specialty_store -1433271,hotel,hotel -4616,hotel_bar,bar -2091,hotel_supply_service,b2b_supplier_distributor -424,house_sitting,home_service -15,houseboat,accommodation -5009,housing_authorities,social_or_community_service -1022,housing_cooperative,social_or_community_service -4289,human_resource_services,human_resource_service -1221,hungarian_restaurant,restaurant -28997,hunting_and_fishing_supplies,sporting_goods_store -128438,hvac_services,hvac_service -8497,hvac_supplier,b2b_supplier_distributor -110,hybrid_car_repair,auto_repair_service -3192,hydraulic_equipment_supplier,b2b_supplier_distributor -441,hydraulic_repair_service,b2b_service -37,hydro_jetting,plumbing_service -253,hydroponic_gardening,specialty_store -24,hydrotherapy,healthcare_location -1824,hypnosis_hypnotherapy,healthcare_location -24,iberian_restaurant,restaurant -6397,ice_cream_and_frozen_yoghurt,casual_eatery -195685,ice_cream_shop,casual_eatery -4941,ice_skating_rink,skating_rink -807,ice_supplier,b2b_supplier_distributor -2247,image_consultant,personal_service -195,immigration_and_naturalization,government_office -91,immigration_assistance_services,social_or_community_service -13394,immigration_law,attorney_or_law_firm -74,immunodermatologist,allergy_and_immunology -734,imported_food,food_or_beverage_store -3663,importer_and_exporter,import_export_company -588,importers,import_export_company -5731,indian_grocery_store,grocery_store -100524,indian_restaurant,restaurant -115,indian_sweets_shop,candy_shop -282,indo_chinese_restaurant,restaurant -56421,indonesian_restaurant,restaurant -125,indoor_golf_center,sport_fitness_facility -112,indoor_landscaping,landscaping_gardening_service -1306,indoor_playcenter,entertainment_location -245,industrial_cleaning_services,business_cleaning_service -75002,industrial_company,industrial_commercial_infrastructure -209594,industrial_equipment,b2b_supplier_distributor -304,industrial_spares_and_products_wholesaler,wholesaler -2705,infectious_disease_specialist,healthcare_location -101091,information_technology_company,information_technology_service -10017,inn,inn -1815,inspection_services,building_inspection_service -49610,installment_loans,loan_provider -66,instrumentation_engineers,engineering_service -1981,insulation_installation,home_service -368985,insurance_agency,insurance_agency -114812,interior_design,interior_design_service -13,interlock_system,specialty_store -36880,internal_medicine,internal_medicine -7104,international_business_and_trade_services,b2b_service -2572,international_grocery_store,grocery_store -844,international_restaurant,restaurant -22839,internet_cafe,cafe -40632,internet_marketing_service,business_advertising_marketing -45483,internet_service_provider,internet_service_provider -707,inventory_control_service,b2b_service -28332,investing,financial_service -1813,ip_and_internet_law,attorney_or_law_firm -5572,irish_pub,pub -401,irish_restaurant,restaurant -27211,iron_and_steel_industry,b2b_supplier_distributor -142,iron_and_steel_store,wholesaler -1399,iron_work,b2b_supplier_distributor -33,ironworkers,b2b_service -1697,irrigation,landscaping_gardening_service -127,irrigation_companies,agricultural_service -1492,island, -336,israeli_restaurant,restaurant -1636,it_consultant,technical_service -188768,it_service_and_computer_repair,technical_service -3904,it_support_and_service,technical_service -189116,italian_restaurant,restaurant -49,iv_hydration,healthcare_location -8741,jail_and_prison,jail_or_prison -2444,jamaican_restaurant,restaurant -21841,janitorial_services,business_cleaning_service -383,japanese_confectionery_shop,candy_shop -41,japanese_grocery_store,grocery_store -300657,japanese_restaurant,restaurant -2908,jazz_and_blues,music_venue -671,jehovahs_witness_kingdom_hall,christian_place_of_worship -1715,jet_skis_rental,water_sport_equipment_rental_service -12546,jewelry_and_watches_manufacturer,manufacturer -65,jewelry_manufacturer,manufacturer -57,jewelry_repair_service,personal_service -284731,jewelry_store,jewelry_store -69,jewish_restaurant,restaurant -2626,junk_removal_and_hauling,home_service -3706,junkyard,second-hand_shop -21,juvenile_detention_center,jail_or_prison -29624,karaoke,music_venue -30,karaoke_rental,event_or_party_service -714,karate_club,martial_arts_club -74335,key_and_locksmith,locksmith_service -944,kickboxing_club,martial_arts_club -2196,kids_hair_salon,hair_salon -8979,kids_recreation_and_party,childrens_party_service -869,kiosk,casual_eatery -8028,kitchen_and_bath,specialty_store -6,kitchen_incubator,real_estate_service -5166,kitchen_remodeling,remodeling_service -11050,kitchen_supply_store,specialty_store -416,kiteboarding,sport_fitness_facility -4,kiteboarding_instruction,sport_fitness_facility -252,knife_sharpening,home_service -804,knitting_supply,art_craft_hobby_store -32,kofta_restaurant,restaurant -5,kombucha,beverage_shop -14433,korean_grocery_store,grocery_store -79405,korean_restaurant,restaurant -21,kosher_grocery_store,grocery_store -1357,kosher_restaurant,restaurant -72,kurdish_restaurant,restaurant -26238,labor_union,labor_union -5299,laboratory,b2b_service -833,laboratory_equipment_supplier,b2b_supplier_distributor -86629,laboratory_testing,diagnostic_service -26,lactation_services,healthcare_location -217045,lake, -25240,land_surveying,real_estate_service -1019472,landmark_and_historical_building,historic_site -7665,landscape_architect,landscaping_gardening_service -91869,landscaping,landscaping_gardening_service -85083,language_school,specialty_school -10,laotian_restaurant,restaurant -169,laser_cutting_service_provider,b2b_service -1398,laser_eye_surgery_lasik,eye_care -19032,laser_hair_removal,personal_service -2326,laser_tag,entertainment_location -8770,latin_american_restaurant,restaurant -106428,laundromat,laundromat -12117,laundry_services,laundry_service -8794,law_enforcement,police_station -660,law_schools,college_university -15,lawn_bowling_club,sport_recreation_club -127,lawn_mower_repair_service,home_service -1428,lawn_mower_store,specialty_store -3865,lawn_service,landscaping_gardening_service -247928,lawyer,attorney_or_law_firm -3991,leather_goods,fashion_or_apparel_store -80,leather_products_manufacturer,manufacturer -6678,lebanese_restaurant,restaurant -168188,legal_services,legal_service -116508,library,library -175,lice_treatment,healthcare_location -20128,life_coach,educational_service -10215,life_insurance,insurance_agency -2696,light_rail_and_subway_stations,light_rail_subway_station -3338,lighthouse,lighthouse -227,lighting_fixture_manufacturers,manufacturer -400,lighting_fixtures_and_equipment,home_service -39890,lighting_store,specialty_store -43,lime_professionals,building_construction_service -11216,limo_services,taxi_or_ride_share_service -32546,linen,specialty_store -45696,lingerie_store,clothing_store -5,lingerie_wholesaler,wholesaler -171283,liquor_store,liquor_store -649,live_and_raw_food_restaurant,restaurant -11255,livestock_breeder,agricultural_service -71,livestock_dealers,agricultural_service -505,livestock_feed_and_supply_store,specialty_store -6787,local_and_state_government_offices,government_office -45875,lodge,accommodation -2283,logging_contractor,b2b_supplier_distributor -315,logging_equipment_and_supplies,b2b_supplier_distributor -14294,logging_services,b2b_supplier_distributor -25,lookout,historic_site -10964,lottery_ticket,specialty_store -59376,lounge,bar -120,low_income_housing,social_or_community_service -4258,luggage_storage,luggage_storage -21418,luggage_store,specialty_store -16667,lumber_store,specialty_store -42,macarons,casual_eatery -8063,machine_and_tool_rentals,technical_service -59319,machine_shop,machine_shop -566,magician,event_or_party_service -468,mailbox_center,shipping_delivery_service -1,major_airports,airport -29,makerspace,makerspace -23924,makeup_artist,personal_service -12495,malaysian_restaurant,restaurant -231,manufacturers_agents_and_representatives,b2b_service -193,manufacturing_and_industrial_consultant,business_management_service -859,marble_and_granite_professionals,building_construction_service -1,marching_band,music_venue -16353,marina,marina -3,market_stall,specialty_store -122956,marketing_agency,business_advertising_marketing -20438,marketing_consultant,business_advertising_marketing -4418,marriage_or_relationship_counselor,mental_health -119942,martial_arts_club,martial_arts_club -23371,masonry_concrete,home_service -3765,masonry_contractors,building_construction_service -12924,mass_media,media_service -44646,massage,massage_salon -1610,massage_school,specialty_school -108121,massage_therapy,massage_therapy -212,matchmaker,personal_service -6155,maternity_centers,healthcare_location -1910,maternity_wear,clothing_store -1666,mattress_manufacturing,manufacturer -46908,mattress_store,specialty_store -118,meat_restaurant,restaurant -967,meat_shop,food_or_beverage_store -11365,meat_wholesaler,wholesaler -1484,mechanical_engineers,engineering_service -26144,media_agency,media_service -21,media_critic,media_service -19353,media_news_company,media_service -6335,media_news_website,media_service -90,media_restoration_service,media_service -646,mediator,b2b_service -10,medical_cannabis_referral,healthcare_location -188963,medical_center,healthcare_location -1322,medical_law,attorney_or_law_firm -28268,medical_research_and_development,b2b_service -10000,medical_school,specialty_school -347,medical_sciences_schools,college_university -47628,medical_service_organizations,healthcare_location -27620,medical_spa,spa -57977,medical_supply,specialty_store -2357,medical_transportation,healthcare_location -8754,meditation_center,mental_health -28384,mediterranean_restaurant,restaurant -401,memorial_park,memorial_site -25,memory_care,healthcare_location -96287,mens_clothing_store,clothing_store -4640,merchandising_service,business_advertising_marketing -7,metal_detector_services,technical_service -68737,metal_fabricator,b2b_supplier_distributor -654,metal_materials_and_experts,b2b_service -1699,metal_plating_service,b2b_supplier_distributor -52813,metal_supplier,b2b_supplier_distributor -6366,metals,b2b_supplier_distributor -5218,metro_station,transportation_location -154,mexican_grocery_store,grocery_store -172380,mexican_restaurant,restaurant -17523,middle_eastern_restaurant,restaurant -70541,middle_school,middle_school -852,midwife,healthcare_location -35,military_museum,museum -491,military_surplus_store,specialty_store -6,milk_bar,beverage_shop -209,mills,b2b_supplier_distributor -4829,miniature_golf_course,sport_fitness_facility -9346,mining,utility_energy_infrastructure -1543,mission,religious_organization -2,misting_system_services,home_service -2,mobile_clinic,clinic_or_treatment_center -21,mobile_dent_repair,vehicle_service -7080,mobile_home_dealer, -9479,mobile_home_park, -72,mobile_home_repair,home_service -11012,mobile_phone_accessories,electronics_store -9619,mobile_phone_repair,electronic_repiar_service -341617,mobile_phone_store,electronics_store -3711,mobility_equipment_services,technical_service -1077,modern_art_museum,art_museum -5,mohel,event_or_party_service -332,molecular_gastronomy_restaurant,restaurant -119309,money_transfer_services,financial_service -831,mongolian_restaurant,restaurant -521,montessori_school,place_of_learning -43794,monument,monument -2759,moroccan_restaurant,restaurant -61427,mortgage_broker,loan_provider -22585,mortgage_lender,loan_provider -316,mortuary_services,funeral_service -122498,mosque,muslim_place_of_worship -23409,motel,motel -1447,motor_freight_trucking,shipping_delivery_service -114106,motorcycle_dealer,motorcycle_dealer -92,motorcycle_gear,specialty_store -1782,motorcycle_manufacturer,manufacturer -4,motorcycle_parking,parking -2047,motorcycle_rentals,vehicle_service -92640,motorcycle_repair,vehicle_service -5895,motorsport_vehicle_dealer,vehicle_dealer -23,motorsport_vehicle_repair,vehicle_service -8496,motorsports_store,specialty_store -98787,mountain, -80,mountain_bike_parks,park -3036,mountain_bike_trails,recreational_trail -226,mountain_huts,accommodation -16107,movers,moving_service -3,movie_critic,media_service -14081,movie_television_studio,media_service -106,muay_thai_club,martial_arts_club -98818,museum,museum -36368,music_and_dvd_store,music_store -1,music_critic,media_service -59,music_festivals_and_organizations,festival_venue -57834,music_production,music_production_service -407,music_production_services,media_service -69087,music_school,specialty_school -49870,music_venue,music_venue -40,musical_band_orchestras_and_symphonies,music_venue -344,musical_instrument_services,media_service -42189,musical_instrument_store,specialty_store -1354,musician,event_or_party_service -3,mystic,spiritual_advising -194495,nail_salon,nail_salon -423,nanny_services,family_service -6,national_museum,museum -25646,national_park,national_park -7,national_security_services,government_office -4403,natural_gas_supplier,natural_gas_utility_service -4001,natural_hot_springs, -20758,nature_reserve, -125279,naturopathic_holistic,alternative_medicine -3618,nephrologist,internal_medicine -14595,neurologist,internal_medicine -1315,neuropathologist,internal_medicine -8,neurotologist,internal_medicine -543,newspaper_advertising,business_advertising_marketing -17074,newspaper_and_magazines_store,bookstore -206,nicaraguan_restaurant,restaurant -144,nigerian_restaurant,restaurant -4334,night_market,specialty_store -56391,non_governmental_association,civic_organization_office -43841,noodles_restaurant,restaurant -32220,notary_public,notary_public -11,nudist_clubs,sport_recreation_club -23320,nurse_practitioner,healthcare_location -104893,nursery_and_gardening,specialty_store -5353,nursing_school,specialty_school -60342,nutritionist,healthcare_location -2496,observatory,entertainment_location -58947,obstetrician_and_gynecologist,healthcare_location -1432,occupational_medicine,healthcare_location -13692,occupational_safety,b2b_service -11293,occupational_therapy,healthcare_location -4120,office_cleaning,business_cleaning_service -69104,office_equipment,specialty_store -9,office_of_vital_records,government_office -218,officiating_services,event_or_party_service -6733,oil_and_gas,oil_or_gas_facility -125,oil_and_gas_exploration_and_development,oil_or_gas_facility -1698,oil_and_gas_field_equipment_and_services,oil_or_gas_facility -19289,oil_change_station,vehicle_service -1322,oil_refiners,oil_or_gas_facility -115,olive_oil,food_or_beverage_store -14781,oncologist,internal_medicine -22245,online_shop,specialty_store -2210,onsen,personal_service -966,opera_and_ballet,performing_arts_venue -11521,ophthalmologist,eye_care -692,optical_wholesaler,wholesaler -89566,optometrist,eye_care -11082,oral_surgeon,dental_care -99,orchard,orchard -5,orchards_production,farm -6,organ_and_tissue_donor_service,healthcare_location -22410,organic_grocery_store,grocery_store -27341,organization,civic_organization_office -3,oriental_restaurant,restaurant -21393,orthodontist,orthodontic_care -1091,orthopedic_shoe_store,shoe_store -38655,orthopedist,healthcare_location -1239,orthotics,healthcare_location -2095,osteopath,healthcare_location -18405,osteopathic_physician,healthcare_location -288,otologist,healthcare_location -147,outdoor_advertising,business_advertising_marketing -1547,outdoor_furniture_store,specialty_store -30115,outdoor_gear,sporting_goods_store -33,outdoor_movies,movie_theater -11356,outlet_store,retail_location -4,oxygen_bar,healthcare_location -20193,package_locker,shipping_delivery_service -446,packaging_contractors_and_service,b2b_service -1979,packing_services,moving_service -15332,packing_supply,specialty_store -23,paddle_tennis_club,sport_recreation_club -239,paddleboard_rental,water_sport_equipment_rental_service -220,paddleboarding_center,sport_fitness_facility -1,paddleboarding_lessons,sport_fitness_facility -3822,pain_management,healthcare_location -127,paint_and_sip,entertainment_location -14605,paint_store,specialty_store -167,paint_your_own_pottery,art_craft_hobby_store -7124,paintball,entertainment_location -49522,painting,painting_service -3016,pakistani_restaurant,restaurant -4184,palace,historic_site -3284,pan_asian_restaurant,restaurant -305,panamanian_restaurant,restaurant -10186,pancake_house,restaurant -852,paper_mill,b2b_supplier_distributor -25,paraguayan_restaurant,restaurant -433,paralegal_services,paralegal_service -17,parasailing_ride_service,sport_fitness_facility -50,parenting_classes,specialty_school -536299,park,park -124,park_and_rides,park_and_ride -113927,parking,parking -11125,party_and_event_planning,event_or_party_service -5,party_bike_rental,event_or_party_service -244,party_bus_rental,event_or_party_service -14,party_character,event_or_party_service -2690,party_equipment_rental,event_or_party_service -49096,party_supply,specialty_store -17602,passport_and_visa_services,passport_visa_service -470,pasta_shop,food_or_beverage_store -894,patent_law,legal_service -76,paternity_tests_and_services,healthcare_location -4657,pathologist,healthcare_location -4799,patio_covers,home_service -3621,patisserie_cake_shop,food_or_beverage_store -6743,paving_contractor,building_contractor_service -27636,pawn_shop,second-hand_shop -597,payroll_services,human_resource_service -140,pediatric_anesthesiology,pediatrics -1660,pediatric_cardiology,pediatrics -10717,pediatric_dentist,dental_care -393,pediatric_endocrinology,pediatrics -394,pediatric_gastroenterology,pediatrics -21,pediatric_infectious_disease,pediatrics -142,pediatric_nephrology,pediatrics -347,pediatric_neurology,pediatrics -329,pediatric_oncology,pediatrics -439,pediatric_orthopedic_surgery,pediatrics -655,pediatric_pulmonology,pediatrics -86,pediatric_radiology,pediatrics -300,pediatric_surgery,pediatrics -47600,pediatrician,pediatrics -2,pedicab_service,transportation_location -62,pen_store,specialty_store -238,pension,government_office -23109,pentecostal_church,christian_place_of_worship -6617,performing_arts,performing_arts_venue -6987,perfume_store,specialty_store -2477,periodontist,dental_care -597,permanent_makeup,personal_service -2339,persian_iranian_restaurant,restaurant -646,personal_assistant,personal_service -5034,personal_care_service,personal_service -808,personal_chef,event_or_party_service -24096,personal_injury_law,attorney_or_law_firm -57,personal_shopper,personal_service -9333,peruvian_restaurant,restaurant -42823,pest_control_service,pest_control_service -1178,pet_adoption,animal_adoption -16222,pet_boarding,animal_boarding -25545,pet_breeder,animal_breeding -264,pet_cemetery_and_crematorium_services,animal_service -92476,pet_groomer,pet_grooming -1342,pet_hospice,animal_service -17,pet_insurance,animal_service -33,pet_photography,animal_service -86795,pet_services,animal_service -15489,pet_sitting,pet_sitting -171292,pet_store,pet_store -1118,pet_training,animal_training -26,pet_transportation,animal_service -24,pet_waste_removal,animal_service -2655,pets,animal_service -1462,petting_zoo,zoo -22478,pharmaceutical_companies,b2b_service -7198,pharmaceutical_products_wholesaler,wholesaler -502982,pharmacy,pharmacy -40,pharmacy_schools,college_university -36,phlebologist,healthcare_location -4352,photo_booth_rental,event_or_party_service -16452,photographer,photography_service -56,photography_classes,specialty_school -29,photography_museum,art_museum -22887,photography_store_and_services,photography_service -212813,physical_therapy,physical_therapy -4334,physician_assistant,healthcare_location -140,piadina_restaurant,restaurant -172,piano_bar,bar -882,piano_services,media_service -218,piano_store,specialty_store -59,pick_your_own_farm,farm -1066,pie_shop,food_or_beverage_store -4583,pier, -2006,piercing,tattoo_or_piercing_salon -86,pig_farm,farm -43480,pilates_studio,fitness_studio -659,pipe_supplier,b2b_supplier_distributor -531,pipeline_transportation,shipping_delivery_service -4948,pizza_delivery_service,pizzaria -459646,pizza_restaurant,pizzaria -1,placenta_encapsulation_service,healthcare_location -1503,planetarium,entertainment_location -482,plasterer,home_service -1730,plastic_company,b2b_supplier_distributor -16488,plastic_fabrication_company,b2b_supplier_distributor -207,plastic_injection_molding_workshop,b2b_supplier_distributor -15561,plastic_manufacturer,manufacturer -31720,plastic_surgeon,plastic_reconstructive_and_aesthetic_surgery -43292,playground,playground -6,playground_equipment_supplier,specialty_store -2040,plaza,public_plaza -97465,plumbing,plumbing_service -229,plus_size_clothing,clothing_store -40501,podiatrist,healthcare_location -65,podiatry,healthcare_location -1996,poke_restaurant,restaurant -93423,police_department,police_station -2752,polish_restaurant,restaurant -25803,political_organization,political_organization -15589,political_party_office,political_organization -123,polynesian_restaurant,restaurant -362,pool_and_billiards,specialty_store -2448,pool_and_hot_tub_services,home_service -15818,pool_billiards,pool_hall -21031,pool_cleaning,home_service -1394,pool_hall,pool_hall -4,pop_up_restaurant,restaurant -6111,pop_up_shop,retail_location -114,popcorn_shop,food_or_beverage_store -9554,portuguese_restaurant,restaurant -193989,post_office,post_office -10,potato_restaurant,restaurant -3744,poultry_farm,farm -105,poultry_farming,farm -49,poutinerie_restaurant,restaurant -5852,powder_coating_service,b2b_service -843,power_plants_and_power_plant_service,power_plant -8589,prenatal_perinatal_care,healthcare_location -204397,preschool,preschool -1962,pressure_washing,home_service -890,pretzels,food_or_beverage_store -93,preventive_medicine,healthcare_location -19584,print_media,print_media_service -24337,printing_equipment_and_supply,b2b_supplier_distributor -325782,printing_services,printing_service -5826,private_association,business_location -235,private_equity_firm,financial_service -73,private_establishments_and_corporates,corporate_or_business_office -7498,private_investigation,legal_service -135,private_jet_charters,air_transport_facility_service -37922,private_school,place_of_learning -1062,private_tutor,tutoring_service -3743,process_servers,legal_service -1436,proctologist,healthcare_location -1331,produce_wholesaler,wholesaler -38,product_design,engineering_service -1324440,professional_services,service_location -3965,professional_sports_league,pro_sport_league -4874,professional_sports_team,pro_sport_team -1655,promotional_products_and_services,business_advertising_marketing -47372,propane_supplier,b2b_supplier_distributor -133000,property_management,property_management_service -9,props,specialty_store -5649,prosthetics,healthcare_location -1769,prosthodontist,healthcare_location -14359,psychiatrist,psychiatry -14506,psychic,psychic_advising -860,psychic_medium,psychic_advising -26,psychoanalyst,mental_health -95625,psychologist,psychology -4,psychomotor_therapist,healthcare_location -37008,psychotherapist,psychotherapy -191358,pub,pub -199,public_adjuster,insurance_agency -321155,public_and_government_association,civic_organization_office -920,public_bath_houses,personal_service -6507,public_health_clinic,clinic_or_treatment_center -3749,public_market,retail_location -2,public_phones,public_utility_service -57842,public_plaza,public_plaza -11103,public_relations,business_management_service -191,public_restrooms,public_toilet -32530,public_school,place_of_learning -213054,public_service_and_government,civic_organization_office -1888,public_toilet,public_toilet -1085,public_transportation,transportation_location -16807,public_utility_company,public_utility_service -556,publicity_service,business_advertising_marketing -986,puerto_rican_restaurant,restaurant -4761,pulmonologist,internal_medicine -92,pumpkin_patch,specialty_store -21,qi_gong_studio,fitness_studio -745,quarries,utility_energy_infrastructure -409,quay, -20882,race_track,race_track -29,racing_experience,sport_fitness_facility -160,racquetball_court,sport_court -878,radio_and_television_commercials,business_advertising_marketing -17942,radio_station,radio_station -12276,radiologist,healthcare_location -718,rafting_kayaking_area,sport_fitness_facility -5264,railroad_freight,shipping_delivery_service -178,railway_service,transportation_location -15,railway_ticket_agent,travel_ticket_office -593,ranch,ranch -711948,real_estate,real_estate_service -639454,real_estate_agent,real_estate_agency -8767,real_estate_investment,financial_service -4098,real_estate_law,attorney_or_law_firm -131,real_estate_photography,real_estate_service -45912,real_estate_service,real_estate_service -5697,record_label,media_service -2717,recording_and_rehearsal_studio,media_service -4287,recreation_vehicle_repair,vehicle_service -13909,recreational_vehicle_dealer,recreational_vehicle_dealer -48,recreational_vehicle_parts_and_accessories,specialty_store -27560,recycling_center,recycling_center -425,refinishing_services,home_service -6832,reflexology,alternative_medicine -145,registry_office,government_office -4417,rehabilitation_center,clinic_or_treatment_center -353,reiki,alternative_medicine -8189,religious_destination,religious_organization -448,religious_items,specialty_store -462442,religious_organization,religious_organization -16805,religious_school,place_of_learning -20831,rental_kiosks,specialty_store -48678,rental_service,vehicle_service -18474,rental_services,property_management_service -5414,reptile_shop,pet_store -1053,research_institute,b2b_service -120861,resort,resort -528,rest_areas,rest_stop -118,rest_stop,rest_stop -2062391,restaurant,restaurant -16658,restaurant_equipment_and_supply,b2b_supplier_distributor -12,restaurant_management,b2b_service -2487,restaurant_wholesale,wholesaler -236097,retail,retail_location -38,retaining_wall_supplier,b2b_supplier_distributor -149,retina_specialist,eye_care -151171,retirement_home,social_or_community_service -3312,rheumatologist,internal_medicine -76,rice_mill,b2b_supplier_distributor -37,rice_shop,grocery_store -507,ride_sharing,ride_share_service -131566,river, -947,road_contractor,b2b_service -105,road_structures_and_services,transportation_location -1186,roadside_assistance,emergency_roadside_service -658,rock_climbing_gym,sport_fitness_facility -8,rock_climbing_instructor,sport_fitness_facility -6207,rock_climbing_spot,sport_fitness_facility -1695,rodeo,entertainment_location -1939,roller_skating_rink,skating_rink -564,romanian_restaurant,restaurant -90773,roofing,roofing_service -3,rotisserie_chicken_restaurant,restaurant -7,rowing_club,sport_recreation_club -1471,rug_store,specialty_store -878,rugby_pitch,sport_field -205,rugby_stadium,sport_stadium -13,ruin,historic_site -9,russian_grocery_store,grocery_store -1443,russian_restaurant,restaurant -1,rv_and_boat_storage_facility,storage_facility -29327,rv_park,rv_park -3591,rv_rentals,vehicle_service -652,rv_storage_facility,storage_facility -3,ryokan,inn -346,safe_store,specialty_store -6070,safety_equipment,specialty_store -144,sailing_area,sport_fitness_facility -229,sailing_club,sport_recreation_club -17935,sake_bar,bar -12180,salad_bar,restaurant -953,salsa_club,dance_club -1948,salvadoran_restaurant,restaurant -637,sand_and_gravel_supplier,b2b_supplier_distributor -9,sand_dune, -3032,sandblasting_service,b2b_service -89535,sandwich_shop,sandwich_shop -30,saree_shop,clothing_store -786,sauna,personal_service -1022,saw_mill,b2b_supplier_distributor -200,scale_supplier,b2b_supplier_distributor -2184,scandinavian_restaurant,restaurant -16,schnitzel_restaurant,restaurant -808734,school,place_of_learning -169,school_district_offices, -146,school_sports_league,school_sport_league -1186,school_sports_team,school_sport_team -2882,science_museum,science_museum -48,science_schools,college_university -158,scientific_laboratories,b2b_service -264,scooter_dealers,vehicle_dealer -118,scooter_rental,scooter_rental_service -3,scooter_tours,tour_operator -220,scottish_restaurant,restaurant -29,scout_hall,social_or_community_service -3450,scrap_metals,b2b_supplier_distributor -43754,screen_printing_t_shirt_printing,printing_service -8750,scuba_diving_center,sport_fitness_facility -2082,scuba_diving_instruction,sport_fitness_facility -3218,sculpture_statue,statue_sculpture -2393,seafood_market,food_or_beverage_store -151287,seafood_restaurant,restaurant -1008,seafood_wholesaler,wholesaler -1,seal_and_hanko_dealers,b2b_supplier_distributor -215,seaplane_bases,airport -848,secretarial_services,business_management_service -6573,security_services,security_service -6182,security_systems,home_service -797,self_catering_accommodation,accommodation -191,self_defense_classes,sport_fitness_facility -61380,self_storage_facility,self_storage_facility -61,senegalese_restaurant,restaurant -13954,senior_citizen_services,senior_citizen_service -7644,septic_services,home_service -6,serbo_croatian_restaurant,restaurant -6248,service_apartments,accommodation -4203,session_photography,photography_service -47251,sewing_and_alterations,clothing_alteration_service -2054,sex_therapist,mental_health -2071,shades_and_blinds,home_service -367,shared_office_space,real_estate_service -1473,shaved_ice_shop,casual_eatery -1,shaved_snow_shop,casual_eatery -265,sheet_metal,b2b_supplier_distributor -16,shinto_shrines,place_of_worship -99229,shipping_center,shipping_center -1103,shipping_collection_services,post_office -36,shoe_factory,b2b_supplier_distributor -15275,shoe_repair,personal_service -13,shoe_shining_service,personal_service -274625,shoe_store,shoe_store -14701,shooting_range,shooting_range -1056169,shopping,retail_location -208315,shopping_center,shopping_mall -4,shopping_passage,retail_location -7802,shredding_services,media_service -183,shutters,home_service -730,siding,home_service -11290,sightseeing_tour_agency,tour_operator -35619,sign_making,sign_making_service -4418,sikh_temple,place_of_worship -2,silent_disco,event_or_party_service -496,singaporean_restaurant,restaurant -16963,skate_park,skate_park -3484,skate_shop,sporting_goods_store -1207,skating_rink,skating_rink -2286,ski_and_snowboard_school,specialty_school -4510,ski_and_snowboard_shop,sporting_goods_store -22,ski_area,sport_fitness_facility -16928,ski_resort,resort -4374,skilled_nursing,healthcare_location -55568,skin_care,personal_service -1678,sky_diving,sport_fitness_facility -131,skylight_installation,home_service -2,skyline,scenic_viewpoint -4,skyscraper,industrial_commercial_infrastructure -54,sledding_rental,winter_sport_equipment_rental_service -1217,sleep_specialist,healthcare_location -95,slovakian_restaurant,restaurant -94,smokehouse,food_or_beverage_store -65277,smoothie_juice_bar,juice_bar -226,snorkeling,sport_fitness_facility -3,snorkeling_equipment_rental,water_sport_equipment_rental_service -260,snow_removal_service,home_service -3,snowboarding_center,sport_fitness_facility -2,snuggle_service,personal_service -918,soccer_club,sport_recreation_club -46706,soccer_field,sport_field -6257,soccer_stadium,sport_stadium -12009,social_and_human_services,social_or_community_service -10233,social_club,social_club -7666,social_media_agency,media_service -1737,social_media_company,media_service -603,social_security_law,attorney_or_law_firm -618,social_security_services,government_office -184723,social_service_organizations,social_or_community_service -569,social_welfare_center,social_or_community_service -154314,software_development,software_development -24392,solar_installation,home_service -13,solar_panel_cleaning,home_service -2,sommelier_service,event_or_party_service -1196,soul_food,restaurant -13470,soup_restaurant,restaurant -260,south_african_restaurant,restaurant -5281,southern_restaurant,restaurant -14446,souvenir_shop,gift_shop -21313,spanish_restaurant,restaurant -250572,spas,spa -2075,speakeasy,bar -1383,specialty_foods,food_or_beverage_store -9463,specialty_grocery_store,grocery_store -29489,specialty_school,specialty_school -15613,speech_therapist,healthcare_location -42,speech_training,specialty_school -12,sperm_clinic,clinic_or_treatment_center -36,spices_wholesaler,wholesaler -46,spine_surgeon,surgery -181,spiritual_shop,specialty_store -285,sport_equipment_rentals,recreational_equipment_rental_service -143194,sporting_goods,sporting_goods_store -13866,sports_and_fitness_instruction,sport_fitness_facility -171802,sports_and_recreation_venue,sport_fitness_facility -18341,sports_bar,bar -228400,sports_club_and_league,sport_recreation_club -4904,sports_medicine,sports_medicine -82,sports_museum,museum -137,sports_psychologist,mental_health -668,sports_school,specialty_school -31920,sports_wear,sporting_goods_store -750,spray_tanning,tanning_salon -82,spring_supplier,b2b_supplier_distributor -760,squash_court,sport_court -1002,sri_lankan_restaurant,restaurant -97980,stadium_arena,sport_stadium -326,state_museum,museum -1480,state_park,park -61780,steakhouse,restaurant -1829,steel_fabricators,b2b_supplier_distributor -6955,stock_and_bond_brokers,financial_service -26,stocking,fashion_or_apparel_store -1124,stone_and_masonry,building_construction_service -1008,stone_supplier,b2b_supplier_distributor -102281,storage_facility,storage_facility -121,street_art,street_art -23,street_vendor,casual_eatery -25,stress_management_services,mental_health -1193,strip_club,entertainment_location -7,striptease_dancer,entertainment_location -4708,structural_engineer,home_service -191222,structure_and_geography, -390,stucco_services,home_service -601,student_union,educational_service -74,studio_taping,entertainment_location -4,sugar_shack,bar -387,sugaring,personal_service -1,suicide_prevention_services,mental_health -7419,sunglasses_store,eyewear_store -388872,supermarket,grocery_store -86,supernatural_reading,spiritual_advising -11956,superstore,retail_location -2,surf_lifesaving_club,sport_recreation_club -5585,surf_shop,sporting_goods_store -68,surfboard_rental,water_sport_equipment_rental_service -4411,surfing,sport_fitness_facility -197,surfing_school,specialty_school -34398,surgeon,surgery -19793,surgical_appliances_and_supplies,b2b_service -7761,surgical_center,surgical_center -111220,sushi_restaurant,restaurant -10450,swimming_instructor,swimming_pool -75006,swimming_pool,swimming_pool -5446,swimwear_store,sporting_goods_store -2353,swiss_restaurant,restaurant -7963,synagogue,jewish_place_of_worship -1040,syrian_restaurant,restaurant -6368,t_shirt_store,clothing_store -170,tabac,bar -475,table_tennis_club,sport_recreation_club -62,tabletop_games,specialty_store -234,tableware_supplier,specialty_store -27310,taco_restaurant,restaurant -443,taekwondo_club,martial_arts_club -893,tai_chi_studio,fitness_studio -8560,taiwanese_restaurant,restaurant -1339,talent_agency,human_resource_service -91,tanning_bed,tanning_salon -35323,tanning_salon,tanning_salon -27405,tapas_bar,restaurant -5,tasting_classes,specialty_school -81,tatar_restaurant,restaurant -1433,tattoo,tattoo_or_piercing_salon -186955,tattoo_and_piercing,tattoo_or_piercing_salon -363,tattoo_removal,healthcare_location -2907,tax_law,attorney_or_law_firm -61,tax_office,government_office -37739,tax_services,tax_preparation_service -47,taxi_rank,taxi_service -50187,taxi_service,taxi_service -5303,taxidermist,personal_service -59491,tea_room,beverage_shop -29,tea_wholesaler,wholesaler -195,team_building_activity,event_or_party_service -2214,teeth_whitening,personal_service -31681,telecommunications,telecommunications_service -89814,telecommunications_company,telecommunications_service -1961,telemarketing_services,business_advertising_marketing -601,telephone_services,technical_service -14346,television_service_providers,home_service -1538,television_station,television_station -4123,temp_agency,human_resource_service -1126,temple,place_of_worship -59,tenant_and_eviction_law,legal_service -23421,tennis_court,sport_court -741,tennis_stadium,sport_stadium -10,tent_house_supplier,b2b_supplier_distributor -7666,test_preparation,educational_service -21644,texmex_restaurant,restaurant -2220,textile_mill,b2b_supplier_distributor -60,textile_museum,art_museum -100235,thai_restaurant,restaurant -1873,theaters_and_performance_venues,performing_arts_venue -77701,theatre,threatre_venue -4864,theatrical_productions,threatre_venue -28736,theme_restaurant,restaurant -2,thread_supplier,b2b_supplier_distributor -861,threading_service,personal_service -262,threads_and_yarns_wholesaler,wholesaler -78128,thrift_store,second-hand_shop -573,ticket_sales,entertainment_location -472,tiki_bar,bar -4911,tile_store,specialty_store -2902,tiling,home_service -120703,tire_dealer_and_repair,vehicle_service -4835,tire_repair_shop,vehicle_service -24785,tire_shop,specialty_store -311,tobacco_company,specialty_store -72764,tobacco_shop,specialty_store -44,toll_stations,toll_station -449,tools_wholesaler,wholesaler -135065,topic_concert_venue,music_venue -42426,topic_publisher,print_media_service -129412,tours,tour_operator -11,tower,communication_tower -16,tower_communication_service,communication_tower -33606,towing_service,towing_service -258,town_car_service,taxi_or_ride_share_service -79928,town_hall,government_office -10,toxicologist,healthcare_location -71619,toy_store,toy_store -1717,track_stadium,sport_stadium -169,trade_fair,event_space -23,traditional_chinese_medicine,alternative_medicine -1589,traditional_clothing,clothing_store -1247,traffic_school,specialty_school -25,traffic_ticketing_law,attorney_or_law_firm -28,trail,recreational_trail -7141,trailer_dealer,vehicle_dealer -5269,trailer_rentals,vehicle_service -155,trailer_repair,vehicle_service -114582,train_station,train_station -1370,trains,train_station -80,trampoline_park,sport_fitness_facility -185,transcription_services,b2b_service -11721,translating_and_interpreting_services,b2b_service -3588,translation_services,media_service -2299,transmission_repair,auto_repair_service -46,transport_interchange,transportation_location -208292,transportation,transportation_location -106448,travel,travel_service -43683,travel_agents,travel_agent -26116,travel_company,travel_service -308217,travel_services,travel_service -27058,tree_services,landscaping_gardening_service -48,trinidadian_restaurant,restaurant -3,trivia_host,event_or_party_service -5152,trophy_shop,specialty_store -13089,truck_dealer,truck_dealer -10402,truck_dealer_for_businesses,b2b_supplier_distributor -2937,truck_gas_station,gas_station -49884,truck_rentals,truck_rental_service -15329,truck_repair,vehicle_service -118,truck_repair_and_services_for_businesses,b2b_supplier_distributor -2,truck_stop,transportation_location -386,trucks_and_industrial_vehicles,b2b_supplier_distributor -72334,trusts,financial_service -15,tubing_provider,sport_fitness_facility -40,tui_na,alternative_medicine -36673,turkish_restaurant,restaurant -51,turnery,b2b_supplier_distributor -77553,tutoring_center,tutoring_service -1875,tv_mounting,technical_service -99,typing_services,media_service -942,ukrainian_restaurant,restaurant -48,ultrasound_imaging_center,diagnostic_service -102,undersea_hyperbaric_medicine,healthcare_location -122,unemployment_office,government_office -12520,uniform_store,fashion_or_apparel_store -1098,university_housing, -5572,urban_farm,farm -5014,urgent_care_clinic,clinic_or_treatment_center -13345,urologist,healthcare_location -87,uruguayan_restaurant,restaurant -977,used_bookstore,bookstore -62513,used_car_dealer,car_dealer -10202,used_vintage_and_consignment,second-hand_shop -654,utility_service,public_utility_service -126,uzbek_restaurant,restaurant -2406,vacation_rental_agents,accommodation -353,valet_service,event_or_party_service -288,vascular_medicine,internal_medicine -4756,vegan_restaurant,restaurant -26354,vegetarian_restaurant,restaurant -3052,vehicle_shipping,vehicle_service -376,vehicle_wrap,vehicle_service -9930,vending_machine_supplier,b2b_supplier_distributor -1242,venezuelan_restaurant,restaurant -26965,venue_and_event_space,event_space -2,vermouth_bar,bar -882,veterans_organization,social_club -205236,veterinarian,veterinarian -9162,video_and_video_game_rentals,specialty_store -3221,video_film_production,media_service -9,video_game_critic,media_service -32974,video_game_store,electronics_store -1951,videographer,event_or_party_service -35916,vietnamese_restaurant,restaurant -2042,vinyl_record_store,music_store -24,virtual_reality_center,entertainment_location -141,visa_agent,passport_visa_service -1989,visitor_center,visitor_information_center -47627,vitamins_and_supplements,specialty_store -139,vocal_coach,media_service -33660,vocational_and_technical_school,vocational_technical_school -30,volleyball_club,sport_recreation_club -2050,volleyball_court,sport_court -409,volunteer_association,social_or_community_service -295,waffle_restaurant,restaurant -13,waldorf_school,place_of_learning -2027,walk_in_clinic,clinic_or_treatment_center -72,walking_tours,tour_operator -37,wallpaper_installers,home_service -230,wallpaper_store,specialty_store -56,warehouse_rental_services_and_yards,warehouse -11681,warehouses,warehouse -97,washer_and_dryer_repair_service,applicance_repair_service -128,watch_repair_service,personal_service -3507,watch_store,fashion_or_apparel_store -55,water_delivery,home_service -1358,water_heater_installation_repair,applicance_repair_service -14092,water_park,park -1132,water_purification_services,home_service -460,water_softening_equipment_supplier,b2b_supplier_distributor -47,water_store,food_or_beverage_store -15578,water_supplier,water_utility_service -2,water_taxi,water_taxi_service -25980,water_treatment_equipment_and_services,b2b_service -6844,waterfall, -1080,waterproofing,home_service -11695,waxing,personal_service -21,weather_forecast_services,media_service -240,weather_station,media_service -24,weaving_mill,b2b_supplier_distributor -81437,web_designer,web_design_service -1029,web_hosting_service,internet_service_provider -1376,wedding_chapel,event_or_party_service -40852,wedding_planning,wedding_service -19851,weight_loss_center,clinic_or_treatment_center -1167,welders,b2b_service -4295,welding_supply_store,specialty_store -8255,well_drilling,home_service -1735,wellness_program,clinic_or_treatment_center -48,whale_watching_tours,tour_operator -2161,wheel_and_rim_repair,vehicle_service -1463,whiskey_bar,bar -401,wholesale_florist,wholesaler -7654,wholesale_grocer,wholesaler -133317,wholesale_store,warehouse_club -15204,wholesaler,wholesaler -4915,wig_store,fashion_or_apparel_store -1,wild_game_meats_restaurant,restaurant -223,wildlife_control,home_service -249,wildlife_hunting_range,sport_fitness_facility -9731,wildlife_sanctuary,wildlife_sanctuary -7166,wills_trusts_and_probate,will_trust_probate_service -70,wind_energy,utility_energy_infrastructure -5005,window_supplier,b2b_supplier_distributor -2618,window_treatment_store,specialty_store -1619,window_washing,home_service -38056,windows_installation,home_service -2665,windshield_installation_and_repair,vehicle_service -38191,wine_bar,bar -10,wine_tasting_classes,specialty_school -174,wine_tasting_room,winery -124,wine_tours,tour_operator -6257,wine_wholesaler,wholesaler -78518,winery,winery -7,wok_restaurant,restaurant -315116,womens_clothing_store,clothing_store -6395,womens_health_clinic,clinic_or_treatment_center -8811,wood_and_pulp,b2b_supplier_distributor -3476,woodworking_supply_store,specialty_store -155,workers_compensation_law,attorney_or_law_firm -2,wrap_restaurant,restaurant -2527,writing_service,media_service -123,yoga_instructor,fitness_studio -79713,yoga_studio,fitness_studio -48005,youth_organizations,youth_organization -29,ziplining_center,sport_fitness_facility -11474,zoo,zoo \ No newline at end of file diff --git a/docs/guides/places/csv/2025-12-05-Categories-Hierarchies.csv b/docs/guides/places/csv/2025-12-05-Categories-Hierarchies.csv deleted file mode 100644 index 258c814ca..000000000 --- a/docs/guides/places/csv/2025-12-05-Categories-Hierarchies.csv +++ /dev/null @@ -1,2330 +0,0 @@ -New Primary Category,New Primary Hierarchy,Basic Level Category,Old Primary Category,Old Primary Hierarchy -arts_and_entertainment,arts_and_entertainment,entertainment_location,arts_and_entertainment,arts_and_entertainment -arts_and_entertainment,arts_and_entertainment,entertainment_location,attractions_and_activities,attractions_and_activities -amusement_attraction,arts_and_entertainment > amusement_attraction,entertainment_location,, -amusement_park,arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,amusement_park,attractions_and_activities > amusement_park -carnival_venue,arts_and_entertainment > amusement_attraction > carnival_venue,festival_venue,, -carousel,arts_and_entertainment > amusement_attraction > carousel,entertainment_location,carousel,arts_and_entertainment > carousel -circus_venue,arts_and_entertainment > amusement_attraction > circus_venue,entertainment_location,circus,arts_and_entertainment > circus -haunted_house,arts_and_entertainment > amusement_attraction > haunted_house,entertainment_location,haunted_house,attractions_and_activities > haunted_house -animal_attraction,arts_and_entertainment > animal_attraction,animal_attraction,, -aquarium,arts_and_entertainment > animal_attraction > aquarium,aquarium,aquarium,attractions_and_activities > aquarium -wildlife_sanctuary,arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,wildlife_sanctuary,arts_and_entertainment > wildlife_sanctuary -zoo,arts_and_entertainment > animal_attraction > zoo,zoo,zoo,attractions_and_activities > zoo -petting_zoo,arts_and_entertainment > animal_attraction > zoo > petting_zoo,zoo,petting_zoo,attractions_and_activities > zoo > petting_zoo -zoo_exhibit,arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo,, -arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,artspace,, -arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,artspace,chamber_of_handicraft,arts_and_entertainment > chamber_of_handicraft -art_gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,art_gallery,attractions_and_activities > art_gallery -artist_studio,arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,, -glass_blowing_venue,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,entertainment_location,glass_blowing,arts_and_entertainment > glass_blowing -paint_and_sip_venue,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,entertainment_location,paint_and_sip,arts_and_entertainment > paint_and_sip -paint_your_own_pottery_venue,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,entertainment_location,paint_your_own_pottery,retail > shopping > arts_and_crafts > paint_your_own_pottery -sculpture_park,arts_and_entertainment > arts_and_crafts_space > sculpture_park,statue_sculpture,, -sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,statue_sculpture,sculpture_statue,attractions_and_activities > sculpture_statue -street_art,arts_and_entertainment > arts_and_crafts_space > street_art,street_art,street_art,attractions_and_activities > street_art -event_venue,arts_and_entertainment > event_venue,event_space,venue_and_event_space,professional_services > event_planning > venue_and_event_space -auditorium,arts_and_entertainment > event_venue > auditorium,event_space,auditorium,arts_and_entertainment > auditorium -exhibition_and_trade_fair_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,event_space,exhibition_and_trade_center,arts_and_entertainment > exhibition_and_trade_center -exhibition_and_trade_fair_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,event_space,trade_fair,arts_and_entertainment > festival > trade_fair -festival_venue,arts_and_entertainment > festival_venue,festival_venue,festival,arts_and_entertainment > festival -festival_venue,arts_and_entertainment > festival_venue,festival_venue,general_festivals,arts_and_entertainment > festival > general_festivals -fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,fair,arts_and_entertainment > festival > fair -film_festival_venue,arts_and_entertainment > festival_venue > film_festival_venue,festival_venue,film_festivals_and_organizations,arts_and_entertainment > festival > film_festivals_and_organizations -music_festival_venue,arts_and_entertainment > festival_venue > music_festival_venue,festival_venue,music_festivals_and_organizations,arts_and_entertainment > festival > music_festivals_and_organizations -gaming_venue,arts_and_entertainment > gaming_venue,gaming_venue,, -arcade,arts_and_entertainment > gaming_venue > arcade,arcade,arcade,arts_and_entertainment > arcade -betting_center,arts_and_entertainment > gaming_venue > betting_center,gaming_venue,betting_center,arts_and_entertainment > betting_center -bingo_hall,arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,bingo_hall,arts_and_entertainment > bingo_hall -casino,arts_and_entertainment > gaming_venue > casino,casino,casino,arts_and_entertainment > casino -escape_room,arts_and_entertainment > gaming_venue > escape_room,escape_room,escape_rooms,arts_and_entertainment > escape_rooms -scavenger_hunt,arts_and_entertainment > gaming_venue > scavenger_hunt,entertainment_location,scavenger_hunts_provider,attractions_and_activities > scavenger_hunts_provider -movie_theater,arts_and_entertainment > movie_theater,movie_theater,cinema,arts_and_entertainment > cinema -drive_in_theater,arts_and_entertainment > movie_theater > drive_in_theater,movie_theater,drive_in_theater,arts_and_entertainment > cinema > drive_in_theater -outdoor_movie_space,arts_and_entertainment > movie_theater > outdoor_movie_space,movie_theater,outdoor_movies,arts_and_entertainment > cinema > outdoor_movies -museum,arts_and_entertainment > museum,museum,museum,attractions_and_activities > museum -art_museum,arts_and_entertainment > museum > art_museum,art_museum,art_museum,attractions_and_activities > museum > art_museum -asian_art_museum,arts_and_entertainment > museum > art_museum > asian_art_museum,art_museum,asian_art_museum,attractions_and_activities > museum > art_museum > asian_art_museum -cartooning_museum,arts_and_entertainment > museum > art_museum > cartooning_museum,art_museum,cartooning_museum,attractions_and_activities > museum > art_museum > cartooning_museum -contemporary_art_museum,arts_and_entertainment > museum > art_museum > contemporary_art_museum,art_museum,contemporary_art_museum,attractions_and_activities > museum > art_museum > contemporary_art_museum -costume_museum,arts_and_entertainment > museum > art_museum > costume_museum,art_museum,costume_museum,attractions_and_activities > museum > art_museum > costume_museum -decorative_arts_museum,arts_and_entertainment > museum > art_museum > decorative_arts_museum,art_museum,decorative_arts_museum,attractions_and_activities > museum > art_museum > decorative_arts_museum -design_museum,arts_and_entertainment > museum > art_museum > design_museum,art_museum,design_museum,attractions_and_activities > museum > art_museum > design_museum -modern_art_museum,arts_and_entertainment > museum > art_museum > modern_art_museum,art_museum,modern_art_museum,attractions_and_activities > museum > art_museum > modern_art_museum -photography_museum,arts_and_entertainment > museum > art_museum > photography_museum,art_museum,photography_museum,attractions_and_activities > museum > art_museum > photography_museum -textile_museum,arts_and_entertainment > museum > art_museum > textile_museum,art_museum,textile_museum,attractions_and_activities > museum > art_museum > textile_museum -aviation_museum,arts_and_entertainment > museum > aviation_museum,science_museum,aviation_museum,attractions_and_activities > museum > aviation_museum -childrens_museum,arts_and_entertainment > museum > childrens_museum,childrens_museum,childrens_museum,attractions_and_activities > museum > childrens_museum -history_museum,arts_and_entertainment > museum > history_museum,history_museum,history_museum,attractions_and_activities > museum > history_museum -civilization_museum,arts_and_entertainment > museum > history_museum > civilization_museum,museum,civilization_museum,attractions_and_activities > museum > history_museum > civilization_museum -community_museum,arts_and_entertainment > museum > history_museum > community_museum,museum,community_museum,attractions_and_activities > museum > history_museum > community_museum -military_museum,arts_and_entertainment > museum > military_museum,museum,military_museum,attractions_and_activities > museum > military_museum -national_museum,arts_and_entertainment > museum > national_museum,museum,national_museum,attractions_and_activities > museum > national_museum -science_museum,arts_and_entertainment > museum > science_museum,science_museum,science_museum,attractions_and_activities > museum > science_museum -computer_museum,arts_and_entertainment > museum > science_museum > computer_museum,science_museum,computer_museum,attractions_and_activities > museum > science_museum > computer_museum -sports_museum,arts_and_entertainment > museum > sports_museum,museum,sports_museum,attractions_and_activities > museum > sports_museum -state_museum,arts_and_entertainment > museum > state_museum,museum,state_museum,attractions_and_activities > museum > state_museum -nightlife_venue,arts_and_entertainment > nightlife_venue,entertainment_location,, -adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,entertainment_location,adult_entertainment,arts_and_entertainment > adult_entertainment -erotic_massage_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,entertainment_location,erotic_massage,arts_and_entertainment > adult_entertainment > erotic_massage -strip_club,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,entertainment_location,strip_club,arts_and_entertainment > adult_entertainment > strip_club -strip_club,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,entertainment_location,striptease_dancer,arts_and_entertainment > adult_entertainment > striptease_dancer -bar_crawl,arts_and_entertainment > nightlife_venue > bar_crawl,social_club,bar_crawl,arts_and_entertainment > bar_crawl -club_crawl,arts_and_entertainment > nightlife_venue > club_crawl,social_club,club_crawl,arts_and_entertainment > club_crawl -dance_club,arts_and_entertainment > nightlife_venue > dance_club,dance_club,dance_club,arts_and_entertainment > dance_club -salsa_club,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,dance_club,salsa_club,arts_and_entertainment > salsa_club -performing_arts_venue,arts_and_entertainment > performing_arts_venue,performing_arts_venue,performing_arts,arts_and_entertainment > performing_arts -performing_arts_venue,arts_and_entertainment > performing_arts_venue,performing_arts_venue,theaters_and_performance_venues,arts_and_entertainment > theaters_and_performance_venues -amphitheater,arts_and_entertainment > performing_arts_venue > amphitheater,performing_arts_venue,, -cabaret,arts_and_entertainment > performing_arts_venue > cabaret,performing_arts_venue,cabaret,arts_and_entertainment > cabaret -comedy_club,arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,comedy_club,arts_and_entertainment > comedy_club -music_venue,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,music_venue,arts_and_entertainment > music_venue -music_venue,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,marching_band,arts_and_entertainment > marching_band -music_venue,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,topic_concert_venue,arts_and_entertainment > topic_concert_venue -band_orchestra_symphony,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,music_venue,musical_band_orchestras_and_symphonies,arts_and_entertainment > musical_band_orchestras_and_symphonies -choir,arts_and_entertainment > performing_arts_venue > music_venue > choir,music_venue,choir,arts_and_entertainment > choir -jazz_and_blues_venue,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,music_venue,jazz_and_blues,arts_and_entertainment > jazz_and_blues -karaoke_venue,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,music_venue,karaoke,arts_and_entertainment > karaoke -opera_and_ballet,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,performing_arts_venue,opera_and_ballet,arts_and_entertainment > opera_and_ballet -theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue,threatre_venue,theatre,arts_and_entertainment > theaters_and_performance_venues > theatre -dinner_theater,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,performing_arts_venue,dinner_theater,arts_and_entertainment > dinner_theater -dinner_theater,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,performing_arts_venue,eatertainment,arts_and_entertainment > eatertainment -rural_attraction,arts_and_entertainment > rural_attraction,entertainment_location,, -attraction_farm,arts_and_entertainment > rural_attraction > attraction_farm,farm,attraction_farm,arts_and_entertainment > farm > attraction_farm -corn_maze,arts_and_entertainment > rural_attraction > corn_maze,entertainment_location,, -country_dance_hall,arts_and_entertainment > rural_attraction > country_dance_hall,entertainment_location,country_dance_hall,arts_and_entertainment > country_dance_hall -pumpkin_patch,arts_and_entertainment > rural_attraction > pumpkin_patch,entertainment_location,pumpkin_patch,retail > shopping > home_and_garden > pumpkin_patch -rodeo,arts_and_entertainment > rural_attraction > rodeo,entertainment_location,rodeo,arts_and_entertainment > rodeo -science_attraction,arts_and_entertainment > science_attraction,entertainment_location,, -makerspace,arts_and_entertainment > science_attraction > makerspace,makerspace,makerspace,arts_and_entertainment > makerspace -observatory,arts_and_entertainment > science_attraction > observatory,entertainment_location,observatory,attractions_and_activities > observatory -planetarium,arts_and_entertainment > science_attraction > planetarium,entertainment_location,planetarium,arts_and_entertainment > planetarium -virtual_reality_center,arts_and_entertainment > science_attraction > virtual_reality_center,entertainment_location,virtual_reality_center,arts_and_entertainment > virtual_reality_center -vr_cafe,arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,entertainment_location,, -social_club,arts_and_entertainment > social_club,social_club,social_club,arts_and_entertainment > social_club -country_club,arts_and_entertainment > social_club > country_club,country_club,country_club,arts_and_entertainment > country_club -fraternal_organization,arts_and_entertainment > social_club > fraternal_organization,social_club,fraternal_organization,arts_and_entertainment > social_club > fraternal_organization -veterans_organization,arts_and_entertainment > social_club > veterans_organization,social_club,veterans_organization,arts_and_entertainment > social_club > veterans_organization -spiritual_advising,arts_and_entertainment > spiritual_advising,spiritual_advising,supernatural_reading,arts_and_entertainment > supernatural_reading -spiritual_advising,arts_and_entertainment > spiritual_advising,spiritual_advising,mystic,arts_and_entertainment > supernatural_reading > mystic -astrological_advising,arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,astrologer,arts_and_entertainment > supernatural_reading > astrologer -psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,psychic,arts_and_entertainment > supernatural_reading > psychic -psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,psychic_medium,arts_and_entertainment > supernatural_reading > psychic_medium -stadium_arena,arts_and_entertainment > stadium_arena,sport_stadium,stadium_arena,arts_and_entertainment > stadium_arena -arena,arts_and_entertainment > stadium_arena > arena,sport_stadium,, -stadium,arts_and_entertainment > stadium_arena > stadium,sport_stadium,, -baseball_stadium,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,sport_stadium,baseball_stadium,arts_and_entertainment > stadium_arena > baseball_stadium -basketball_stadium,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,sport_stadium,basketball_stadium,arts_and_entertainment > stadium_arena > basketball_stadium -cricket_ground,arts_and_entertainment > stadium_arena > stadium > cricket_ground,sport_stadium,cricket_ground,arts_and_entertainment > stadium_arena > cricket_ground -football_stadium,arts_and_entertainment > stadium_arena > stadium > football_stadium,sport_stadium,football_stadium,arts_and_entertainment > stadium_arena > football_stadium -hockey_arena,arts_and_entertainment > stadium_arena > stadium > hockey_arena,sport_stadium,hockey_arena,arts_and_entertainment > stadium_arena > hockey_arena -rugby_stadium,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,sport_stadium,rugby_stadium,arts_and_entertainment > stadium_arena > rugby_stadium -soccer_stadium,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,sport_stadium,soccer_stadium,arts_and_entertainment > stadium_arena > soccer_stadium -tennis_stadium,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,sport_stadium,tennis_stadium,arts_and_entertainment > stadium_arena > tennis_stadium -track_stadium,arts_and_entertainment > stadium_arena > stadium > track_stadium,sport_stadium,track_stadium,arts_and_entertainment > stadium_arena > track_stadium -ticket_office_or_booth,arts_and_entertainment > ticket_office_or_booth,entertainment_location,ticket_sales,arts_and_entertainment > ticket_sales -community_and_government,community_and_government,civic_organization_office,public_service_and_government,public_service_and_government -armed_forces_branch,community_and_government > armed_forces_branch,military_site,armed_forces_branch,public_service_and_government > armed_forces_branch -chambers_of_commerce,community_and_government > chambers_of_commerce,government_office,chambers_of_commerce,public_service_and_government > chambers_of_commerce -children_hall,community_and_government > children_hall,civic_organization_office,children_hall,public_service_and_government > children_hall -civic_center,community_and_government > civic_center,civic_center,civic_center,public_service_and_government > civic_center -community_center,community_and_government > community_center,community_center,community_center,public_service_and_government > community_center -community_service,community_and_government > community_service,social_or_community_service,community_services_non_profits,public_service_and_government > community_services -disability_services_and_support_organization,community_and_government > community_service > disability_services_and_support_organization,civic_organization_office,disability_services_and_support_organization,public_service_and_government > community_services > disability_services_and_support_organization -courthouse,community_and_government > courthouse,government_office,courthouse,public_service_and_government > courthouse -department_of_motor_vehicles,community_and_government > department_of_motor_vehicles,government_office,department_of_motor_vehicles,public_service_and_government > department_of_motor_vehicles -department_of_social_service,community_and_government > department_of_social_service,government_office,department_of_social_service,public_service_and_government > department_of_social_service -embassy,community_and_government > embassy,government_office,embassy,public_service_and_government > embassy -family_service_center,community_and_government > family_service_center,family_service,family_service_center,public_service_and_government > family_service_center -fire_department,community_and_government > fire_department,fire_station,fire_department,public_service_and_government > fire_department -government_office,community_and_government > government_office,government_office,central_government_office,public_service_and_government > central_government_office -government_office,community_and_government > government_office,government_office,federal_government_offices,public_service_and_government > federal_government_offices -government_office,community_and_government > government_office,government_office,government_services,public_service_and_government > government_services -government_office,community_and_government > government_office,government_office,local_and_state_government_offices,public_service_and_government > local_and_state_government_offices -social_security_service,community_and_government > government_office > social_security_service,government_office,social_security_services,public_service_and_government > government_services > social_security_services -immigration_and_naturalization,community_and_government > immigration_and_naturalization,government_office,immigration_and_naturalization,public_service_and_government > immigration_and_naturalization -jail_and_prison,community_and_government > jail_and_prison,jail_or_prison,jail_and_prison,public_service_and_government > jail_and_prison -juvenile_detention_center,community_and_government > jail_and_prison > juvenile_detention_center,jail_or_prison,juvenile_detention_center,public_service_and_government > jail_and_prison > juvenile_detention_center -law_enforcement,community_and_government > law_enforcement,police_station,law_enforcement,public_service_and_government > law_enforcement -library,community_and_government > library,library,library,public_service_and_government > library -low_income_housing,community_and_government > low_income_housing,social_or_community_service,low_income_housing,public_service_and_government > low_income_housing -national_security_service,community_and_government > national_security_service,government_office,national_security_services,public_service_and_government > national_security_services -office_of_vital_records,community_and_government > office_of_vital_records,government_office,office_of_vital_records,public_service_and_government > office_of_vital_records -organization,community_and_government > organization,civic_organization_office,organization,public_service_and_government > organization -agriculture_association,community_and_government > organization > agriculture_association,civic_organization_office,agriculture_association,public_service_and_government > organization > agriculture_association -environmental_conservation_organization,community_and_government > organization > environmental_conservation_organization,conservation_organization,environmental_conservation_organization,public_service_and_government > organization > environmental_conservation_organization -environmental_conservation_organization,community_and_government > organization > environmental_conservation_organization,conservation_organization,environmental_conservation_and_ecological_organizations,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > environmental_conservation_and_ecological_organizations -home_organization,community_and_government > organization > home_organization,social_or_community_service,home_organization,public_service_and_government > organization > home_organization -labor_union,community_and_government > organization > labor_union,labor_union,labor_union,public_service_and_government > organization > labor_union -non_governmental_association,community_and_government > organization > non_governmental_association,civic_organization_office,non_governmental_association,public_service_and_government > organization > non_governmental_association -political_organization,community_and_government > organization > political_organization,political_organization,political_organization,public_service_and_government > organization > political_organization -private_association,community_and_government > organization > private_association,business_location,private_association,public_service_and_government > organization > private_association -public_and_government_association,community_and_government > organization > public_and_government_association,civic_organization_office,public_and_government_association,public_service_and_government > organization > public_and_government_association -social_service_organization,community_and_government > organization > social_service_organization,social_or_community_service,social_service_organizations,public_service_and_government > organization > social_service_organizations -charity_organization,community_and_government > organization > social_service_organization > charity_organization,charity_organization,charity_organization,public_service_and_government > organization > social_service_organizations > charity_organization -child_protection_service,community_and_government > organization > social_service_organization > child_protection_service,child_protection_service,child_protection_service,public_service_and_government > organization > social_service_organizations > child_protection_service -food_bank,community_and_government > organization > social_service_organization > food_bank,food_bank,food_banks,public_service_and_government > organization > social_service_organizations > food_banks -foster_care_service,community_and_government > organization > social_service_organization > foster_care_service,foster_care_service,foster_care_services,public_service_and_government > organization > social_service_organizations > foster_care_services -gay_and_lesbian_services_organization,community_and_government > organization > social_service_organization > gay_and_lesbian_services_organization,social_or_community_service,gay_and_lesbian_services_organization,public_service_and_government > organization > social_service_organizations > gay_and_lesbian_services_organization -homeless_shelter,community_and_government > organization > social_service_organization > homeless_shelter,homeless_shelter,homeless_shelter,public_service_and_government > organization > social_service_organizations > homeless_shelter -housing_authority,community_and_government > organization > social_service_organization > housing_authority,social_or_community_service,housing_authorities,public_service_and_government > organization > social_service_organizations > housing_authorities -senior_citizen_service,community_and_government > organization > social_service_organization > senior_citizen_service,senior_citizen_service,senior_citizen_services,public_service_and_government > organization > social_service_organizations > senior_citizen_services -social_and_human_service,community_and_government > organization > social_service_organization > social_and_human_service,social_or_community_service,social_and_human_services,public_service_and_government > organization > social_service_organizations > social_and_human_services -social_welfare_center,community_and_government > organization > social_service_organization > social_welfare_center,social_or_community_service,social_welfare_center,public_service_and_government > organization > social_service_organizations > social_welfare_center -volunteer_association,community_and_government > organization > social_service_organization > volunteer_association,social_or_community_service,volunteer_association,public_service_and_government > organization > social_service_organizations > volunteer_association -youth_organization,community_and_government > organization > social_service_organization > youth_organization,youth_organization,youth_organizations,public_service_and_government > organization > social_service_organizations > youth_organizations -pension,community_and_government > pension,government_office,pension,public_service_and_government > pension -police_department,community_and_government > police_department,police_station,police_department,public_service_and_government > police_department -political_party_office,community_and_government > political_party_office,political_organization,political_party_office,public_service_and_government > political_party_office -post_office,community_and_government > post_office,post_office,post_office,public_service_and_government > post_office -shipping_collection_service,community_and_government > post_office > shipping_collection_service,post_office,shipping_collection_services,public_service_and_government > post_office > shipping_collection_services -public_toilet,community_and_government > public_toilet,public_toilet,public_toilet,public_service_and_government > public_toilet -public_utility_provider,community_and_government > public_utility_provider,public_utility_service,public_utility_company,public_service_and_government > public_utility_company -public_utility_provider,community_and_government > public_utility_provider,public_utility_service,utility_service,professional_services > utility_service -electric_utility_provider,community_and_government > public_utility_provider > electric_utility_provider,electric_utility_service,electric_utility_provider,public_service_and_government > public_utility_company > electric_utility_provider -electric_utility_provider,community_and_government > public_utility_provider > electric_utility_provider,electric_utility_service,electricity_supplier,professional_services > utility_service > electricity_supplier -garbage_collection_service,community_and_government > public_utility_provider > garbage_collection_service,garbage_collection_service,garbage_collection_service,professional_services > utility_service > garbage_collection_service -natural_gas_utility_provider,community_and_government > public_utility_provider > natural_gas_utility_provider,natural_gas_utility_service,natural_gas_supplier,professional_services > utility_service > natural_gas_supplier -public_phone,community_and_government > public_utility_provider > public_phone,public_utility_service,public_phones,professional_services > utility_service > public_phones -public_restroom,community_and_government > public_utility_provider > public_restroom,public_toilet,public_restrooms,professional_services > utility_service > public_restrooms -water_utility_provider,community_and_government > public_utility_provider > water_utility_provider,water_utility_service,water_supplier,professional_services > utility_service > water_supplier -railway_service,community_and_government > railway_service,transportation_location,railway_service,public_service_and_government > railway_service -registry_office,community_and_government > registry_office,government_office,registry_office,public_service_and_government > registry_office -retirement_home,community_and_government > retirement_home,social_or_community_service,retirement_home,public_service_and_government > retirement_home -scout_hall,community_and_government > scout_hall,social_or_community_service,scout_hall,public_service_and_government > scout_hall -tax_office,community_and_government > tax_office,government_office,tax_office,public_service_and_government > tax_office -town_hall,community_and_government > town_hall,government_office,town_hall,public_service_and_government > town_hall -unemployment_office,community_and_government > unemployment_office,government_office,unemployment_office,public_service_and_government > unemployment_office -weather_station,community_and_government > weather_station,media_service,weather_station,public_service_and_government > weather_station -cultural_and_historic,cultural_and_historic,cultural_civic_location,, -architectural_landmark,cultural_and_historic > architectural_landmark,historic_site,architecture,attractions_and_activities > architecture -architectural_landmark,cultural_and_historic > architectural_landmark,historic_site,landmark_and_historical_building,attractions_and_activities > landmark_and_historical_building -castle,cultural_and_historic > architectural_landmark > castle,castle,castle,attractions_and_activities > castle -fort,cultural_and_historic > architectural_landmark > fort,fort,fort,attractions_and_activities > fort -lighthouse,cultural_and_historic > architectural_landmark > lighthouse,lighthouse,lighthouse,attractions_and_activities > lighthouse -mission,cultural_and_historic > architectural_landmark > mission,religious_organization,mission,religious_organization > mission -palace,cultural_and_historic > architectural_landmark > palace,historic_site,palace,attractions_and_activities > palace -ruin,cultural_and_historic > architectural_landmark > ruin,historic_site,ruin,attractions_and_activities > ruin -tower,cultural_and_historic > architectural_landmark > tower,communication_tower,tower,structure_and_geography > tower -cultural_center,cultural_and_historic > cultural_center,entertainment_location,cultural_center,attractions_and_activities > cultural_center -memorial_park,cultural_and_historic > memorial_park,memorial_site,memorial_park,attractions_and_activities > park > memorial_park -monument,cultural_and_historic > monument,monument,monument,attractions_and_activities > monument -religious_organization,cultural_and_historic > religious_organization,religious_organization,religious_organization,religious_organization -religious_organization,cultural_and_historic > religious_organization,religious_organization,convents_and_monasteries,religious_organization > convents_and_monasteries -religious_organization,cultural_and_historic > religious_organization,religious_organization,religious_destination,religious_organization > religious_destination -convent,cultural_and_historic > religious_organization > convent,religious_organization,, -monastery,cultural_and_historic > religious_organization > monastery,religious_organization,, -pilgrimage_site,cultural_and_historic > religious_organization > pilgrimage_site,religious_organization,, -buddhist_pilgrimage_site,cultural_and_historic > religious_organization > pilgrimage_site > buddhist_pilgrimage_site,religious_organization,, -christian_pilgrimage_site,cultural_and_historic > religious_organization > pilgrimage_site > christian_pilgrimage_site,religious_organization,, -hindu_pilgrimage_site,cultural_and_historic > religious_organization > pilgrimage_site > hindu_pilgrimage_site,religious_organization,, -muslim_pilgrimage_site,cultural_and_historic > religious_organization > pilgrimage_site > muslim_pilgrimage_site,religious_organization,, -place_of_worship,cultural_and_historic > religious_organization > place_of_worship,place_of_worship,, -place_of_worship,cultural_and_historic > religious_organization > place_of_worship,place_of_worship,temple,religious_organization > temple -buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,buddhist_temple,religious_organization > buddhist_temple -mahayana_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,buddhist_place_of_worship,, -nichiren_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,buddhist_place_of_worship,, -pure_land_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,buddhist_place_of_worship,, -zen_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,buddhist_place_of_worship,, -theravada_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,buddhist_place_of_worship,, -vajrayana_buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,buddhist_place_of_worship,, -christian_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop,christian_place_of_worshop,church_cathedral,religious_organization > church_cathedral -church_of_the_east_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > church_of_the_east_place_of_worship,christian_place_of_worshop,, -eastern_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship,christian_place_of_worshop,, -antiochan_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,christian_place_of_worshop,, -bulgarian_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,christian_place_of_worshop,, -georgian_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,christian_place_of_worshop,, -greek_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,christian_place_of_worshop,, -romanian_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,christian_place_of_worshop,, -russian_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,christian_place_of_worshop,, -serbian_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,christian_place_of_worshop,, -oriental_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship,christian_place_of_worshop,, -armenian_apostolic_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,christian_place_of_worshop,, -coptic_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,christian_place_of_worshop,, -eritrean_orthodox_tewahedo_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,christian_place_of_worshop,, -ethiopian_orthodox_tewahedo_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,christian_place_of_worshop,, -malankara_orthodox_syrian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,christian_place_of_worshop,, -syriac_orthodox_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,christian_place_of_worshop,, -protestant_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship,christian_place_of_worshop,, -protestant_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship,christian_place_of_worshop,evangelical_church,religious_organization > church_cathedral > evangelical_church -adventist_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > adventist_place_of_worshop,christian_place_of_worshop,, -anabaptist_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anabaptist_place_of_worshop,christian_place_of_worshop,, -anglican_or_episcopal_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anglican_or_episcopal_place_of_worshop,christian_place_of_worshop,anglican_church,religious_organization > church_cathedral > anglican_church -anglican_or_episcopal_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anglican_or_episcopal_place_of_worshop,christian_place_of_worshop,episcopal_church,religious_organization > church_cathedral > episcopal_church -baptist_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > baptist_place_of_worshop,christian_place_of_worshop,baptist_church,religious_organization > church_cathedral > baptist_church -lutheran_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > lutheran_place_of_worshop,christian_place_of_worshop,, -methodist_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > methodist_place_of_worshop,christian_place_of_worshop,, -pentecostal_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > pentecostal_place_of_worshop,christian_place_of_worshop,pentecostal_church,religious_organization > church_cathedral > pentecostal_church -reformed_or_calvanist_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > reformed_or_calvanist_place_of_worshop,christian_place_of_worshop,, -restorationist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship,christian_place_of_worshop,, -jehovahs_witness_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > jehovahs_witness_place_of_worshop,christian_place_of_worshop,jehovahs_witness_kingdom_hall,religious_organization > church_cathedral > jehovahs_witness_kingdom_hall -mormon_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > mormon_place_of_worship,christian_place_of_worshop,, -roman_catholic_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop,christian_place_of_worshop,catholic_church,religious_organization > church_cathedral > catholic_church -eastern_catholic_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > eastern_catholic_place_of_worshop,christian_place_of_worshop,, -western_catholic_place_of_worshop,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > western_catholic_place_of_worshop,christian_place_of_worshop,, -hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,hindu_temple,religious_organization > hindu_temple -shaiva_hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,hindu_place_of_worship,, -shakta_hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,hindu_place_of_worship,, -smarta_hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,hindu_place_of_worship,, -vaishnava_hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,hindu_place_of_worship,, -jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,synagogue,religious_organization > synagogue -conservative_jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,jewish_place_of_worship,, -orthodox_jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,jewish_place_of_worship,, -reconstructionist_jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,jewish_place_of_worship,, -reform_jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,jewish_place_of_worship,, -muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,mosque,religious_organization > mosque -ibadi_muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,muslim_place_of_worship,, -shia_muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,muslim_place_of_worship,, -sunni_muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,muslim_place_of_worship,, -sikh_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > sikh_place_of_worship,place_of_worship,sikh_temple,religious_organization > sikh_temple -religious_landmark,cultural_and_historic > religious_organization > religious_landmark,religious_organization,, -religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center,religious_organization,, -christian_retreat_center,cultural_and_historic > religious_organization > religious_retreat_or_center > christian_retreat_center,religious_organization,, -hindu_ashram,cultural_and_historic > religious_organization > religious_retreat_or_center > hindu_ashram,religious_organization,, -zen_center,cultural_and_historic > religious_organization > religious_retreat_or_center > zen_center,religious_organization,, -seminary,cultural_and_historic > religious_organization > seminary,religious_organization,, -shrine,cultural_and_historic > religious_organization > shrine,religious_organization,, -catholic_shrine,cultural_and_historic > religious_organization > shrine > catholic_shrine,religious_organization,, -shinto_shrine,cultural_and_historic > religious_organization > shrine > shinto_shrine,religious_organization,shinto_shrines,religious_organization > shinto_shrines -sufi_shrine,cultural_and_historic > religious_organization > shrine > sufi_shrine,religious_organization,, -education,education,place_of_learning,education,education -adult_education,education > adult_education,place_of_learning,adult_education,education > adult_education -board_of_education_office,education > board_of_education_office,government_office,board_of_education_offices,education > board_of_education_offices -campus_building,education > campus_building,place_of_learning,campus_building,education > campus_building -college_counseling,education > college_counseling,educational_service,college_counseling,education > college_counseling -college_university,education > college_university,college_university,college_university,education > college_university -architecture_school,education > college_university > architecture_school,college_university,architecture_schools,education > college_university > architecture_schools -business_school,education > college_university > business_school,college_university,business_schools,education > college_university > business_schools -engineering_school,education > college_university > engineering_school,college_university,engineering_schools,education > college_university > engineering_schools -law_school,education > college_university > law_school,college_university,law_schools,education > college_university > law_schools -medical_sciences_school,education > college_university > medical_sciences_school,college_university,medical_sciences_schools,education > college_university > medical_sciences_schools -dentistry_school,education > college_university > medical_sciences_school > dentistry_school,college_university,dentistry_schools,education > college_university > medical_sciences_schools > dentistry_schools -pharmacy_school,education > college_university > medical_sciences_school > pharmacy_school,college_university,pharmacy_schools,education > college_university > medical_sciences_schools > pharmacy_schools -veterinary_school,education > college_university > medical_sciences_school > veterinary_school,college_university,veterinary_schools,education > college_university > medical_sciences_schools > veterinary_schools -science_school,education > college_university > science_school,college_university,science_schools,education > college_university > science_schools -educational_camp,education > educational_camp,place_of_learning,educational_camp,education > educational_camp -educational_research_institute,education > educational_research_institute,place_of_learning,educational_research_institute,education > educational_research_institute -educational_service,education > educational_service,educational_service,educational_services,education > educational_services -archaeological_service,education > educational_service > archaeological_service,educational_service,archaeological_services,education > educational_services > archaeological_services -private_tutor,education > private_tutor,tutoring_service,private_tutor,education > private_tutor -school,education > school,place_of_learning,school,education > school -charter_school,education > school > charter_school,place_of_learning,charter_school,education > school > charter_school -elementary_school,education > school > elementary_school,elementary_school,elementary_school,education > school > elementary_school -high_school,education > school > high_school,high_school,high_school,education > school > high_school -middle_school,education > school > middle_school,middle_school,middle_school,education > school > middle_school -montessori_school,education > school > montessori_school,place_of_learning,montessori_school,education > school > montessori_school -preschool,education > school > preschool,preschool,preschool,education > school > preschool -private_school,education > school > private_school,place_of_learning,private_school,education > school > private_school -public_school,education > school > public_school,place_of_learning,public_school,education > school > public_school -religious_school,education > school > religious_school,place_of_learning,religious_school,education > school > religious_school -waldorf_school,education > school > waldorf_school,place_of_learning,waldorf_school,education > school > waldorf_school -school_district_office,education > school_district_office,civic_organization_office,school_district_offices,education > school_district_offices -specialty_school,education > specialty_school,specialty_school,specialty_school,education > specialty_school -art_school,education > specialty_school > art_school,specialty_school,art_school,education > specialty_school > art_school -bartending_school,education > specialty_school > bartending_school,specialty_school,bartending_school,education > specialty_school > bartending_school -cheerleading,education > specialty_school > cheerleading,specialty_school,cheerleading,education > specialty_school > cheerleading -childbirth_education,education > specialty_school > childbirth_education,specialty_school,childbirth_education,education > specialty_school > childbirth_education -circus_school,education > specialty_school > circus_school,specialty_school,circus_school,education > specialty_school > circus_school -computer_coaching,education > specialty_school > computer_coaching,specialty_school,computer_coaching,education > specialty_school > computer_coaching -cooking_school,education > specialty_school > cooking_school,specialty_school,cooking_school,education > specialty_school > cooking_school -cosmetology_school,education > specialty_school > cosmetology_school,specialty_school,cosmetology_school,education > specialty_school > cosmetology_school -cpr_class,education > specialty_school > cpr_class,specialty_school,cpr_classes,education > specialty_school > cpr_classes -drama_school,education > specialty_school > drama_school,specialty_school,drama_school,education > specialty_school > drama_school -driving_school,education > specialty_school > driving_school,specialty_school,driving_school,education > specialty_school > driving_school -dui_school,education > specialty_school > dui_school,specialty_school,dui_school,education > specialty_school > dui_school -firearm_training,education > specialty_school > firearm_training,specialty_school,firearm_training,education > specialty_school > firearm_training -first_aid_class,education > specialty_school > first_aid_class,specialty_school,first_aid_class,education > specialty_school > first_aid_class -flight_school,education > specialty_school > flight_school,specialty_school,flight_school,education > specialty_school > flight_school -food_safety_training,education > specialty_school > food_safety_training,specialty_school,food_safety_training,education > specialty_school > food_safety_training -language_school,education > specialty_school > language_school,specialty_school,language_school,education > specialty_school > language_school -massage_school,education > specialty_school > massage_school,specialty_school,massage_school,education > specialty_school > massage_school -medical_school,education > specialty_school > medical_school,specialty_school,medical_school,education > specialty_school > medical_school -music_school,education > specialty_school > music_school,specialty_school,music_school,education > specialty_school > music_school -nursing_school,education > specialty_school > nursing_school,specialty_school,nursing_school,education > specialty_school > nursing_school -parenting_class,education > specialty_school > parenting_class,specialty_school,parenting_classes,education > specialty_school > parenting_classes -photography_class,education > specialty_school > photography_class,specialty_school,photography_classes,education > specialty_school > photography_classes -speech_training,education > specialty_school > speech_training,specialty_school,speech_training,education > specialty_school > speech_training -sports_school,education > specialty_school > sports_school,specialty_school,sports_school,education > specialty_school > sports_school -traffic_school,education > specialty_school > traffic_school,specialty_school,traffic_school,education > specialty_school > traffic_school -vocational_and_technical_school,education > specialty_school > vocational_and_technical_school,vocational_technical_school,vocational_and_technical_school,education > specialty_school > vocational_and_technical_school -student_union,education > student_union,educational_service,student_union,education > student_union -tasting_class,education > tasting_class,specialty_school,tasting_classes,education > tasting_classes -cheese_tasting_class,education > tasting_class > cheese_tasting_class,specialty_school,cheese_tasting_classes,education > tasting_classes > cheese_tasting_classes -wine_tasting_class,education > tasting_class > wine_tasting_class,specialty_school,wine_tasting_classes,education > tasting_classes > wine_tasting_classes -test_preparation,education > test_preparation,educational_service,test_preparation,education > test_preparation -tutoring_center,education > tutoring_center,tutoring_service,tutoring_center,education > tutoring_center -civil_examinations_academy,education > tutoring_center > civil_examinations_academy,educational_service,civil_examinations_academy,education > tutoring_center > civil_examinations_academy -food_and_drink,food_and_drink,eating_drinking_location,eat_and_drink,eat_and_drink -bar,food_and_drink > bar,bar,bar,eat_and_drink > bar -bar_tabac,food_and_drink > bar > bar_tabac,bar,tabac,eat_and_drink > bar > tabac -beach_bar,food_and_drink > bar > beach_bar,bar,beach_bar,eat_and_drink > bar > beach_bar -beer_bar,food_and_drink > bar > beer_bar,bar,beer_bar,eat_and_drink > bar > beer_bar -champagne_bar,food_and_drink > bar > champagne_bar,bar,champagne_bar,eat_and_drink > bar > champagne_bar -cigar_bar,food_and_drink > bar > cigar_bar,bar,cigar_bar,eat_and_drink > bar > cigar_bar -cocktail_bar,food_and_drink > bar > cocktail_bar,bar,cocktail_bar,eat_and_drink > bar > cocktail_bar -dive_bar,food_and_drink > bar > dive_bar,bar,dive_bar,eat_and_drink > bar > dive_bar -drive_thru_bar,food_and_drink > bar > drive_thru_bar,bar,drive_thru_bar,eat_and_drink > bar > drive_thru_bar -gay_bar,food_and_drink > bar > gay_bar,bar,gay_bar,eat_and_drink > bar > gay_bar -hookah_bar,food_and_drink > bar > hookah_bar,bar,hookah_bar,eat_and_drink > bar > hookah_bar -hotel_bar,food_and_drink > bar > hotel_bar,bar,hotel_bar,eat_and_drink > bar > hotel_bar -piano_bar,food_and_drink > bar > piano_bar,bar,piano_bar,eat_and_drink > bar > piano_bar -pub,food_and_drink > bar > pub,pub,pub,eat_and_drink > bar > pub -irish_pub,food_and_drink > bar > pub > irish_pub,pub,irish_pub,eat_and_drink > bar > irish_pub -sake_bar,food_and_drink > bar > sake_bar,bar,sake_bar,eat_and_drink > bar > sake_bar -speakeasy,food_and_drink > bar > speakeasy,bar,speakeasy,eat_and_drink > bar > speakeasy -sports_bar,food_and_drink > bar > sports_bar,bar,sports_bar,eat_and_drink > bar > sports_bar -tiki_bar,food_and_drink > bar > tiki_bar,bar,tiki_bar,eat_and_drink > bar > tiki_bar -vermouth_bar,food_and_drink > bar > vermouth_bar,bar,vermouth_bar,eat_and_drink > bar > vermouth_bar -whiskey_bar,food_and_drink > bar > whiskey_bar,bar,whiskey_bar,eat_and_drink > bar > whiskey_bar -wine_bar,food_and_drink > bar > wine_bar,bar,wine_bar,eat_and_drink > bar > wine_bar -beverage_shop,food_and_drink > beverage_shop,beverage_shop,beverage_store,retail > beverage_store -bubble_tea_shop,food_and_drink > beverage_shop > bubble_tea_shop,beverage_shop,bubble_tea,eat_and_drink > bar > bubble_tea -coffee_roastery,food_and_drink > beverage_shop > coffee_roastery,beverage_shop,coffee_roastery,eat_and_drink > cafe > coffee_roastery -coffee_shop,food_and_drink > beverage_shop > coffee_shop,coffee_shop,coffee_shop,eat_and_drink > cafe > coffee_shop -kombucha_bar,food_and_drink > beverage_shop > kombucha_bar,beverage_shop,kombucha,eat_and_drink > bar > kombucha -milk_bar,food_and_drink > beverage_shop > milk_bar,beverage_shop,milk_bar,eat_and_drink > bar > milk_bar -milkshake_bar,food_and_drink > beverage_shop > milkshake_bar,beverage_shop,milkshake_bar,eat_and_drink > bar > milkshake_bar -smoothie_juice_bar,food_and_drink > beverage_shop > smoothie_juice_bar,juice_bar,smoothie_juice_bar,eat_and_drink > bar > smoothie_juice_bar -tea_room,food_and_drink > beverage_shop > tea_room,beverage_shop,tea_room,eat_and_drink > cafe > tea_room -brewery_winery_distillery,food_and_drink > brewery_winery_distillery,eating_drinking_location,, -beer_garden,food_and_drink > brewery_winery_distillery > beer_garden,eating_drinking_location,beer_garden,eat_and_drink > bar > beer_garden -brewery,food_and_drink > brewery_winery_distillery > brewery,brewery,brewery,eat_and_drink > bar > brewery -cidery,food_and_drink > brewery_winery_distillery > cidery,eating_drinking_location,cidery,eat_and_drink > bar > cidery -distillery,food_and_drink > brewery_winery_distillery > distillery,eating_drinking_location,distillery,retail > distillery -winery,food_and_drink > brewery_winery_distillery > winery,winery,winery,retail > food > winery -wine_tasting_room,food_and_drink > brewery_winery_distillery > winery > wine_tasting_room,winery,wine_tasting_room,retail > food > winery > wine_tasting_room -casual_eatery,food_and_drink > casual_eatery,casual_eatery,, -bagel_shop,food_and_drink > casual_eatery > bagel_shop,casual_eatery,bagel_shop,retail > food > bagel_shop -bagel_shop,food_and_drink > casual_eatery > bagel_shop,casual_eatery,bagel_restaurant,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > bagel_restaurant -bakery,food_and_drink > casual_eatery > bakery,bakery,bakery,retail > food > bakery -baguette_shop,food_and_drink > casual_eatery > bakery > baguette_shop,bakery,baguettes,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > baguettes -flatbread_shop,food_and_drink > casual_eatery > bakery > flatbread_shop,bakery,flatbread,retail > food > bakery > flatbread -flatbread_shop,food_and_drink > casual_eatery > bakery > flatbread_shop,bakery,flatbread_restaurant,eat_and_drink > restaurant > flatbread_restaurant -macaron_shop,food_and_drink > casual_eatery > bakery > macaron_shop,bakery,macarons,retail > food > specialty_foods > macarons -pretzel_shop,food_and_drink > casual_eatery > bakery > pretzel_shop,bakery,pretzels,retail > food > pretzels -bistro,food_and_drink > casual_eatery > bistro,casual_eatery,bistro,eat_and_drink > restaurant > bistro -cafe,food_and_drink > casual_eatery > cafe,cafe,cafe,eat_and_drink > cafe -animal_cafe,food_and_drink > casual_eatery > cafe > animal_cafe,cafe,, -cat_cafe,food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cafe,, -dog_cafe,food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,cafe,, -hong_kong_style_cafe,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,cafe,hong_kong_style_cafe,eat_and_drink > restaurant > asian_restaurant > hong_kong_style_cafe -internet_cafe,food_and_drink > casual_eatery > cafe > internet_cafe,cafe,internet_cafe,arts_and_entertainment > internet_cafe -candy_store,food_and_drink > casual_eatery > candy_store,candy_shop,candy_store,retail > food > candy_store -chocolatier,food_and_drink > casual_eatery > candy_store > chocolatier,candy_shop,chocolatier,retail > food > chocolatier -indian_sweets_shop,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,candy_shop,indian_sweets_shop,retail > food > specialty_foods > indian_sweets_shop -japanese_confectionery_shop,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,candy_shop,japanese_confectionery_shop,retail > food > candy_store > japanese_confectionery_shop -canteen,food_and_drink > casual_eatery > canteen,casual_eatery,canteen,eat_and_drink > restaurant > canteen -delicatessen,food_and_drink > casual_eatery > delicatessen,deli,delicatessen,retail > food > specialty_foods > delicatessen -dessert_shop,food_and_drink > casual_eatery > dessert_shop,casual_eatery,desserts,retail > food > desserts -cupcake_shop,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,casual_eatery,cupcake_shop,retail > food > patisserie_cake_shop > cupcake_shop -donut_shop,food_and_drink > casual_eatery > dessert_shop > donut_shop,casual_eatery,donuts,retail > food > donuts -frozen_yogurt_shop,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,casual_eatery,frozen_yoghurt_shop,retail > food > ice_cream_and_frozen_yoghurt > frozen_yoghurt_shop -gelato,food_and_drink > casual_eatery > dessert_shop > gelato_shop,casual_eatery,gelato,retail > food > ice_cream_and_frozen_yoghurt > gelato -ice_cream_shop,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,casual_eatery,ice_cream_shop,retail > food > ice_cream_and_frozen_yoghurt > ice_cream_shop -ice_cream_shop,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,casual_eatery,ice_cream_and_frozen_yoghurt,retail > food > ice_cream_and_frozen_yoghurt -pie_shop,food_and_drink > casual_eatery > dessert_shop > pie_shop,casual_eatery,pie_shop,retail > food > pie_shop -shaved_ice_shop,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,casual_eatery,shaved_ice_shop,retail > food > ice_cream_and_frozen_yoghurt > shaved_ice_shop -shaved_ice_shop,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,casual_eatery,shaved_snow_shop,retail > food > ice_cream_and_frozen_yoghurt > shaved_snow_shop -diner,food_and_drink > casual_eatery > diner,casual_eatery,diner,eat_and_drink > restaurant > diner -fast_food_restaurant,food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,fast_food_restaurant,eat_and_drink > restaurant > fast_food_restaurant -fondue_restaurant,food_and_drink > casual_eatery > fondue_restaurant,casual_eatery,fondue_restaurant,eat_and_drink > restaurant > fondue_restaurant -food_court,food_and_drink > casual_eatery > food_court,food_court,food_court,eat_and_drink > restaurant > food_court -food_stand,food_and_drink > casual_eatery > food_stand,casual_eatery,food_stand,retail > food > food_stand -food_truck,food_and_drink > casual_eatery > food_truck,casual_eatery,food_truck,retail > food > food_truck -friterie,food_and_drink > casual_eatery > friterie,casual_eatery,friterie,retail > food > friterie -gastropub,food_and_drink > casual_eatery > gastropub,casual_eatery,gastropub,eat_and_drink > restaurant > gastropub -popcorn_shop,food_and_drink > casual_eatery > popcorn_shop,food_or_beverage_store,popcorn_shop,retail > popcorn_shop -sandwich_shop,food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,sandwich_shop,retail > food > sandwich_shop -street_vendor,food_and_drink > casual_eatery > street_vendor,casual_eatery,street_vendor,retail > food > street_vendor -sugar_shack,food_and_drink > casual_eatery > sugar_shack,casual_eatery,sugar_shack,eat_and_drink > bar > sugar_shack -tapas_bar,food_and_drink > casual_eatery > tapas_bar,casual_eatery,tapas_bar,eat_and_drink > restaurant > tapas_bar -lounge,food_and_drink > lounge,eating_drinking_location,lounge,eat_and_drink > bar > lounge -airport_lounge,food_and_drink > lounge > airport_lounge,eating_drinking_location,airport_lounge,eat_and_drink > bar > airport_lounge -restaurant,food_and_drink > restaurant,restaurant,restaurant,eat_and_drink > restaurant -restaurant,food_and_drink > restaurant,restaurant,pigs_trotters_restaurant,eat_and_drink > restaurant > pigs_trotters_restaurant -restaurant,food_and_drink > restaurant,restaurant,potato_restaurant,eat_and_drink > restaurant > potato_restaurant -african_restaurant,food_and_drink > restaurant > african_restaurant,restaurant,african_restaurant,eat_and_drink > restaurant > african_restaurant -east_african_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant,restaurant,, -eritrean_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,restaurant,, -ethiopian_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,restaurant,ethiopian_restaurant,eat_and_drink > restaurant > african_restaurant > ethiopian_restaurant -somalian_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,restaurant,, -north_african_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant,restaurant,, -algerian_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,restaurant,, -egyptian_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,restaurant,egyptian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > egyptian_restaurant -moroccan_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,restaurant,moroccan_restaurant,eat_and_drink > restaurant > african_restaurant > moroccan_restaurant -southern_african_restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant,restaurant,, -south_african_restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,restaurant,south_african_restaurant,eat_and_drink > restaurant > african_restaurant > south_african_restaurant -west_african_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant,restaurant,, -ghanaian_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,restaurant,, -nigerian_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,restaurant,nigerian_restaurant,eat_and_drink > restaurant > african_restaurant > nigerian_restaurant -senegalese_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,restaurant,senegalese_restaurant,eat_and_drink > restaurant > african_restaurant > senegalese_restaurant -asian_restaurant,food_and_drink > restaurant > asian_restaurant,restaurant,asian_restaurant,eat_and_drink > restaurant > asian_restaurant -asian_restaurant,food_and_drink > restaurant > asian_restaurant,restaurant,oriental_restaurant,eat_and_drink > restaurant > oriental_restaurant -central_asian_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,restaurant,, -afghani_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,restaurant,afghan_restaurant,eat_and_drink > restaurant > afghan_restaurant -kazakhstani_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,restaurant,, -uzbek_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,restaurant,uzbek_restaurant,eat_and_drink > restaurant > uzbek_restaurant -east_asian_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,restaurant,, -chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,restaurant,chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > chinese_restaurant -baozi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,restaurant,baozi_restaurant,eat_and_drink > restaurant > baozi_restaurant -beijing_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,restaurant,, -cantonese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,restaurant,, -dim_sum_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,restaurant,dim_sum_restaurant,eat_and_drink > restaurant > asian_restaurant > dim_sum_restaurant -dongbei_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,restaurant,, -fujian_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,restaurant,, -hunan_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,restaurant,, -indo_chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,restaurant,indo_chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > indo_chinese_restaurant -jiangsu_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,restaurant,, -shandong_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,restaurant,, -shanghainese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,restaurant,, -sichuan_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,restaurant,, -xinjiang_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,restaurant,, -japanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,restaurant,japanese_restaurant,eat_and_drink > restaurant > asian_restaurant > japanese_restaurant -sushi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,restaurant,sushi_restaurant,eat_and_drink > restaurant > asian_restaurant > sushi_restaurant -korean_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,restaurant,korean_restaurant,eat_and_drink > restaurant > asian_restaurant > korean_restaurant -mongolian_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,restaurant,mongolian_restaurant,eat_and_drink > restaurant > asian_restaurant > mongolian_restaurant -taiwanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,restaurant,taiwanese_restaurant,eat_and_drink > restaurant > asian_restaurant > taiwanese_restaurant -ramen_restaurant,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,restaurant,noodles_restaurant,eat_and_drink > restaurant > asian_restaurant > noodles_restaurant -south_asian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,restaurant,, -bangladeshi_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,restaurant,bangladeshi_restaurant,eat_and_drink > restaurant > bangladeshi_restaurant -himalayan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,restaurant,, -himalayan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,restaurant,himalayan_nepalese_restaurant,eat_and_drink > restaurant > himalayan_nepalese_restaurant -nepalese_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,restaurant,, -indian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,restaurant,indian_restaurant,eat_and_drink > restaurant > indian_restaurant -bengali_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,restaurant,, -chettinad_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,restaurant,, -gujarati_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,restaurant,, -hyderabadi_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,restaurant,, -north_indian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,restaurant,, -punjabi_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,restaurant,, -rajasthani_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,restaurant,, -south_indian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,restaurant,, -pakistani_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,restaurant,pakistani_restaurant,eat_and_drink > restaurant > pakistani_restaurant -sri_lankan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,restaurant,sri_lankan_restaurant,eat_and_drink > restaurant > sri_lankan_restaurant -tibetan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,restaurant,, -southeast_asian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,restaurant,, -burmese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,restaurant,burmese_restaurant,eat_and_drink > restaurant > asian_restaurant > burmese_restaurant -cambodian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,restaurant,cambodian_restaurant,eat_and_drink > restaurant > asian_restaurant > cambodian_restaurant -filipino_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,restaurant,filipino_restaurant,eat_and_drink > restaurant > asian_restaurant > filipino_restaurant -indonesian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,restaurant,indonesian_restaurant,eat_and_drink > restaurant > asian_restaurant > indonesian_restaurant -sundanese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,restaurant,, -laotian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,restaurant,laotian_restaurant,eat_and_drink > restaurant > asian_restaurant > laotian_restaurant -malaysian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,restaurant,malaysian_restaurant,eat_and_drink > restaurant > asian_restaurant > malaysian_restaurant -nasi_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,restaurant,nasi_restaurant,eat_and_drink > restaurant > nasi_restaurant -singaporean_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,restaurant,singaporean_restaurant,eat_and_drink > restaurant > asian_restaurant > singaporean_restaurant -thai_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,restaurant,thai_restaurant,eat_and_drink > restaurant > asian_restaurant > thai_restaurant -vietnamese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,restaurant,vietnamese_restaurant,eat_and_drink > restaurant > asian_restaurant > vietnamese_restaurant -wok_restaurant,food_and_drink > restaurant > asian_restaurant > wok_restaurant,restaurant,wok_restaurant,eat_and_drink > restaurant > wok_restaurant -bar_and_grill_restaurant,food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill,bar_and_grill_restaurant,eat_and_drink > restaurant > bar_and_grill_restaurant -breakfast_and_brunch_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_restaurant,breakfast_and_brunch_restaurant,eat_and_drink > restaurant > breakfast_and_brunch_restaurant -pancake_house,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,restaurant,pancake_house,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house -waffle_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,restaurant,waffle_restaurant,eat_and_drink > restaurant > waffle_restaurant -buffet_restaurant,food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,buffet_restaurant,eat_and_drink > restaurant > buffet_restaurant -cafeteria,food_and_drink > restaurant > cafeteria,restaurant,cafeteria,eat_and_drink > restaurant > cafeteria -comfort_food_restaurant,food_and_drink > restaurant > comfort_food_restaurant,restaurant,comfort_food_restaurant,eat_and_drink > restaurant > comfort_food_restaurant -diy_foods_restaurant,food_and_drink > restaurant > diy_foods_restaurant,restaurant,diy_foods_restaurant,eat_and_drink > restaurant > diy_foods_restaurant -dumpling_restaurant,food_and_drink > restaurant > dumpling_restaurant,restaurant,dumpling_restaurant,eat_and_drink > restaurant > dumpling_restaurant -european_restaurant,food_and_drink > restaurant > european_restaurant,restaurant,european_restaurant,eat_and_drink > restaurant > european_restaurant -central_european_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant,restaurant,, -austrian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,restaurant,austrian_restaurant,eat_and_drink > restaurant > austrian_restaurant -czech_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,restaurant,czech_restaurant,eat_and_drink > restaurant > czech_restaurant -german_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,restaurant,german_restaurant,eat_and_drink > restaurant > german_restaurant -fischbrotchen_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,restaurant,fischbrotchen_restaurant,eat_and_drink > restaurant > fischbrotchen_restaurant -hungarian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,restaurant,hungarian_restaurant,eat_and_drink > restaurant > hungarian_restaurant -polish_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,restaurant,polish_restaurant,eat_and_drink > restaurant > polish_restaurant -schnitzel_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,restaurant,schnitzel_restaurant,eat_and_drink > restaurant > schnitzel_restaurant -slovakian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,restaurant,slovakian_restaurant,eat_and_drink > restaurant > slovakian_restaurant -swiss_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,restaurant,swiss_restaurant,eat_and_drink > restaurant > swiss_restaurant -eastern_european_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,restaurant,eastern_european_restaurant,eat_and_drink > restaurant > eastern_european_restaurant -belarusian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,restaurant,belarusian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > belarusian_restaurant -bulgarian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,restaurant,bulgarian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > bulgarian_restaurant -lithuanian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,restaurant,, -romanian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,restaurant,romanian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > romanian_restaurant -russian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,restaurant,russian_restaurant,eat_and_drink > restaurant > russian_restaurant -tatar_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,restaurant,tatar_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > tatar_restaurant -serbo_croatian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,restaurant,serbo_croatian_restaurant,eat_and_drink > restaurant > serbo_croatian_restaurant -ukrainian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,restaurant,ukrainian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > ukrainian_restaurant -iberian_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant,restaurant,iberian_restaurant,eat_and_drink > restaurant > iberian_restaurant -portuguese_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,restaurant,portuguese_restaurant,eat_and_drink > restaurant > portuguese_restaurant -spanish_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,restaurant,spanish_restaurant,eat_and_drink > restaurant > spanish_restaurant -basque_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,restaurant,basque_restaurant,eat_and_drink > restaurant > basque_restaurant -catalan_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,restaurant,catalan_restaurant,eat_and_drink > restaurant > catalan_restaurant -mediterranean_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,restaurant,mediterranean_restaurant,eat_and_drink > restaurant > mediterranean_restaurant -greek_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,restaurant,greek_restaurant,eat_and_drink > restaurant > mediterranean_restaurant > greek_restaurant -italian_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,restaurant,italian_restaurant,eat_and_drink > restaurant > italian_restaurant -piadina_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,restaurant,piadina_restaurant,eat_and_drink > restaurant > piadina_restaurant -pizza_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizzaria,pizza_restaurant,eat_and_drink > restaurant > pizza_restaurant -maltese_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,restaurant,, -scandinavian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,restaurant,scandinavian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant -danish_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,restaurant,danish_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > danish_restaurant -finnish_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,restaurant,, -icelandic_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,restaurant,, -norwegian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,restaurant,norwegian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > norwegian_restaurant -swedish_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,restaurant,, -western_european_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant,restaurant,, -belgian_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,restaurant,belgian_restaurant,eat_and_drink > restaurant > belgian_restaurant -british_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,restaurant,british_restaurant,eat_and_drink > restaurant > british_restaurant -dutch_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,restaurant,, -french_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,restaurant,french_restaurant,eat_and_drink > restaurant > french_restaurant -brasserie,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,restaurant,brasserie,eat_and_drink > restaurant > brasserie -irish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,restaurant,irish_restaurant,eat_and_drink > restaurant > irish_restaurant -scottish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,restaurant,scottish_restaurant,eat_and_drink > restaurant > scottish_restaurant -welsh_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,restaurant,, -haute_cuisine_restaurant,food_and_drink > restaurant > haute_cuisine_restaurant,restaurant,haute_cuisine_restaurant,eat_and_drink > restaurant > haute_cuisine_restaurant -international_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant,restaurant,international_restaurant,eat_and_drink > restaurant > international_restaurant -asian_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,restaurant,asian_fusion_restaurant,eat_and_drink > restaurant > asian_restaurant > asian_fusion_restaurant -latin_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,restaurant,, -pan_asian_restaurant,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,restaurant,pan_asian_restaurant,eat_and_drink > restaurant > asian_restaurant > pan_asian_restaurant -latin_american_restaurant,food_and_drink > restaurant > latin_american_restaurant,restaurant,latin_american_restaurant,eat_and_drink > restaurant > latin_american_restaurant -caribbean_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,restaurant,caribbean_restaurant,eat_and_drink > restaurant > caribbean_restaurant -cuban_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,restaurant,cuban_restaurant,eat_and_drink > restaurant > latin_american_restaurant > cuban_restaurant -dominican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,restaurant,dominican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > dominican_restaurant -haitian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,restaurant,haitian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > haitian_restaurant -jamaican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,restaurant,jamaican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > jamaican_restaurant -puerto_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,restaurant,puerto_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > puerto_rican_restaurant -trinidadian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,restaurant,trinidadian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > trinidadian_restaurant -central_american_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,restaurant,, -belizean_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,restaurant,belizean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > belizean_restaurant -costa_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,restaurant,costa_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > costa_rican_restaurant -guatemalan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,restaurant,guatemalan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > guatemalan_restaurant -honduran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,restaurant,honduran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > honduran_restaurant -nicaraguan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,restaurant,nicaraguan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > nicaraguan_restaurant -panamanian_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,restaurant,panamanian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > panamanian_restaurant -salvadoran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,restaurant,salvadoran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > salvadoran_restaurant -empanada_restaurant,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,restaurant,empanadas,eat_and_drink > restaurant > empanadas -mexican_restaurant,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,restaurant,mexican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > mexican_restaurant -south_american_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,restaurant,, -argentine_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,restaurant,argentine_restaurant,eat_and_drink > restaurant > latin_american_restaurant > argentine_restaurant -bolivian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,restaurant,bolivian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > bolivian_restaurant -brazilian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,restaurant,brazilian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > brazilian_restaurant -chilean_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,restaurant,chilean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > chilean_restaurant -colombian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,restaurant,colombian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > colombian_restaurant -ecuadorian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,restaurant,ecuadorian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > ecuadorian_restaurant -paraguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,restaurant,paraguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > paraguayan_restaurant -peruvian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,restaurant,peruvian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > peruvian_restaurant -surinamese_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,restaurant,, -uruguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,restaurant,uruguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > uruguayan_restaurant -venezuelan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,restaurant,venezuelan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > venezuelan_restaurant -taco_restaurant,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,restaurant,taco_restaurant,eat_and_drink > restaurant > taco_restaurant -texmex_restaurant,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,restaurant,texmex_restaurant,eat_and_drink > restaurant > latin_american_restaurant > texmex_restaurant -meat_restaurant,food_and_drink > restaurant > meat_restaurant,restaurant,meat_restaurant,eat_and_drink > restaurant > meat_restaurant -meat_restaurant,food_and_drink > restaurant > meat_restaurant,restaurant,dog_meat_restaurant,eat_and_drink > restaurant > dog_meat_restaurant -barbecue_restaurant,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,restaurant,barbecue_restaurant,eat_and_drink > restaurant > barbecue_restaurant -burger_restaurant,food_and_drink > restaurant > meat_restaurant > burger_restaurant,restaurant,burger_restaurant,eat_and_drink > restaurant > burger_restaurant -cheesesteak_restaurant,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,restaurant,cheesesteak_restaurant,eat_and_drink > restaurant > cheesesteak_restaurant -chicken_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,chicken_restaurant,eat_and_drink > restaurant > chicken_restaurant -chicken_wings_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_restaurant,chicken_wings_restaurant,eat_and_drink > restaurant > chicken_wings_restaurant -curry_sausage_restaurant,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,restaurant,curry_sausage_restaurant,eat_and_drink > restaurant > curry_sausage_restaurant -hot_dog_restaurant,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,restaurant,hot_dog_restaurant,eat_and_drink > restaurant > hot_dog_restaurant -meatball_restaurant,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,restaurant,meatball_restaurant,eat_and_drink > restaurant > meatball_restaurant -rotisserie_chicken_restaurant,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,chicken_restaurant,rotisserie_chicken_restaurant,eat_and_drink > restaurant > rotisserie_chicken_restaurant -steakhouse,food_and_drink > restaurant > meat_restaurant > steakhouse,restaurant,steakhouse,eat_and_drink > restaurant > steakhouse -venison_restaurant,food_and_drink > restaurant > meat_restaurant > venison_restaurant,restaurant,venison_restaurant,eat_and_drink > restaurant > venison_restaurant -wild_game_meats_restaurant,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,restaurant,wild_game_meats_restaurant,eat_and_drink > restaurant > wild_game_meats_restaurant -middle_eastern_restaurant,food_and_drink > restaurant > middle_eastern_restaurant,restaurant,middle_eastern_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant -arabian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,restaurant,arabian_restaurant,eat_and_drink > restaurant > arabian_restaurant -armenian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,restaurant,armenian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant -azerbaijani_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,restaurant,azerbaijani_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant -falafel_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,restaurant,falafel_restaurant,eat_and_drink > restaurant > falafel_restaurant -georgian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,restaurant,georgian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant -israeli_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,restaurant,israeli_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant -kofta_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,restaurant,kofta_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant -kurdish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,restaurant,kurdish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant -lebanese_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,restaurant,lebanese_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant -palestinian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,restaurant,, -persian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,restaurant,persian_iranian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > persian_iranian_restaurant -syrian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,restaurant,syrian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant -turkish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,restaurant,turkish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant -doner_kebab_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,restaurant,doner_kebab,eat_and_drink > restaurant > doner_kebab -turkmen_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,restaurant,, -yemenite_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,restaurant,, -north_american_restaurant,food_and_drink > restaurant > north_american_restaurant,restaurant,, -american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant,restaurant,american_restaurant,eat_and_drink > restaurant > american_restaurant -cajun_and_creole_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,restaurant,cajun_and_creole_restaurant,eat_and_drink > restaurant > cajun_and_creole_restaurant -southern_american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,restaurant,southern_restaurant,eat_and_drink > restaurant > southern_restaurant -canadian_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,restaurant,canadian_restaurant,eat_and_drink > restaurant > canadian_restaurant -poutinerie_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,restaurant,poutinerie_restaurant,eat_and_drink > restaurant > poutinerie_restaurant -pacific_rim_restaurant,food_and_drink > restaurant > pacific_rim_restaurant,restaurant,, -australian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,restaurant,australian_restaurant,eat_and_drink > restaurant > australian_restaurant -melanesian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,restaurant,, -fijian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,restaurant,, -micronesian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,restaurant,, -guamanian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,restaurant,guamanian_restaurant,eat_and_drink > restaurant > guamanian_restaurant -new_zealand_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,restaurant,, -polynesian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,restaurant,polynesian_restaurant,eat_and_drink > restaurant > polynesian_restaurant -hawaiian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,restaurant,hawaiian_restaurant,eat_and_drink > restaurant > hawaiian_restaurant -poke_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,restaurant,poke_restaurant,eat_and_drink > restaurant > poke_restaurant -pop_up_restaurant,food_and_drink > restaurant > pop_up_restaurant,restaurant,pop_up_restaurant,eat_and_drink > restaurant > pop_up_restaurant -salad_bar,food_and_drink > restaurant > salad_bar,restaurant,salad_bar,eat_and_drink > restaurant > salad_bar -seafood_restaurant,food_and_drink > restaurant > seafood_restaurant,restaurant,seafood_restaurant,eat_and_drink > restaurant > seafood_restaurant -fish_and_chips_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,restaurant,fish_and_chips_restaurant,eat_and_drink > restaurant > fish_and_chips_restaurant -fish_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,restaurant,fish_restaurant,eat_and_drink > restaurant > fish_restaurant -soul_food,food_and_drink > restaurant > soul_food,restaurant,soul_food,eat_and_drink > restaurant > soul_food -soup_restaurant,food_and_drink > restaurant > soup_restaurant,restaurant,soup_restaurant,eat_and_drink > restaurant > soup_restaurant -special_diet_restaurant,food_and_drink > restaurant > special_diet_restaurant,restaurant,, -acai_bowls,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,restaurant,acai_bowls,eat_and_drink > restaurant > acai_bowls -gluten_free_restaurant,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,restaurant,gluten_free_restaurant,eat_and_drink > restaurant > gluten_free_restaurant -halal_restaurant,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,restaurant,halal_restaurant,eat_and_drink > restaurant > halal_restaurant -health_food_restaurant,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,restaurant,health_food_restaurant,eat_and_drink > restaurant > health_food_restaurant -jewish_restaurant,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,restaurant,jewish_restaurant,eat_and_drink > restaurant > jewish_restaurant -kosher_restaurant,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,restaurant,kosher_restaurant,eat_and_drink > restaurant > kosher_restaurant -live_and_raw_food_restaurant,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,restaurant,live_and_raw_food_restaurant,eat_and_drink > restaurant > live_and_raw_food_restaurant -molecular_gastronomy_restaurant,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,restaurant,molecular_gastronomy_restaurant,eat_and_drink > restaurant > molecular_gastronomy_restaurant -vegan_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,restaurant,vegan_restaurant,eat_and_drink > restaurant > vegan_restaurant -vegetarian_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,restaurant,vegetarian_restaurant,eat_and_drink > restaurant > vegetarian_restaurant -supper_club,food_and_drink > restaurant > supper_club,restaurant,supper_club,eat_and_drink > restaurant > supper_club -theme_restaurant,food_and_drink > restaurant > theme_restaurant,restaurant,theme_restaurant,eat_and_drink > restaurant > theme_restaurant -wrap_restaurant,food_and_drink > restaurant > wrap_restaurant,restaurant,wrap_restaurant,eat_and_drink > restaurant > wrap_restaurant -geographic_entities,geographic_entities,nature_outdoors,structure_and_geography,structure_and_geography -beach,geographic_entities > beach,beach,beach,attractions_and_activities > beach -beach_combing_area,geographic_entities > beach > beach_combing_area,beach,beach_combing_area,attractions_and_activities > beach_combing_area -bridge,geographic_entities > bridge,bridge,bridge,structure_and_geography > bridge -canyon,geographic_entities > canyon,nature_outdoors,canyon,attractions_and_activities > canyon -cave,geographic_entities > cave,nature_outdoors,cave,attractions_and_activities > cave -crater,geographic_entities > crater,nature_outdoors,crater,attractions_and_activities > crater -dam,geographic_entities > dam,dam,dam,structure_and_geography > dam -desert,geographic_entities > desert,nature_outdoors,desert,structure_and_geography > desert -forest,geographic_entities > forest,forest,forest,structure_and_geography > forest -fountain,geographic_entities > fountain,public_fountain,fountain,attractions_and_activities > fountain -drinking_fountain,geographic_entities > fountain > drinking_fountain,b2b_supplier_distributor,drinking_water_dispenser,business_to_business > business_manufacturing_and_supply > drinking_water_dispenser -garden,geographic_entities > garden,garden,, -botanical_garden,geographic_entities > garden > botanical_garden,garden,botanical_garden,attractions_and_activities > botanical_garden -community_garden,geographic_entities > garden > community_garden,garden,community_gardens,professional_services > community_gardens -geologic_formation,geographic_entities > geologic_formation,nature_outdoors,geologic_formation,structure_and_geography > geologic_formation -hot_springs,geographic_entities > hot_springs,nature_outdoors,hot_springs,attractions_and_activities > hot_springs -hot_springs,geographic_entities > hot_springs,nature_outdoors,natural_hot_springs,structure_and_geography > natural_hot_springs -island,geographic_entities > island,nature_outdoors,island,structure_and_geography > island -lake,geographic_entities > lake,nature_outdoors,lake,attractions_and_activities > lake -lookout,geographic_entities > lookout,scenic_viewpoint,lookout,attractions_and_activities > lookout -mountain,geographic_entities > mountain,mountain,mountain,structure_and_geography > mountain -nature_reserve,geographic_entities > nature_reserve,nature_reserve,nature_reserve,structure_and_geography > nature_reserve -pier,geographic_entities > pier,waterway,pier,structure_and_geography > pier -plaza,geographic_entities > plaza,public_plaza,plaza,attractions_and_activities > plaza -plaza,geographic_entities > plaza,public_plaza,public_plaza,structure_and_geography > public_plaza -quay,geographic_entities > quay,waterway,quay,structure_and_geography > quay -river,geographic_entities > river,nature_outdoors,river,structure_and_geography > river -sand_dune,geographic_entities > sand_dune,nature_outdoors,sand_dune,attractions_and_activities > sand_dune -skyline,geographic_entities > skyline,scenic_viewpoint,skyline,attractions_and_activities > skyline -skyscraper,geographic_entities > skyscraper,industrial_commercial_infrastructure,skyscraper,structure_and_geography > skyscraper -stargazing_area,geographic_entities > stargazing_area,scenic_viewpoint,stargazing_area,attractions_and_activities > stargazing_area -waterfall,geographic_entities > waterfall,nature_outdoors,waterfall,attractions_and_activities > waterfall -weir,geographic_entities > weir,waterway,weir,structure_and_geography > weir -health_care,health_care,healthcare_location,health_and_medical,health_and_medical -health_care,health_care,healthcare_location,placenta_encapsulation_service,health_and_medical > placenta_encapsulation_service -abortion_clinic,health_care > abortion_clinic,clinic_or_treatment_center,abortion_clinic,health_and_medical > abortion_clinic -abuse_and_addiction_treatment,health_care > abuse_and_addiction_treatment,clinic_or_treatment_center,abuse_and_addiction_treatment,health_and_medical > abuse_and_addiction_treatment -crisis_intervention_service,health_care > abuse_and_addiction_treatment > crisis_intervention_service,clinic_or_treatment_center,crisis_intervention_services,health_and_medical > abuse_and_addiction_treatment > crisis_intervention_services -eating_disorder_treatment_center,health_care > abuse_and_addiction_treatment > eating_disorder_treatment_center,clinic_or_treatment_center,eating_disorder_treatment_centers,health_and_medical > abuse_and_addiction_treatment > eating_disorder_treatment_centers -acupuncture,health_care > acupuncture,alternative_medicine,acupuncture,health_and_medical > acupuncture -aesthetician,health_care > aesthetician,plastic_reconstructive_and_aesthetic_surgery,aesthetician,health_and_medical > aesthetician -alcohol_and_drug_treatment_center,health_care > alcohol_and_drug_treatment_center,clinic_or_treatment_center,alcohol_and_drug_treatment_center,health_and_medical > alcohol_and_drug_treatment_center -alcohol_and_drug_treatment_center,health_care > alcohol_and_drug_treatment_center,clinic_or_treatment_center,alcohol_and_drug_treatment_centers,health_and_medical > abuse_and_addiction_treatment > alcohol_and_drug_treatment_centers -alternative_medicine,health_care > alternative_medicine,alternative_medicine,alternative_medicine,health_and_medical > alternative_medicine -ambulance_and_ems_service,health_care > ambulance_and_ems_service,ambulance_ems_service,ambulance_and_ems_services,health_and_medical > ambulance_and_ems_services -ambulance_and_ems_service,health_care > ambulance_and_ems_service,ambulance_ems_service,emergency_service,professional_services > emergency_service -animal_assisted_therapy,health_care > animal_assisted_therapy,psychotherapy,animal_assisted_therapy,health_and_medical > animal_assisted_therapy -assisted_living_facility,health_care > assisted_living_facility,senior_living_facility,assisted_living_facility,health_and_medical > assisted_living_facility -ayurveda,health_care > ayurveda,alternative_medicine,ayurveda,health_and_medical > ayurveda -behavior_analyst,health_care > behavior_analyst,mental_health,behavior_analyst,health_and_medical > behavior_analyst -blood_and_plasma_donation_center,health_care > blood_and_plasma_donation_center,clinic_or_treatment_center,blood_and_plasma_donation_center,health_and_medical > blood_and_plasma_donation_center -body_contouring,health_care > body_contouring,plastic_reconstructive_and_aesthetic_surgery,body_contouring,health_and_medical > body_contouring -cancer_treatment_center,health_care > cancer_treatment_center,clinic_or_treatment_center,cancer_treatment_center,health_and_medical > cancer_treatment_center -cannabis_clinic,health_care > cannabis_clinic,clinic_or_treatment_center,cannabis_clinic,health_and_medical > cannabis_clinic -cannabis_collective,health_care > cannabis_collective,clinic_or_treatment_center,cannabis_collective,health_and_medical > cannabis_collective -cannabis_collective,health_care > cannabis_collective,clinic_or_treatment_center,cannabis_collective,health_and_medical > cannabis_collective -childrens_hospital,health_care > childrens_hospital,childrens_hospital,childrens_hospital,health_and_medical > childrens_hospital -chiropractor,health_care > chiropractor,alternative_medicine,chiropractor,health_and_medical > chiropractor -colonics,health_care > colonics,clinic_or_treatment_center,colonics,health_and_medical > colonics -community_health_center,health_care > community_health_center,clinic_or_treatment_center,community_health_center,health_and_medical > community_health_center -concierge_medicine,health_care > concierge_medicine,clinic_or_treatment_center,concierge_medicine,health_and_medical > concierge_medicine -counseling_and_mental_health,health_care > counseling_and_mental_health,mental_health,counseling_and_mental_health,health_and_medical > counseling_and_mental_health -family_counselor,health_care > counseling_and_mental_health > family_counselor,mental_health,family_counselor,health_and_medical > counseling_and_mental_health > family_counselor -marriage_or_relationship_counselor,health_care > counseling_and_mental_health > marriage_or_relationship_counselor,mental_health,marriage_or_relationship_counselor,health_and_medical > counseling_and_mental_health > marriage_or_relationship_counselor -psychoanalyst,health_care > counseling_and_mental_health > psychoanalyst,mental_health,psychoanalyst,health_and_medical > counseling_and_mental_health > psychoanalyst -psychologist,health_care > counseling_and_mental_health > psychologist,psychology,psychologist,health_and_medical > counseling_and_mental_health > psychologist -psychotherapist,health_care > counseling_and_mental_health > psychotherapist,psychotherapy,psychotherapist,health_and_medical > counseling_and_mental_health > psychotherapist -sex_therapist,health_care > counseling_and_mental_health > sex_therapist,mental_health,sex_therapist,health_and_medical > counseling_and_mental_health > sex_therapist -sophrologist,health_care > counseling_and_mental_health > sophrologist,mental_health,sophrologist,health_and_medical > counseling_and_mental_health > sophrologist -sports_psychologist,health_care > counseling_and_mental_health > sports_psychologist,mental_health,sports_psychologist,health_and_medical > counseling_and_mental_health > sports_psychologist -stress_management_service,health_care > counseling_and_mental_health > stress_management_service,mental_health,stress_management_services,health_and_medical > counseling_and_mental_health > stress_management_services -suicide_prevention_service,health_care > counseling_and_mental_health > suicide_prevention_service,mental_health,suicide_prevention_services,health_and_medical > counseling_and_mental_health > suicide_prevention_services -cryotherapy,health_care > cryotherapy,healthcare_location,cryotherapy,health_and_medical > cryotherapy -dental_hygienist,health_care > dental_hygienist,dental_hygiene,dental_hygienist,health_and_medical > dental_hygienist -mobile_clinic,health_care > dental_hygienist > mobile_clinic,clinic_or_treatment_center,mobile_clinic,health_and_medical > dental_hygienist > mobile_clinic -storefront_clinic,health_care > dental_hygienist > storefront_clinic,clinic_or_treatment_center,storefront_clinic,health_and_medical > dental_hygienist > storefront_clinic -dentist,health_care > dentist,general_dentistry,dentist,health_and_medical > dentist -cosmetic_dentist,health_care > dentist > cosmetic_dentist,dental_care,cosmetic_dentist,health_and_medical > dentist > cosmetic_dentist -endodontist,health_care > dentist > endodontist,dental_care,endodontist,health_and_medical > dentist > endodontist -general_dentistry,health_care > dentist > general_dentistry,general_dentistry,general_dentistry,health_and_medical > dentist > general_dentistry -oral_surgeon,health_care > dentist > oral_surgeon,dental_care,oral_surgeon,health_and_medical > dentist > oral_surgeon -orthodontist,health_care > dentist > orthodontist,orthodontic_care,orthodontist,health_and_medical > dentist > orthodontist -pediatric_dentist,health_care > dentist > pediatric_dentist,dental_care,pediatric_dentist,health_and_medical > dentist > pediatric_dentist -periodontist,health_care > dentist > periodontist,dental_care,periodontist,health_and_medical > dentist > periodontist -diagnostic_service,health_care > diagnostic_service,diagnostic_service,diagnostic_services,health_and_medical > diagnostic_services -diagnostic_imaging,health_care > diagnostic_service > diagnostic_imaging,diagnostic_service,diagnostic_imaging,health_and_medical > diagnostic_services > diagnostic_imaging -laboratory_testing,health_care > diagnostic_service > laboratory_testing,diagnostic_service,laboratory_testing,health_and_medical > diagnostic_services > laboratory_testing -dialysis_clinic,health_care > dialysis_clinic,clinic_or_treatment_center,dialysis_clinic,health_and_medical > dialysis_clinic -dietitian,health_care > dietitian,nutrition_and_dietetics,dietitian,health_and_medical > dietitian -doctor,health_care > doctor,doctors_office,doctor,health_and_medical > doctor -allergist,health_care > doctor > allergist,allergy_and_immunology,allergist,health_and_medical > doctor > allergist -anesthesiologist,health_care > doctor > anesthesiologist,healthcare_location,anesthesiologist,health_and_medical > doctor > anesthesiologist -audiologist,health_care > doctor > audiologist,healthcare_location,audiologist,health_and_medical > doctor > audiologist -cardiologist,health_care > doctor > cardiologist,cardiology,cardiologist,health_and_medical > doctor > cardiologist -cosmetic_surgeon,health_care > doctor > cosmetic_surgeon,plastic_reconstructive_and_aesthetic_surgery,cosmetic_surgeon,health_and_medical > doctor > cosmetic_surgeon -dermatologist,health_care > doctor > dermatologist,healthcare_location,dermatologist,health_and_medical > doctor > dermatologist -ear_nose_and_throat,health_care > doctor > ear_nose_and_throat,healthcare_location,ear_nose_and_throat,health_and_medical > doctor > ear_nose_and_throat -emergency_medicine,health_care > doctor > emergency_medicine,healthcare_location,emergency_medicine,health_and_medical > doctor > emergency_medicine -endocrinologist,health_care > doctor > endocrinologist,internal_medicine,endocrinologist,health_and_medical > doctor > endocrinologist -endoscopist,health_care > doctor > endoscopist,healthcare_location,endoscopist,health_and_medical > doctor > endoscopist -family_practice,health_care > doctor > family_practice,family_medicine,family_practice,health_and_medical > doctor > family_practice -fertility_clinic,health_care > doctor > fertility_clinic,healthcare_location,fertility,health_and_medical > doctor > fertility -gastroenterologist,health_care > doctor > gastroenterologist,internal_medicine,gastroenterologist,health_and_medical > doctor > gastroenterologist -geneticist,health_care > doctor > geneticist,healthcare_location,geneticist,health_and_medical > doctor > geneticist -geriatric_medicine,health_care > doctor > geriatric_medicine,healthcare_location,geriatric_medicine,health_and_medical > doctor > geriatric_medicine -geriatric_psychiatry,health_care > doctor > geriatric_medicine > geriatric_psychiatry,psychiatry,geriatric_psychiatry,health_and_medical > doctor > geriatric_medicine > geriatric_psychiatry -gerontologist,health_care > doctor > gerontologist,healthcare_location,gerontologist,health_and_medical > doctor > gerontologist -hepatologist,health_care > doctor > hepatologist,healthcare_location,hepatologist,health_and_medical > doctor > hepatologist -homeopathic_medicine,health_care > doctor > homeopathic_medicine,alternative_medicine,homeopathic_medicine,health_and_medical > doctor > homeopathic_medicine -hospitalist,health_care > doctor > hospitalist,healthcare_location,hospitalist,health_and_medical > doctor > hospitalist -immunodermatologist,health_care > doctor > immunodermatologist,allergy_and_immunology,immunodermatologist,health_and_medical > doctor > immunodermatologist -infectious_disease_specialist,health_care > doctor > infectious_disease_specialist,healthcare_location,infectious_disease_specialist,health_and_medical > doctor > infectious_disease_specialist -internal_medicine,health_care > doctor > internal_medicine,internal_medicine,internal_medicine,health_and_medical > doctor > internal_medicine -hematology,health_care > doctor > internal_medicine > hematology,internal_medicine,hematology,health_and_medical > doctor > internal_medicine > hematology -naturopathic_holistic,health_care > doctor > naturopathic_holistic,alternative_medicine,naturopathic_holistic,health_and_medical > doctor > naturopathic_holistic -nephrologist,health_care > doctor > nephrologist,internal_medicine,nephrologist,health_and_medical > doctor > nephrologist -neurologist,health_care > doctor > neurologist,internal_medicine,neurologist,health_and_medical > doctor > neurologist -neuropathologist,health_care > doctor > neuropathologist,internal_medicine,neuropathologist,health_and_medical > doctor > neuropathologist -neurotologist,health_care > doctor > neurotologist,internal_medicine,neurotologist,health_and_medical > doctor > neurotologist -obstetrician_and_gynecologist,health_care > doctor > obstetrician_and_gynecologist,healthcare_location,obstetrician_and_gynecologist,health_and_medical > doctor > obstetrician_and_gynecologist -oncologist,health_care > doctor > oncologist,internal_medicine,oncologist,health_and_medical > doctor > oncologist -ophthalmologist,health_care > doctor > ophthalmologist,eye_care,ophthalmologist,health_and_medical > doctor > ophthalmologist -retina_specialist,health_care > doctor > ophthalmologist > retina_specialist,eye_care,retina_specialist,health_and_medical > doctor > ophthalmologist > retina_specialist -orthopedist,health_care > doctor > orthopedist,healthcare_location,orthopedist,health_and_medical > doctor > orthopedist -osteopathic_physician,health_care > doctor > osteopathic_physician,healthcare_location,osteopathic_physician,health_and_medical > doctor > osteopathic_physician -otologist,health_care > doctor > otologist,healthcare_location,otologist,health_and_medical > doctor > otologist -pain_management,health_care > doctor > pain_management,healthcare_location,pain_management,health_and_medical > doctor > pain_management -pathologist,health_care > doctor > pathologist,healthcare_location,pathologist,health_and_medical > doctor > pathologist -pediatrician,health_care > doctor > pediatrician,pediatrics,pediatrician,health_and_medical > doctor > pediatrician -pediatric_anesthesiology,health_care > doctor > pediatrician > pediatric_anesthesiology,pediatrics,pediatric_anesthesiology,health_and_medical > doctor > pediatrician > pediatric_anesthesiology -pediatric_cardiology,health_care > doctor > pediatrician > pediatric_cardiology,pediatrics,pediatric_cardiology,health_and_medical > doctor > pediatrician > pediatric_cardiology -pediatric_endocrinology,health_care > doctor > pediatrician > pediatric_endocrinology,pediatrics,pediatric_endocrinology,health_and_medical > doctor > pediatrician > pediatric_endocrinology -pediatric_gastroenterology,health_care > doctor > pediatrician > pediatric_gastroenterology,pediatrics,pediatric_gastroenterology,health_and_medical > doctor > pediatrician > pediatric_gastroenterology -pediatric_infectious_disease,health_care > doctor > pediatrician > pediatric_infectious_disease,pediatrics,pediatric_infectious_disease,health_and_medical > doctor > pediatrician > pediatric_infectious_disease -pediatric_nephrology,health_care > doctor > pediatrician > pediatric_nephrology,pediatrics,pediatric_nephrology,health_and_medical > doctor > pediatrician > pediatric_nephrology -pediatric_neurology,health_care > doctor > pediatrician > pediatric_neurology,pediatrics,pediatric_neurology,health_and_medical > doctor > pediatrician > pediatric_neurology -pediatric_oncology,health_care > doctor > pediatrician > pediatric_oncology,pediatrics,pediatric_oncology,health_and_medical > doctor > pediatrician > pediatric_oncology -pediatric_orthopedic_surgery,health_care > doctor > pediatrician > pediatric_orthopedic_surgery,pediatrics,pediatric_orthopedic_surgery,health_and_medical > doctor > pediatrician > pediatric_orthopedic_surgery -pediatric_pulmonology,health_care > doctor > pediatrician > pediatric_pulmonology,pediatrics,pediatric_pulmonology,health_and_medical > doctor > pediatrician > pediatric_pulmonology -pediatric_radiology,health_care > doctor > pediatrician > pediatric_radiology,pediatrics,pediatric_radiology,health_and_medical > doctor > pediatrician > pediatric_radiology -pediatric_surgery,health_care > doctor > pediatrician > pediatric_surgery,pediatrics,pediatric_surgery,health_and_medical > doctor > pediatrician > pediatric_surgery -phlebologist,health_care > doctor > phlebologist,healthcare_location,phlebologist,health_and_medical > doctor > phlebologist -physician_assistant,health_care > doctor > physician_assistant,healthcare_location,physician_assistant,health_and_medical > doctor > physician_assistant -plastic_surgeon,health_care > doctor > plastic_surgeon,plastic_reconstructive_and_aesthetic_surgery,plastic_surgeon,health_and_medical > doctor > plastic_surgeon -podiatrist,health_care > doctor > podiatrist,healthcare_location,podiatrist,health_and_medical > doctor > podiatrist -preventive_medicine,health_care > doctor > preventive_medicine,healthcare_location,preventive_medicine,health_and_medical > doctor > preventive_medicine -proctologist,health_care > doctor > proctologist,healthcare_location,proctologist,health_and_medical > doctor > proctologist -psychiatrist,health_care > doctor > psychiatrist,psychiatry,psychiatrist,health_and_medical > doctor > psychiatrist -child_psychiatrist,health_care > doctor > psychiatrist > child_psychiatrist,psychiatry,child_psychiatrist,health_and_medical > doctor > psychiatrist > child_psychiatrist -pulmonologist,health_care > doctor > pulmonologist,internal_medicine,pulmonologist,health_and_medical > doctor > pulmonologist -radiologist,health_care > doctor > radiologist,healthcare_location,radiologist,health_and_medical > doctor > radiologist -rheumatologist,health_care > doctor > rheumatologist,internal_medicine,rheumatologist,health_and_medical > doctor > rheumatologist -spine_surgeon,health_care > doctor > spine_surgeon,surgery,spine_surgeon,health_and_medical > doctor > spine_surgeon -sports_medicine,health_care > doctor > sports_medicine,sports_medicine,sports_medicine,health_and_medical > doctor > sports_medicine -surgeon,health_care > doctor > surgeon,surgery,surgeon,health_and_medical > doctor > surgeon -cardiovascular_and_thoracic_surgeon,health_care > doctor > surgeon > cardiovascular_and_thoracic_surgeon,cardiovascular_surgery,cardiovascular_and_thoracic_surgeon,health_and_medical > doctor > surgeon > cardiovascular_and_thoracic_surgeon -tattoo_removal,health_care > doctor > tattoo_removal,healthcare_location,tattoo_removal,health_and_medical > doctor > tattoo_removal -toxicologist,health_care > doctor > toxicologist,healthcare_location,toxicologist,health_and_medical > doctor > toxicologist -tropical_medicine,health_care > doctor > tropical_medicine,healthcare_location,tropical_medicine,health_and_medical > doctor > tropical_medicine -undersea_hyperbaric_medicine,health_care > doctor > undersea_hyperbaric_medicine,healthcare_location,undersea_hyperbaric_medicine,health_and_medical > doctor > undersea_hyperbaric_medicine -urologist,health_care > doctor > urologist,healthcare_location,urologist,health_and_medical > doctor > urologist -vascular_medicine,health_care > doctor > vascular_medicine,internal_medicine,vascular_medicine,health_and_medical > doctor > vascular_medicine -doula,health_care > doula,healthcare_location,doula,health_and_medical > doula -emergency_room,health_care > emergency_room,emergency_room,emergency_room,health_and_medical > emergency_room -environmental_medicine,health_care > environmental_medicine,healthcare_location,environmental_medicine,health_and_medical > environmental_medicine -eye_care_clinic,health_care > eye_care_clinic,eye_care,eye_care_clinic,health_and_medical > eye_care_clinic -float_spa,health_care > float_spa,spa,float_spa,health_and_medical > float_spa -halfway_house,health_care > halfway_house,social_or_community_service,halfway_house,health_and_medical > halfway_house -halotherapy,health_care > halotherapy,healthcare_location,halotherapy,health_and_medical > halotherapy -health_and_wellness_club,health_care > health_and_wellness_club,personal_service,health_and_wellness_club,health_and_medical > health_and_wellness_club -health_consultant_coach,health_care > health_consultant_coach,healthcare_location,health_coach,health_and_medical > health_coach -health_consultant_coach,health_care > health_consultant_coach,healthcare_location,health_consultant,active_life > sports_and_fitness_instruction > health_consultant -health_department,health_care > health_department,government_office,health_department,health_and_medical > health_department -health_insurance_office,health_care > health_insurance_office,insurance_agency,health_insurance_office,health_and_medical > health_insurance_office -hospice,health_care > hospice,healthcare_location,hospice,health_and_medical > hospice -hospital,health_care > hospital,hospital,hospital,health_and_medical > hospital -hydrotherapy,health_care > hydrotherapy,healthcare_location,hydrotherapy,health_and_medical > hydrotherapy -hypnotherapy,health_care > hypnotherapy,healthcare_location,hypnosis_hypnotherapy,health_and_medical > hypnosis_hypnotherapy -iv_hydration,health_care > iv_hydration,healthcare_location,iv_hydration,health_and_medical > iv_hydration -lactation_service,health_care > lactation_service,healthcare_location,lactation_services,health_and_medical > lactation_services -laser_eye_surgery_lasik,health_care > laser_eye_surgery_lasik,eye_care,laser_eye_surgery_lasik,health_and_medical > laser_eye_surgery_lasik -lice_treatment,health_care > lice_treatment,healthcare_location,lice_treatment,health_and_medical > lice_treatment -massage_therapy,health_care > massage_therapy,massage_therapy,massage_therapy,health_and_medical > massage_therapy -massage_therapy,health_care > massage_therapy,massage_therapy,massage,beauty_and_spa > massage -maternity_center,health_care > maternity_center,healthcare_location,maternity_centers,health_and_medical > maternity_centers -medical_cannabis_referral,health_care > medical_cannabis_referral,healthcare_location,medical_cannabis_referral,health_and_medical > medical_cannabis_referral -medical_center,health_care > medical_center,healthcare_location,medical_center,health_and_medical > medical_center -bulk_billing,health_care > medical_center > bulk_billing,healthcare_location,bulk_billing,health_and_medical > medical_center > bulk_billing -osteopath,health_care > medical_center > osteopath,healthcare_location,osteopath,health_and_medical > medical_center > osteopath -walk_in_clinic,health_care > medical_center > walk_in_clinic,clinic_or_treatment_center,walk_in_clinic,health_and_medical > medical_center > walk_in_clinic -medical_service_organization,health_care > medical_service_organization,healthcare_location,medical_service_organizations,health_and_medical > medical_service_organizations -medical_transportation,health_care > medical_transportation,healthcare_location,medical_transportation,health_and_medical > medical_transportation -memory_care,health_care > memory_care,healthcare_location,memory_care,health_and_medical > memory_care -midwife,health_care > midwife,healthcare_location,midwife,health_and_medical > midwife -nurse_practitioner,health_care > nurse_practitioner,healthcare_location,nurse_practitioner,health_and_medical > nurse_practitioner -nutritionist,health_care > nutritionist,healthcare_location,nutritionist,health_and_medical > nutritionist -occupational_medicine,health_care > occupational_medicine,healthcare_location,occupational_medicine,health_and_medical > occupational_medicine -occupational_therapy,health_care > occupational_therapy,healthcare_location,occupational_therapy,health_and_medical > occupational_therapy -optometrist,health_care > optometrist,eye_care,optometrist,health_and_medical > optometrist -organ_and_tissue_donor_service,health_care > organ_and_tissue_donor_service,healthcare_location,organ_and_tissue_donor_service,health_and_medical > organ_and_tissue_donor_service -orthotics,health_care > orthotics,healthcare_location,orthotics,health_and_medical > orthotics -oxygen_bar,health_care > oxygen_bar,healthcare_location,oxygen_bar,health_and_medical > oxygen_bar -paternity_tests_and_service,health_care > paternity_tests_and_service,healthcare_location,paternity_tests_and_services,health_and_medical > paternity_tests_and_services -personal_care_service,health_care > personal_care_service,personal_service,personal_care_service,health_and_medical > personal_care_service -home_health_care,health_care > personal_care_service > home_health_care,healthcare_location,home_health_care,health_and_medical > personal_care_service > home_health_care -physical_therapy,health_care > physical_therapy,physical_therapy,physical_therapy,health_and_medical > physical_therapy -podiatry,health_care > podiatry,healthcare_location,podiatry,health_and_medical > podiatry -prenatal_perinatal_care,health_care > prenatal_perinatal_care,healthcare_location,prenatal_perinatal_care,health_and_medical > prenatal_perinatal_care -prosthetics,health_care > prosthetics,healthcare_location,prosthetics,health_and_medical > prosthetics -prosthodontist,health_care > prosthodontist,healthcare_location,prosthodontist,health_and_medical > prosthodontist -psychomotor_therapist,health_care > psychomotor_therapist,healthcare_location,psychomotor_therapist,health_and_medical > psychomotor_therapist -public_health_clinic,health_care > public_health_clinic,clinic_or_treatment_center,public_health_clinic,health_and_medical > public_health_clinic -reflexology,health_care > reflexology,alternative_medicine,reflexology,health_and_medical > reflexology -rehabilitation_center,health_care > rehabilitation_center,clinic_or_treatment_center,rehabilitation_center,health_and_medical > rehabilitation_center -addiction_rehabilitation_center,health_care > rehabilitation_center > addiction_rehabilitation_center,clinic_or_treatment_center,addiction_rehabilitation_center,health_and_medical > rehabilitation_center > addiction_rehabilitation_center -reiki,health_care > reiki,alternative_medicine,reiki,health_and_medical > reiki -sauna,health_care > sauna,personal_service,sauna,health_and_medical > sauna -skilled_nursing,health_care > skilled_nursing,healthcare_location,skilled_nursing,health_and_medical > skilled_nursing -sleep_specialist,health_care > sleep_specialist,healthcare_location,sleep_specialist,health_and_medical > sleep_specialist -speech_therapist,health_care > speech_therapist,healthcare_location,speech_therapist,health_and_medical > speech_therapist -sperm_clinic,health_care > sperm_clinic,clinic_or_treatment_center,sperm_clinic,health_and_medical > sperm_clinic -surgical_center,health_care > surgical_center,surgical_center,surgical_center,health_and_medical > surgical_center -traditional_chinese_medicine,health_care > traditional_chinese_medicine,alternative_medicine,traditional_chinese_medicine,health_and_medical > traditional_chinese_medicine -tui_na,health_care > traditional_chinese_medicine > tui_na,alternative_medicine,tui_na,health_and_medical > traditional_chinese_medicine > tui_na -ultrasound_imaging_center,health_care > ultrasound_imaging_center,diagnostic_service,ultrasound_imaging_center,health_and_medical > ultrasound_imaging_center -urgent_care_clinic,health_care > urgent_care_clinic,clinic_or_treatment_center,urgent_care_clinic,health_and_medical > urgent_care_clinic -weight_loss_center,health_care > weight_loss_center,clinic_or_treatment_center,weight_loss_center,health_and_medical > weight_loss_center -wellness_program,health_care > wellness_program,clinic_or_treatment_center,wellness_program,health_and_medical > wellness_program -womens_health_clinic,health_care > womens_health_clinic,clinic_or_treatment_center,womens_health_clinic,health_and_medical > womens_health_clinic -lifestyle_services,lifestyle_services,service_location,, -aromatherapy,lifestyle_services > aromatherapy,personal_service,aromatherapy,beauty_and_spa > aromatherapy -beauty_service,lifestyle_services > beauty_service,beauty_salon,beauty_and_spa,beauty_and_spa -acne_treatment,lifestyle_services > beauty_service > acne_treatment,personal_service,acne_treatment,beauty_and_spa > acne_treatment -barber,lifestyle_services > beauty_service > barber,barber_shop,barber,beauty_and_spa > barber -mens_grooming_salon,lifestyle_services > beauty_service > barber > mens_grooming_salon,barber_shop,, -beauty_salon,lifestyle_services > beauty_service > beauty_salon,beauty_salon,beauty_salon,beauty_and_spa > beauty_salon -teeth_jewelry_service,lifestyle_services > beauty_service > beauty_salon > teeth_jewelry_service,beauty_salon,, -eyebrow_service,lifestyle_services > beauty_service > eyebrow_service,beauty_salon,eyebrow_service,beauty_and_spa > eyebrow_service -eyelash_service,lifestyle_services > beauty_service > eyelash_service,beauty_salon,eyelash_service,beauty_and_spa > eyelash_service -foot_care,lifestyle_services > beauty_service > foot_care,personal_service,foot_care,beauty_and_spa > foot_care -hair_removal,lifestyle_services > beauty_service > hair_removal,personal_service,hair_removal,beauty_and_spa > hair_removal -laser_hair_removal,lifestyle_services > beauty_service > hair_removal > laser_hair_removal,personal_service,laser_hair_removal,beauty_and_spa > hair_removal > laser_hair_removal -sugaring,lifestyle_services > beauty_service > hair_removal > sugaring,personal_service,sugaring,beauty_and_spa > hair_removal > sugaring -threading_service,lifestyle_services > beauty_service > hair_removal > threading_service,personal_service,threading_service,beauty_and_spa > hair_removal > threading_service -waxing,lifestyle_services > beauty_service > hair_removal > waxing,personal_service,waxing,beauty_and_spa > hair_removal > waxing -hair_replacement,lifestyle_services > beauty_service > hair_replacement,personal_service,hair_replacement,beauty_and_spa > hair_replacement -hair_extensions,lifestyle_services > beauty_service > hair_replacement > hair_extensions,hair_salon,hair_extensions,beauty_and_spa > hair_extensions -hair_loss_center,lifestyle_services > beauty_service > hair_replacement > hair_loss_center,personal_service,hair_loss_center,beauty_and_spa > hair_loss_center -wig_hairpiece_service,lifestyle_services > beauty_service > hair_replacement > wig_hairpiece_service,personal_service,, -hair_salon,lifestyle_services > beauty_service > hair_salon,hair_salon,hair_salon,beauty_and_spa > hair_salon -blow_dry_blow_out_service,lifestyle_services > beauty_service > hair_salon > blow_dry_blow_out_service,hair_salon,blow_dry_blow_out_service,beauty_and_spa > hair_salon > blow_dry_blow_out_service -hair_color_bar,lifestyle_services > beauty_service > hair_salon > hair_color_bar,hair_salon,, -hair_stylist,lifestyle_services > beauty_service > hair_salon > hair_stylist,hair_salon,hair_stylist,beauty_and_spa > hair_salon > hair_stylist -kids_hair_salon,lifestyle_services > beauty_service > hair_salon > kids_hair_salon,hair_salon,kids_hair_salon,beauty_and_spa > hair_salon > kids_hair_salon -image_consultant,lifestyle_services > beauty_service > image_consultant,personal_service,image_consultant,beauty_and_spa > image_consultant -nail_salon,lifestyle_services > beauty_service > nail_salon,nail_salon,nail_salon,beauty_and_spa > nail_salon -esthetician,lifestyle_services > beauty_service > skin_care_and_ makeup > esthetician,personal_service,esthetician,beauty_and_spa > skin_care > esthetician -makeup_artist,lifestyle_services > beauty_service > skin_care_and_ makeup > makeup_artist,personal_service,makeup_artist,beauty_and_spa > makeup_artist -permanent_makeup,lifestyle_services > beauty_service > skin_care_and_ makeup > permanent_makeup,personal_service,permanent_makeup,beauty_and_spa > permanent_makeup -skin_care_and_makeup,lifestyle_services > beauty_service > skin_care_and_makeup,personal_service,, -skin_care_and_makeup,lifestyle_services > beauty_service > skin_care_and_makeup,personal_service,skin_care,beauty_and_spa > skin_care -tanning_salon,lifestyle_services > beauty_service > tanning_salon,tanning_salon,tanning_salon,beauty_and_spa > tanning_salon -spray_tanning,lifestyle_services > beauty_service > tanning_salon > spray_tanning,tanning_salon,spray_tanning,beauty_and_spa > tanning_salon > spray_tanning -tanning_bed,lifestyle_services > beauty_service > tanning_salon > tanning_bed,tanning_salon,tanning_bed,beauty_and_spa > tanning_salon > tanning_bed -teeth_whitening,lifestyle_services > beauty_service > teeth_whitening,personal_service,teeth_whitening,beauty_and_spa > teeth_whitening -body_modification,lifestyle_services > body_modification,personal_service,, -body_art,lifestyle_services > body_modification > body_art,personal_service,, -mehndi_henna,lifestyle_services > body_modification > mehndi_henna,personal_service,, -scalp_micropigmentation,lifestyle_services > body_modification > scalp_micropigmentation,personal_service,, -tattoo_and_piercing,lifestyle_services > body_modification > tattoo_and_piercing,tattoo_or_piercing_salon,tattoo_and_piercing,beauty_and_spa > tattoo_and_piercing -piercing,lifestyle_services > body_modification > tattoo_and_piercing > piercing,tattoo_or_piercing_salon,piercing,beauty_and_spa > tattoo_and_piercing > piercing -tattoo,lifestyle_services > body_modification > tattoo_and_piercing > tattoo,tattoo_or_piercing_salon,tattoo,beauty_and_spa > tattoo_and_piercing > tattoo -pets,lifestyle_services > pets,animal_service,pets,pets -pets,lifestyle_services > pets,animal_service,pet_services,pets > pet_services -adoption_and_rescue,lifestyle_services > pets > adoption_and_rescue,animal_service,, -animal_rescue_service,lifestyle_services > pets > adoption_and_rescue > animal_rescue_service,animal_rescue,animal_rescue_service,pets > animal_rescue_service -animal_shelter,lifestyle_services > pets > adoption_and_rescue > animal_shelter,animal_shelter,animal_shelter,pets > animal_shelter -pet_adoption,lifestyle_services > pets > adoption_and_rescue > pet_adoption,animal_adoption,pet_adoption,pets > pet_adoption -equine_service,lifestyle_services > pets > equine_service,animal_service,, -farrier_service,lifestyle_services > pets > equine_service > farrier_service,animal_service,farrier_services,pets > pet_services > farrier_services -horse_boarding,lifestyle_services > pets > equine_service > horse_boarding,animal_boarding,horse_boarding,pets > horse_boarding -horse_trainer,lifestyle_services > pets > equine_service > horse_trainer,animal_training,horse_trainer,pets > pet_services > pet_training > horse_trainer -pet_breeder,lifestyle_services > pets > pet_breeder,animal_breeding,pet_breeder,pets > pet_services > pet_breeder -pet_care_service,lifestyle_services > pets > pet_care_service,animal_service,, -aquarium_service,lifestyle_services > pets > pet_care_service > aquarium_service,animal_service,aquarium_services,pets > pet_services > aquarium_services -dog_walker,lifestyle_services > pets > pet_care_service > dog_walker,dog_walker,dog_walkers,pets > pet_services > dog_walkers -pet_boarding,lifestyle_services > pets > pet_care_service > pet_boarding,animal_boarding,pet_boarding,pets > pet_services > pet_sitting > pet_boarding -pet_groomer,lifestyle_services > pets > pet_care_service > pet_groomer,pet_grooming,pet_groomer,pets > pet_services > pet_groomer -pet_sitting,lifestyle_services > pets > pet_care_service > pet_sitting,pet_sitting,pet_sitting,pets > pet_services > pet_sitting -pet_training,lifestyle_services > pets > pet_care_service > pet_training,animal_training,pet_training,pets > pet_services > pet_training -dog_trainer,lifestyle_services > pets > pet_care_service > pet_training > dog_trainer,animal_training,dog_trainer,pets > pet_services > pet_training > dog_trainer -pet_transportation,lifestyle_services > pets > pet_care_service > pet_transportation,animal_service,pet_transportation,pets > pet_services > pet_transportation -pet_waste_removal,lifestyle_services > pets > pet_care_service > pet_waste_removal,animal_service,pet_waste_removal,pets > pet_services > pet_waste_removal -pet_cemetery_and_crematorium_service,lifestyle_services > pets > pet_cemetery_and_crematorium_service,animal_service,pet_cemetery_and_crematorium_services,pets > pet_services > pet_cemetery_and_crematorium_services -pet_insurance,lifestyle_services > pets > pet_insurance,animal_service,pet_insurance,pets > pet_services > pet_insurance -pet_photography,lifestyle_services > pets > pet_photography,animal_service,pet_photography,pets > pet_services > pet_photography -veterinary_care,lifestyle_services > pets > veterinary_care,animal_service,, -animal_hospital,lifestyle_services > pets > veterinary_care > animal_hospital,animal_hospital,animal_hospital,pets > pet_services > animal_hospital -animal_physical_therapy,lifestyle_services > pets > veterinary_care > animal_physical_therapy,animal_service,animal_physical_therapy,pets > pet_services > animal_physical_therapy -emergency_pet_hospital,lifestyle_services > pets > veterinary_care > emergency_pet_hospital,animal_hospital,emergency_pet_hospital,pets > pet_services > emergency_pet_hospital -holistic_animal_care,lifestyle_services > pets > veterinary_care > holistic_animal_care,animal_service,holistic_animal_care,pets > pet_services > holistic_animal_care -pet_hospice,lifestyle_services > pets > veterinary_care > pet_hospice,animal_service,pet_hospice,pets > pet_services > pet_hospice -veterinarian,lifestyle_services > pets > veterinary_care > veterinarian,veterinarian,veterinarian,pets > veterinarian -public_bath_house,lifestyle_services > public_bath_house,personal_service,public_bath_houses,beauty_and_spa > public_bath_houses -onsen,lifestyle_services > public_bath_house > onsen,personal_service,onsen,beauty_and_spa > onsen -turkish_bath,lifestyle_services > public_bath_house > turkish_bath,personal_service,turkish_baths,beauty_and_spa > turkish_baths -spa,lifestyle_services > spa,spa,spas,beauty_and_spa > spas -day_spa,lifestyle_services > spa > day_spa,spa,day_spa,beauty_and_spa > spas > day_spa -health_spa,lifestyle_services > spa > health_spa,spa,health_spa,beauty_and_spa > health_spa -medical_spa,lifestyle_services > spa > medical_spa,spa,medical_spa,beauty_and_spa > spas > medical_spa -lodging,lodging,accommodation,accommodation,accommodation -bed_and_breakfast,lodging > bed_and_breakfast,bed_and_breakfast,bed_and_breakfast,accommodation > bed_and_breakfast -cabin,lodging > cabin,accommodation,cabin,accommodation > cabin -campground,lodging > campground,campground,campground,accommodation > campground -cottage,lodging > cottage,accommodation,cottage,accommodation > cottage -country_house,lodging > country_house,accommodation,country_house,travel > country_house -guest_house,lodging > guest_house,private_lodging,guest_house,accommodation > guest_house -health_retreat,lodging > health_retreat,accommodation,health_retreats,accommodation > health_retreats -holiday_rental_home,lodging > holiday_rental_home,private_lodging,holiday_rental_home,accommodation > holiday_rental_home -hostel,lodging > hostel,accommodation,hostel,accommodation > hostel -hotel,lodging > hotel,hotel,hotel,accommodation > hotel -motel,lodging > hotel > motel,motel,motel,accommodation > hotel > motel -houseboat,lodging > houseboat,accommodation,houseboat,travel > houseboat -inn,lodging > inn,inn,inn,accommodation > inn -lodge,lodging > lodge,accommodation,lodge,accommodation > lodge -mountain_hut,lodging > mountain_hut,accommodation,mountain_huts,accommodation > mountain_huts -resort,lodging > resort,resort,resort,accommodation > resort -beach_resort,lodging > resort > beach_resort,resort,beach_resort,accommodation > resort > beach_resort -rv_park,lodging > rv_park,rv_park,rv_park,accommodation > rv_park -ryokan,lodging > ryokan,inn,ryokan,travel > ryokan -self_catering_accommodation,lodging > self_catering_accommodation,accommodation,self_catering_accommodation,travel > self_catering_accommodation -service_apartment,lodging > service_apartment,accommodation,service_apartments,accommodation > service_apartments -ski_resort,lodging > ski_resort,resort,ski_resort,travel > ski_resort -services_and_business,services_and_business,service_location,, -agricultural_service,services_and_business > agricultural_service,agricultural_service,agricultural_service,business_to_business > b2b_agriculture_and_food > agricultural_service -agricultural_service,services_and_business > agricultural_service,agricultural_service,agricultural_engineering_service,business_to_business > b2b_agriculture_and_food > agricultural_engineering_service -farm,services_and_business > agricultural_service > farm,farm,farm,arts_and_entertainment > farm -dairy_farm,services_and_business > agricultural_service > farm > dairy_farm,farm,dairy_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > dairy_farm -orchard,services_and_business > agricultural_service > farm > orchard,orchard,orchard,arts_and_entertainment > farm > orchard -pig_farm,services_and_business > agricultural_service > farm > pig_farm,farm,pig_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > pig_farm -poultry_farm,services_and_business > agricultural_service > farm > poultry_farm,farm,poultry_farm,arts_and_entertainment > farm > poultry_farm -ranch,services_and_business > agricultural_service > farm > ranch,ranch,ranch,arts_and_entertainment > farm > ranch -urban_farm,services_and_business > agricultural_service > farm > urban_farm,farm,urban_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > urban_farm -business,services_and_business > business,business_location,business,business_to_business > business -bags_luggage_company,services_and_business > business > bags_luggage_company,specialty_store,bags_luggage_company,business_to_business > business > bags_luggage_company -biotechnology_company,services_and_business > business > biotechnology_company,b2b_service,biotechnology_company,business_to_business > b2b_medical_support_services > biotechnology_company -bottled_water_company,services_and_business > business > bottled_water_company,food_or_beverage_store,bottled_water_company,business_to_business > business > bottled_water_company -clothing_company,services_and_business > business > clothing_company,clothing_store,clothing_company,business_to_business > business > clothing_company -energy_company,services_and_business > business > energy_company,utility_energy_infrastructure,energy_company,public_service_and_government > public_utility_company > energy_company -ferry_boat_company,services_and_business > business > ferry_boat_company,ferry_service,ferry_boat_company,business_to_business > business > ferry_boat_company -food_beverage_distributor,services_and_business > business > food_beverage_distributor,b2b_supplier_distributor,food_beverage_service_distribution,business_to_business > business > food_beverage_service_distribution -hotel_supply_service,services_and_business > business > hotel_supply_service,b2b_supplier_distributor,hotel_supply_service,business_to_business > business > hotel_supply_service -industrial_company,services_and_business > business > industrial_company,industrial_commercial_infrastructure,industrial_company,business_to_business > commercial_industrial > industrial_company -information_technology_company,services_and_business > business > information_technology_company,information_technology_service,information_technology_company,business_to_business > business_to_business_services > information_technology_company -plastics_company,services_and_business > business > plastics_company,b2b_supplier_distributor,plastic_company,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_company -plastics_company,services_and_business > business > plastics_company,b2b_supplier_distributor,plastic_fabrication_company,business_to_business > business_manufacturing_and_supply > plastic_fabrication_company -telecommunications_company,services_and_business > business > telecommunications_company,telecommunications_service,telecommunications_company,business_to_business > business_to_business_services > telecommunications_company -tobacco_company,services_and_business > business > tobacco_company,specialty_store,tobacco_company,business_to_business > business > tobacco_company -travel_company,services_and_business > business > travel_company,travel_service,travel_company,business_to_business > business > travel_company -business_to_business,services_and_business > business_to_business,b2b_service,business_to_business,business_to_business -b2b_agriculture_and_food,services_and_business > business_to_business > b2b_agriculture_and_food,agricultural_service,b2b_agriculture_and_food,business_to_business > b2b_agriculture_and_food -agricultural_cooperative,services_and_business > business_to_business > b2b_agriculture_and_food > agricultural_cooperative,agricultural_service,agricultural_cooperatives,business_to_business > b2b_agriculture_and_food > agricultural_cooperatives -agriculture,services_and_business > business_to_business > b2b_agriculture_and_food > agriculture,agricultural_area,agriculture,business_to_business > b2b_agriculture_and_food > agriculture -apiary_beekeeper,services_and_business > business_to_business > b2b_agriculture_and_food > apiary_beekeeper,farm,apiaries_and_beekeepers,business_to_business > b2b_agriculture_and_food > apiaries_and_beekeepers -b2b_dairy,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_dairy,farm,b2b_dairies,business_to_business > b2b_agriculture_and_food > b2b_dairies -b2b_farming,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming,farm,b2b_farming,business_to_business > b2b_agriculture_and_food > b2b_farming -b2b_farm,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farm,farm,b2b_farms,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms -farm_equipment_and_supply,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply,agricultural_service,farm_equipment_and_supply,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply -fertilizer_store,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store,agricultural_service,fertilizer_store,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store -grain_elevator,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevator,agricultural_service,grain_elevators,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevators -greenhouse,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,greenhouses,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouses -farming_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farming_service,agricultural_service,farming_services,business_to_business > b2b_agriculture_and_food > b2b_farming > farming_services -b2b_food_products,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_food_products,agricultural_service,b2b_food_products,business_to_business > b2b_agriculture_and_food > b2b_food_products -crops_production,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production,farm,crops_production,business_to_business > b2b_agriculture_and_food > crops_production -grain_production,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > grain_production,farm,grain_production,business_to_business > b2b_agriculture_and_food > crops_production > grain_production -orchards_production,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > orchards_production,farm,orchards_production,business_to_business > b2b_agriculture_and_food > crops_production > orchards_production -fish_farm_hatchery,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery,farm,fish_farms_and_hatcheries,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries -fish_farm,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery > fish_farm,farm,fish_farm,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries > fish_farm -livestock_breeder,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_breeder,agricultural_service,livestock_breeder,business_to_business > b2b_agriculture_and_food > livestock_breeder -livestock_dealer,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_dealer,agricultural_service,livestock_dealers,business_to_business > b2b_agriculture_and_food > livestock_dealers -poultry_farming,services_and_business > business_to_business > b2b_agriculture_and_food > poultry_farming,farm,poultry_farming,business_to_business > b2b_agriculture_and_food > poultry_farming -b2b_energy_and_mining,services_and_business > business_to_business > b2b_energy_and_mining,b2b_service,b2b_energy_and_mining,business_to_business > b2b_energy_and_mining -mining,services_and_business > business_to_business > b2b_energy_and_mining > mining,utility_energy_infrastructure,mining,business_to_business > b2b_energy_and_mining > mining -coal_and_coke,services_and_business > business_to_business > b2b_energy_and_mining > mining > coal_and_coke,utility_energy_infrastructure,coal_and_coke,business_to_business > b2b_energy_and_mining > mining > coal_and_coke -quarry,services_and_business > business_to_business > b2b_energy_and_mining > mining > quarry,utility_energy_infrastructure,quarries,business_to_business > b2b_energy_and_mining > mining > quarries -oil_and_gas,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas,oil_or_gas_facility,oil_and_gas,business_to_business > b2b_energy_and_mining > oil_and_gas -oil_and_gas_equipment,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_equipment,oil_or_gas_facility,oil_and_gas_field_equipment_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_field_equipment_and_services -oil_and_gas_exploration_and_development,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_exploration_and_development,oil_or_gas_facility,oil_and_gas_exploration_and_development,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_exploration_and_development -oil_and_gas_extraction,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_extraction,oil_or_gas_facility,b2b_oil_and_gas_extraction_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > b2b_oil_and_gas_extraction_and_services -oil_refinery,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_refinery,oil_or_gas_facility,oil_refiners,business_to_business > b2b_energy_and_mining > oil_and_gas > oil_refiners -power_plants_and_power_plant_service,services_and_business > business_to_business > b2b_energy_and_mining > power_plants_and_power_plant_service,power_plant,power_plants_and_power_plant_service,business_to_business > b2b_energy_and_mining > power_plants_and_power_plant_service -b2b_medical_support_service,services_and_business > business_to_business > b2b_medical_support_service,b2b_service,b2b_medical_support_services,business_to_business > b2b_medical_support_services -clinical_lab,services_and_business > business_to_business > b2b_medical_support_service > clinical_lab,b2b_service,clinical_laboratories,business_to_business > b2b_medical_support_services > clinical_laboratories -dental_lab,services_and_business > business_to_business > b2b_medical_support_service > dental_lab,b2b_service,dental_laboratories,business_to_business > b2b_medical_support_services > dental_laboratories -hospital_equipment_and_supplies,services_and_business > business_to_business > b2b_medical_support_service > hospital_equipment_and_supplies,b2b_service,hospital_equipment_and_supplies,business_to_business > b2b_medical_support_services > hospital_equipment_and_supplies -medical_research_and_development,services_and_business > business_to_business > b2b_medical_support_service > medical_research_and_development,b2b_service,medical_research_and_development,business_to_business > b2b_medical_support_services > medical_research_and_development -pharmaceutical_companies,services_and_business > business_to_business > b2b_medical_support_service > pharmaceutical_companies,b2b_service,pharmaceutical_companies,business_to_business > b2b_medical_support_services > pharmaceutical_companies -surgical_appliances_and_supplies,services_and_business > business_to_business > b2b_medical_support_service > surgical_appliances_and_supplies,b2b_service,surgical_appliances_and_supplies,business_to_business > b2b_medical_support_services > surgical_appliances_and_supplies -b2b_science_and_technology,services_and_business > business_to_business > b2b_science_and_technology,b2b_service,b2b_science_and_technology,business_to_business > b2b_science_and_technology -b2b_scientific_equipment,services_and_business > business_to_business > b2b_science_and_technology > b2b_scientific_equipment,b2b_service,b2b_scientific_equipment,business_to_business > b2b_science_and_technology > b2b_scientific_equipment -research_institute,services_and_business > business_to_business > b2b_science_and_technology > research_institute,b2b_service,research_institute,business_to_business > b2b_science_and_technology > research_institute -scientific_lab,services_and_business > business_to_business > b2b_science_and_technology > scientific_lab,b2b_service,scientific_laboratories,business_to_business > b2b_science_and_technology > scientific_laboratories -business_advertising,services_and_business > business_to_business > business_advertising,business_advertising_marketing,business_advertising,business_to_business > business_advertising -business_signage,services_and_business > business_to_business > business_advertising > business_signage,business_advertising_marketing,business_signage,business_to_business > business_advertising > business_signage -direct_mail_advertising,services_and_business > business_to_business > business_advertising > direct_mail_advertising,business_advertising_marketing,direct_mail_advertising,business_to_business > business_advertising > direct_mail_advertising -marketing_consultant,services_and_business > business_to_business > business_advertising > marketing_consultant,business_advertising_marketing,marketing_consultant,business_to_business > business_advertising > marketing_consultant -newspaper_advertising,services_and_business > business_to_business > business_advertising > newspaper_advertising,business_advertising_marketing,newspaper_advertising,business_to_business > business_advertising > newspaper_advertising -outdoor_advertising,services_and_business > business_to_business > business_advertising > outdoor_advertising,business_advertising_marketing,outdoor_advertising,business_to_business > business_advertising > outdoor_advertising -promotional_products_and_services,services_and_business > business_to_business > business_advertising > promotional_products_and_services,business_advertising_marketing,promotional_products_and_services,business_to_business > business_advertising > promotional_products_and_services -publicity_service,services_and_business > business_to_business > business_advertising > publicity_service,business_advertising_marketing,publicity_service,business_to_business > business_advertising > publicity_service -radio_and_television_commercials,services_and_business > business_to_business > business_advertising > radio_and_television_commercials,business_advertising_marketing,radio_and_television_commercials,business_to_business > business_advertising > radio_and_television_commercials -telemarketing_service,services_and_business > business_to_business > business_advertising > telemarketing_service,business_advertising_marketing,telemarketing_services,business_to_business > business_advertising > telemarketing_services -business_equipment_and_supply,services_and_business > business_to_business > business_equipment_and_supply,b2b_supplier_distributor,business_equipment_and_supply,business_to_business > business_equipment_and_supply -business_office_supplies_and_stationery,services_and_business > business_to_business > business_equipment_and_supply > business_office_supplies_and_stationery,office_supply_store,business_office_supplies_and_stationery,business_to_business > business_equipment_and_supply > business_office_supplies_and_stationery -energy_equipment_and_solution,services_and_business > business_to_business > business_equipment_and_supply > energy_equipment_and_solution,b2b_supplier_distributor,energy_equipment_and_solution,business_to_business > business_equipment_and_supply > energy_equipment_and_solution -restaurant_equipment_and_supply,services_and_business > business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply,b2b_supplier_distributor,restaurant_equipment_and_supply,business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply -business_manufacturing_and_supply,services_and_business > business_to_business > business_manufacturing_and_supply,manufacturer,business_manufacturing_and_supply,business_to_business > business_manufacturing_and_supply -b2b_apparel,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_apparel,b2b_supplier_distributor,b2b_apparel,business_to_business > business_manufacturing_and_supply > b2b_apparel -b2b_autos_and_vehicles,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles,b2b_supplier_distributor,b2b_autos_and_vehicles,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles -b2b_tires,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires,b2b_supplier_distributor,b2b_tires,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires -b2b_furniture_and_housewares,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares,b2b_supplier_distributor,b2b_furniture_and_housewares,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares -furniture_wholesaler,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesaler,wholesaler,furniture_wholesalers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesalers -b2b_hardware,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_hardware,b2b_supplier_distributor,b2b_hardware,business_to_business > business_manufacturing_and_supply > b2b_hardware -b2b_jeweler,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_jeweler,b2b_supplier_distributor,b2b_jewelers,business_to_business > business_manufacturing_and_supply > b2b_jewelers -b2b_machinery_and_tools,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools,b2b_supplier_distributor,b2b_machinery_and_tools,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools -b2b_equipment_maintenance_and_repair,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > b2b_equipment_maintenance_and_repair,b2b_supplier_distributor,b2b_equipment_maintenance_and_repair,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > b2b_equipment_maintenance_and_repair -industrial_equipment,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment,b2b_supplier_distributor,industrial_equipment,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment -b2b_rubber_and_plastics,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics,b2b_supplier_distributor,b2b_rubber_and_plastics,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics -b2b_sporting_and_recreation_goods,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods,b2b_supplier_distributor,b2b_sporting_and_recreation_goods,business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods -b2b_textiles,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_textiles,b2b_supplier_distributor,b2b_textiles,business_to_business > business_manufacturing_and_supply > b2b_textiles -casting_molding_and_machining,services_and_business > business_to_business > business_manufacturing_and_supply > casting_molding_and_machining,b2b_supplier_distributor,casting_molding_and_machining,business_to_business > business_manufacturing_and_supply > casting_molding_and_machining -chemical_plant,services_and_business > business_to_business > business_manufacturing_and_supply > chemical_plant,b2b_supplier_distributor,chemical_plant,business_to_business > business_manufacturing_and_supply > chemical_plant -electronic_equipment_supplier,services_and_business > business_to_business > business_manufacturing_and_supply > electronic_equipment_supplier,b2b_supplier_distributor,b2b_electronic_equipment,business_to_business > business_manufacturing_and_supply > b2b_electronic_equipment -mattress_manufacturing,services_and_business > business_to_business > business_manufacturing_and_supply > mattress_manufacturing,manufacturer,mattress_manufacturing,business_to_business > business_manufacturing_and_supply > mattress_manufacturing -metals,services_and_business > business_to_business > business_manufacturing_and_supply > metals,b2b_supplier_distributor,metals,business_to_business > business_manufacturing_and_supply > metals -metal_fabricator,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator,b2b_supplier_distributor,metal_fabricator,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator -metal_fabricator,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator,b2b_supplier_distributor,iron_and_steel_industry,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_and_steel_industry -iron_work,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_work,b2b_supplier_distributor,,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_and_steel_industry > iron_work -metal_plating_service,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_plating_service,b2b_supplier_distributor,metal_plating_service,business_to_business > business_manufacturing_and_supply > metals > metal_plating_service -scrap_metals,services_and_business > business_to_business > business_manufacturing_and_supply > metals > scrap_metals,b2b_supplier_distributor,scrap_metals,business_to_business > business_manufacturing_and_supply > metals > scrap_metals -sheet_metal,services_and_business > business_to_business > business_manufacturing_and_supply > metals > sheet_metal,b2b_supplier_distributor,sheet_metal,business_to_business > business_manufacturing_and_supply > metals > sheet_metal -steel_fabricator,services_and_business > business_to_business > business_manufacturing_and_supply > metals > steel_fabricator,b2b_supplier_distributor,steel_fabricators,business_to_business > business_manufacturing_and_supply > metals > steel_fabricators -mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill,b2b_supplier_distributor,mills,business_to_business > business_manufacturing_and_supply > mills -cotton_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > cotton_mill,b2b_supplier_distributor,cotton_mill,business_to_business > business_manufacturing_and_supply > mills > cotton_mill -flour_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > flour_mill,b2b_supplier_distributor,flour_mill,business_to_business > business_manufacturing_and_supply > mills > flour_mill -paper_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > paper_mill,b2b_supplier_distributor,paper_mill,business_to_business > business_manufacturing_and_supply > mills > paper_mill -rice_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > rice_mill,b2b_supplier_distributor,rice_mill,business_to_business > business_manufacturing_and_supply > mills > rice_mill -sawmill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > sawmill,b2b_supplier_distributor,saw_mill,business_to_business > business_manufacturing_and_supply > mills > saw_mill -textile_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > textile_mill,b2b_supplier_distributor,textile_mill,business_to_business > business_manufacturing_and_supply > mills > textile_mill -weaving_mill,services_and_business > business_to_business > business_manufacturing_and_supply > mill > weaving_mill,b2b_supplier_distributor,weaving_mill,business_to_business > business_manufacturing_and_supply > mills > weaving_mill -plastic_injection_molding_workshop,services_and_business > business_to_business > business_manufacturing_and_supply > plastic_injection_molding_workshop,b2b_supplier_distributor,plastic_injection_molding_workshop,business_to_business > business_manufacturing_and_supply > plastic_injection_molding_workshop -printing_equipment_and_supply,services_and_business > business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply,b2b_supplier_distributor,printing_equipment_and_supply,business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply -seal_and_hanko_dealer,services_and_business > business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealer,b2b_supplier_distributor,seal_and_hanko_dealers,business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealers -shoe_factory,services_and_business > business_to_business > business_manufacturing_and_supply > shoe_factory,b2b_supplier_distributor,shoe_factory,business_to_business > business_manufacturing_and_supply > shoe_factory -turnery,services_and_business > business_to_business > business_manufacturing_and_supply > turnery,b2b_supplier_distributor,turnery,business_to_business > business_manufacturing_and_supply > turnery -wood_and_pulp,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp,b2b_supplier_distributor,wood_and_pulp,business_to_business > business_manufacturing_and_supply > wood_and_pulp -logging_contractor,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor,b2b_supplier_distributor,logging_contractor,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor -logging_equipment_and_supplies,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_equipment_and_supplies,b2b_supplier_distributor,logging_equipment_and_supplies,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_equipment_and_supplies -logging_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_service,b2b_supplier_distributor,logging_services,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_services -business_storage_and_transportation,services_and_business > business_to_business > business_storage_and_transportation,b2b_service,business_storage_and_transportation,business_to_business > business_storage_and_transportation -b2b_storage,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage,b2b_service,b2b_storage_and_warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses -warehouse,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse,warehouse,warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > warehouses -warehouse_rental_service_yard,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse_rental_service_yard,warehouse,warehouse_rental_services_and_yards,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > warehouse_rental_services_and_yards -freight_and_cargo_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service,shipping_delivery_service,freight_and_cargo_service,business_to_business > business_storage_and_transportation > freight_and_cargo_service -distribution_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_service,shipping_delivery_service,distribution_services,business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_services -freight_forwarding_agency,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > freight_forwarding_agency,shipping_delivery_service,freight_forwarding_agency,business_to_business > business_storage_and_transportation > freight_and_cargo_service > freight_forwarding_agency -motor_freight_trucking,services_and_business > business_to_business > business_storage_and_transportation > motor_freight_trucking,shipping_delivery_service,motor_freight_trucking,business_to_business > business_storage_and_transportation > motor_freight_trucking -pipeline_transportation,services_and_business > business_to_business > business_storage_and_transportation > pipeline_transportation,shipping_delivery_service,pipeline_transportation,business_to_business > business_storage_and_transportation > pipeline_transportation -railroad_freight,services_and_business > business_to_business > business_storage_and_transportation > railroad_freight,shipping_delivery_service,railroad_freight,business_to_business > business_storage_and_transportation > railroad_freight -truck_and_industrial_vehicle_services,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services,b2b_supplier_distributor,trucks_and_industrial_vehicles,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles -tractor_dealer,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > tractor_dealer,b2b_supplier_distributor,b2b_tractor_dealers,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_tractor_dealers -truck_parts_and_accessories,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > truck_parts_and_accessories,b2b_supplier_distributor,b2b_truck_equipment_parts_and_accessories,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_truck_equipment_parts_and_accessories -business_to_business_service,services_and_business > business_to_business > business_to_business_service,b2b_service,business_to_business_services,business_to_business > business_to_business_services -agricultural_production,services_and_business > business_to_business > business_to_business_service > agricultural_production,agricultural_area,agricultural_production,business_to_business > business_to_business_services > agricultural_production -audio_visual_production_and_design,services_and_business > business_to_business > business_to_business_service > audio_visual_production_and_design,b2b_service,audio_visual_production_and_design,business_to_business > business_to_business_services > audio_visual_production_and_design -boat_builder,services_and_business > business_to_business > business_to_business_service > boat_builder,b2b_service,boat_builder,business_to_business > business_to_business_services > boat_builder -business_management_service,services_and_business > business_to_business > business_to_business_service > business_management_service,business_management_service,business_management_services,business_to_business > business_to_business_services > consultant_and_general_service > business_management_services -executive_search_consultants,services_and_business > business_to_business > business_to_business_service > business_management_service > executive_search_consultants,business_management_service,executive_search_consultants,business_to_business > business_to_business_services > consultant_and_general_service > executive_search_consultants -secretarial_service,services_and_business > business_to_business > business_to_business_service > business_management_service > secretarial_service,business_management_service,secretarial_services,business_to_business > business_to_business_services > consultant_and_general_service > secretarial_services -business_records_storage_and_management,services_and_business > business_to_business > business_to_business_service > business_records_storage_and_management,b2b_service,business_records_storage_and_management,business_to_business > business_to_business_services > business_records_storage_and_management -consultant_and_general_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service,business_management_service,consultant_and_general_service,business_to_business > business_to_business_services > consultant_and_general_service -food_consultant,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > food_consultant,business_management_service,food_consultant,business_to_business > business_to_business_services > consultant_and_general_service > food_consultant -manufacturing_and_industrial_consultant,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > manufacturing_and_industrial_consultant,business_management_service,manufacturing_and_industrial_consultant,business_to_business > business_to_business_services > consultant_and_general_service > manufacturing_and_industrial_consultant -coworking_space,services_and_business > business_to_business > business_to_business_service > coworking_space,b2b_service,coworking_space,business_to_business > business_to_business_services > coworking_space -domestic_business_and_trade_organization,services_and_business > business_to_business > business_to_business_service > domestic_business_and_trade_organization,b2b_service,domestic_business_and_trade_organizations,business_to_business > business_to_business_services > domestic_business_and_trade_organizations -energy_management_and_conservation_consultant,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > energy_management_and_conservation_consultant,b2b_service,energy_management_and_conservation_consultants,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > energy_management_and_conservation_consultants -forestry_consultant,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > forestry_consultant,b2b_service,forestry_consultants,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > forestry_consultants -geological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > geological_service,b2b_service,geological_services,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > geological_services -environmental_and_ecological_service_for_business,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business,b2b_service,environmental_and_ecological_services_for_businesses,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses -b2b_cleaning_and_waste_management,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > b2b_cleaning_and_waste_management,b2b_service,b2b_cleaning_and_waste_management,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > b2b_cleaning_and_waste_management -environmental_renewable_natural_resource,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > environmental_renewable_natural_resource,b2b_service,environmental_renewable_natural_resource,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > environmental_renewable_natural_resource -water_treatment_equipment_and_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > water_treatment_equipment_and_service,b2b_service,water_treatment_equipment_and_services,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > b2b_cleaning_and_waste_management > water_treatment_equipment_and_services -human_resource_service,services_and_business > business_to_business > business_to_business_service > human_resource_service,human_resource_service,human_resource_services,business_to_business > business_to_business_services > human_resource_services -background_check_service,services_and_business > business_to_business > business_to_business_service > human_resource_service > background_check_service,human_resource_service,background_check_services,business_to_business > business_to_business_services > human_resource_services > background_check_services -international_business_and_trade_service,services_and_business > business_to_business > business_to_business_service > international_business_and_trade_service,b2b_service,international_business_and_trade_services,business_to_business > business_to_business_services > international_business_and_trade_services -laser_cutting_service_provider,services_and_business > business_to_business > business_to_business_service > laser_cutting_service_provider,b2b_service,laser_cutting_service_provider,business_to_business > business_to_business_services > laser_cutting_service_provider -restaurant_management,services_and_business > business_to_business > business_to_business_service > restaurant_management,b2b_service,restaurant_management,business_to_business > business_to_business_services > restaurant_management -tower_communication_service,services_and_business > business_to_business > business_to_business_service > tower_communication_service,communication_tower,tower_communication_service,business_to_business > business_to_business_services > tower_communication_service -transcription_service,services_and_business > business_to_business > business_to_business_service > transcription_service,b2b_service,transcription_services,business_to_business > business_to_business_services > transcription_services -translating_and_interpreting_service,services_and_business > business_to_business > business_to_business_service > translating_and_interpreting_service,b2b_service,translating_and_interpreting_services,business_to_business > business_to_business_services > translating_and_interpreting_services -commercial_industrial,services_and_business > business_to_business > commercial_industrial,industrial_commercial_infrastructure,commercial_industrial,business_to_business > commercial_industrial -automation_service,services_and_business > business_to_business > commercial_industrial > automation_service,b2b_service,automation_services,business_to_business > commercial_industrial > automation_services -inventory_control_service,services_and_business > business_to_business > commercial_industrial > inventory_control_service,b2b_service,inventory_control_service,business_to_business > commercial_industrial > inventory_control_service -occupational_safety,services_and_business > business_to_business > commercial_industrial > occupational_safety,b2b_service,occupational_safety,business_to_business > commercial_industrial > occupational_safety -import_export_service,services_and_business > business_to_business > import_export_service,import_export_company,importer_and_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter -exporter,services_and_business > business_to_business > import_export_service > exporter,import_export_company,exporters,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters -food_and_beverage_exporter,services_and_business > business_to_business > import_export_service > exporter > food_and_beverage_exporter,import_export_company,food_and_beverage_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters > food_and_beverage_exporter -importer,services_and_business > business_to_business > import_export_service > importer,import_export_company,importers,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > importers -manufacturer,services_and_business > business_to_business > manufacturer,manufacturer,, -manufacturer,services_and_business > business_to_business > manufacturer,manufacturer,manufacturers_agents_and_representatives,business_to_business > business_to_business_services > domestic_business_and_trade_organizations > manufacturers_agents_and_representatives -aircraft_manufacturer,services_and_business > business_to_business > manufacturer > aircraft_manufacturer,manufacturer,aircraft_manufacturer,business_to_business > business_manufacturing_and_supply > aircraft_manufacturer -appliance_manufacturer,services_and_business > business_to_business > manufacturer > appliance_manufacturer,manufacturer,appliance_manufacturer,business_to_business > business_manufacturing_and_supply > appliance_manufacturer -auto_manufacturer,services_and_business > business_to_business > manufacturer > auto_manufacturer,manufacturer,auto_manufacturers_and_distributors,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > auto_manufacturers_and_distributors -cosmetic_products_manufacturer,services_and_business > business_to_business > manufacturer > cosmetic_products_manufacturer,manufacturer,cosmetic_products_manufacturer,business_to_business > business_manufacturing_and_supply > cosmetic_products_manufacturer -furniture_manufacturer,services_and_business > business_to_business > manufacturer > furniture_manufacturer,manufacturer,furniture_manufacturers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_manufacturers -glass_manufacturer,services_and_business > business_to_business > manufacturer > glass_manufacturer,manufacturer,glass_manufacturer,business_to_business > business_manufacturing_and_supply > glass_manufacturer -jewelry_and_watches_manufacturer,services_and_business > business_to_business > manufacturer > jewelry_and_watches_manufacturer,manufacturer,jewelry_and_watches_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_and_watches_manufacturer -jewelry_manufacturer,services_and_business > business_to_business > manufacturer > jewelry_manufacturer,manufacturer,jewelry_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_manufacturer -leather_products_manufacturer,services_and_business > business_to_business > manufacturer > leather_products_manufacturer,manufacturer,leather_products_manufacturer,business_to_business > business_manufacturing_and_supply > leather_products_manufacturer -lighting_fixture_manufacturer,services_and_business > business_to_business > manufacturer > lighting_fixture_manufacturer,manufacturer,lighting_fixture_manufacturers,business_to_business > business_manufacturing_and_supply > lighting_fixture_manufacturers -motorcycle_manufacturer,services_and_business > business_to_business > manufacturer > motorcycle_manufacturer,manufacturer,motorcycle_manufacturer,automotive > motorcycle_manufacturer -plastic_manufacturer,services_and_business > business_to_business > manufacturer > plastic_manufacturer,manufacturer,plastic_manufacturer,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_manufacturer -supplier_distributor,services_and_business > business_to_business > supplier_distributor,b2b_supplier_distributor,, -abrasives_supplier,services_and_business > business_to_business > supplier_distributor > abrasives_supplier,b2b_supplier_distributor,abrasives_supplier,business_to_business > business_manufacturing_and_supply > abrasives_supplier -aggregate_supplier,services_and_business > business_to_business > supplier_distributor > aggregate_supplier,b2b_supplier_distributor,aggregate_supplier,business_to_business > business_manufacturing_and_supply > aggregate_supplier -aluminum_supplier,services_and_business > business_to_business > supplier_distributor > aluminum_supplier,b2b_supplier_distributor,aluminum_supplier,business_to_business > business_manufacturing_and_supply > aluminum_supplier -awning_supplier,services_and_business > business_to_business > supplier_distributor > awning_supplier,b2b_supplier_distributor,awning_supplier,professional_services > awning_supplier -battery_inverter_supplier,services_and_business > business_to_business > supplier_distributor > battery_inverter_supplier,b2b_supplier_distributor,battery_inverter_supplier,business_to_business > business_manufacturing_and_supply > battery_inverter_supplier -bearing_supplier,services_and_business > business_to_business > supplier_distributor > bearing_supplier,b2b_supplier_distributor,bearing_supplier,business_to_business > business_manufacturing_and_supply > bearing_supplier -beauty_product_supplier,services_and_business > business_to_business > supplier_distributor > beauty_product_supplier,b2b_supplier_distributor,beauty_product_supplier,business_to_business > business_equipment_and_supply > beauty_product_supplier -beverage_supplier,services_and_business > business_to_business > supplier_distributor > beverage_supplier,b2b_supplier_distributor,beverage_supplier,business_to_business > business_equipment_and_supply > beverage_supplier -box_lunch_supplier,services_and_business > business_to_business > supplier_distributor > box_lunch_supplier,food_or_beverage_store,box_lunch_supplier,retail > food > box_lunch_supplier -cement_supplier,services_and_business > business_to_business > supplier_distributor > cement_supplier,b2b_supplier_distributor,cement_supplier,business_to_business > business_manufacturing_and_supply > cement_supplier -cleaning_products_supplier,services_and_business > business_to_business > supplier_distributor > cleaning_products_supplier,b2b_supplier_distributor,cleaning_products_supplier,business_to_business > business_manufacturing_and_supply > cleaning_products_supplier -corporate_gift_supplier,services_and_business > business_to_business > supplier_distributor > corporate_gift_supplier,b2b_supplier_distributor,corporate_gift_supplier,private_establishments_and_corporates > corporate_gift_supplier -electronic_parts_supplier,services_and_business > business_to_business > supplier_distributor > electronic_parts_supplier,b2b_supplier_distributor,electronic_parts_supplier,business_to_business > business_equipment_and_supply > electronic_parts_supplier -fastener_supplier,services_and_business > business_to_business > supplier_distributor > fastener_supplier,b2b_supplier_distributor,fastener_supplier,business_to_business > business_manufacturing_and_supply > fastener_supplier -granite_supplier,services_and_business > business_to_business > supplier_distributor > granite_supplier,b2b_supplier_distributor,granite_supplier,business_to_business > business_manufacturing_and_supply > granite_supplier -hvac_supplier,services_and_business > business_to_business > supplier_distributor > hvac_supplier,b2b_supplier_distributor,hvac_supplier,business_to_business > business_manufacturing_and_supply > hvac_supplier -hydraulic_equipment_supplier,services_and_business > business_to_business > supplier_distributor > hydraulic_equipment_supplier,b2b_supplier_distributor,hydraulic_equipment_supplier,business_to_business > business_equipment_and_supply > hydraulic_equipment_supplier -ice_supplier,services_and_business > business_to_business > supplier_distributor > ice_supplier,b2b_supplier_distributor,ice_supplier,professional_services > ice_supplier -laboratory_equipment_supplier,services_and_business > business_to_business > supplier_distributor > laboratory_equipment_supplier,b2b_supplier_distributor,laboratory_equipment_supplier,business_to_business > business_equipment_and_supply > laboratory_equipment_supplier -metal_supplier,services_and_business > business_to_business > supplier_distributor > metal_supplier,b2b_supplier_distributor,metal_supplier,business_to_business > business_manufacturing_and_supply > metals > metal_supplier -pipe_supplier,services_and_business > business_to_business > supplier_distributor > pipe_supplier,b2b_supplier_distributor,pipe_supplier,business_to_business > business_manufacturing_and_supply > pipe_supplier -playground_equipment_supplier,services_and_business > business_to_business > supplier_distributor > playground_equipment_supplier,specialty_store,playground_equipment_supplier,retail > shopping > home_and_garden > playground_equipment_supplier -propane_supplier,services_and_business > business_to_business > supplier_distributor > propane_supplier,b2b_supplier_distributor,propane_supplier,professional_services > propane_supplier -retaining_wall_supplier,services_and_business > business_to_business > supplier_distributor > retaining_wall_supplier,b2b_supplier_distributor,retaining_wall_supplier,business_to_business > business_manufacturing_and_supply > retaining_wall_supplier -sand_and_gravel_supplier,services_and_business > business_to_business > supplier_distributor > sand_and_gravel_supplier,b2b_supplier_distributor,sand_and_gravel_supplier,business_to_business > business_manufacturing_and_supply > sand_and_gravel_supplier -scale_supplier,services_and_business > business_to_business > supplier_distributor > scale_supplier,b2b_supplier_distributor,scale_supplier,business_to_business > business_manufacturing_and_supply > scale_supplier -spring_supplier,services_and_business > business_to_business > supplier_distributor > spring_supplier,b2b_supplier_distributor,spring_supplier,business_to_business > business_manufacturing_and_supply > spring_supplier -stone_supplier,services_and_business > business_to_business > supplier_distributor > stone_supplier,b2b_supplier_distributor,stone_supplier,business_to_business > business_manufacturing_and_supply > stone_supplier -tableware_supplier,services_and_business > business_to_business > supplier_distributor > tableware_supplier,specialty_store,tableware_supplier,retail > shopping > home_and_garden > tableware_supplier -tent_house_supplier,services_and_business > business_to_business > supplier_distributor > tent_house_supplier,b2b_supplier_distributor,tent_house_supplier,professional_services > tent_house_supplier -thread_supplier,services_and_business > business_to_business > supplier_distributor > thread_supplier,b2b_supplier_distributor,thread_supplier,business_to_business > business_equipment_and_supply > thread_supplier -vending_machine_supplier,services_and_business > business_to_business > supplier_distributor > vending_machine_supplier,b2b_supplier_distributor,vending_machine_supplier,business_to_business > business_equipment_and_supply > vending_machine_supplier -water_softening_equipment_supplier,services_and_business > business_to_business > supplier_distributor > water_softening_equipment_supplier,b2b_supplier_distributor,water_softening_equipment_supplier,business_to_business > business_equipment_and_supply > water_softening_equipment_supplier -window_supplier,services_and_business > business_to_business > supplier_distributor > window_supplier,b2b_supplier_distributor,window_supplier,business_to_business > business_manufacturing_and_supply > window_supplier -wholesaler,services_and_business > business_to_business > wholesaler,wholesaler,wholesaler,business_to_business > business_equipment_and_supply > wholesaler -computer_wholesaler,services_and_business > business_to_business > wholesaler > computer_wholesaler,wholesaler,computer_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > computer_wholesaler -electrical_wholesaler,services_and_business > business_to_business > wholesaler > electrical_wholesaler,wholesaler,electrical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > electrical_wholesaler -fabric_wholesaler,services_and_business > business_to_business > wholesaler > fabric_wholesaler,wholesaler,fabric_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fabric_wholesaler -fitness_equipment_wholesaler,services_and_business > business_to_business > wholesaler > fitness_equipment_wholesaler,wholesaler,fitness_equipment_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fitness_equipment_wholesaler -fmcg_wholesaler,services_and_business > business_to_business > wholesaler > fmcg_wholesaler,wholesaler,fmcg_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler -footwear_wholesaler,services_and_business > business_to_business > wholesaler > footwear_wholesaler,wholesaler,footwear_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > footwear_wholesaler -greengrocer,services_and_business > business_to_business > wholesaler > greengrocer,wholesaler,greengrocer,business_to_business > business_equipment_and_supply > wholesaler > greengrocer -industrial_spares_and_products_wholesaler,services_and_business > business_to_business > wholesaler > industrial_spares_and_products_wholesaler,wholesaler,industrial_spares_and_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > industrial_spares_and_products_wholesaler -iron_and_steel_store,services_and_business > business_to_business > wholesaler > iron_and_steel_store,wholesaler,iron_and_steel_store,business_to_business > business_equipment_and_supply > wholesaler > iron_and_steel_store -lingerie_wholesaler,services_and_business > business_to_business > wholesaler > lingerie_wholesaler,wholesaler,lingerie_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > lingerie_wholesaler -meat_wholesaler,services_and_business > business_to_business > wholesaler > meat_wholesaler,wholesaler,meat_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > meat_wholesaler -optical_wholesaler,services_and_business > business_to_business > wholesaler > optical_wholesaler,wholesaler,optical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > optical_wholesaler -pharmaceutical_products_wholesaler,services_and_business > business_to_business > wholesaler > pharmaceutical_products_wholesaler,wholesaler,pharmaceutical_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > pharmaceutical_products_wholesaler -produce_wholesaler,services_and_business > business_to_business > wholesaler > produce_wholesaler,wholesaler,produce_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > produce_wholesaler -restaurant_wholesale,services_and_business > business_to_business > wholesaler > restaurant_wholesale,wholesaler,restaurant_wholesale,business_to_business > business_equipment_and_supply > wholesaler > restaurant_wholesale -seafood_wholesaler,services_and_business > business_to_business > wholesaler > seafood_wholesaler,wholesaler,seafood_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > seafood_wholesaler -spices_wholesaler,services_and_business > business_to_business > wholesaler > spices_wholesaler,wholesaler,spices_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler > spices_wholesaler -tea_wholesaler,services_and_business > business_to_business > wholesaler > tea_wholesaler,wholesaler,tea_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tea_wholesaler -threads_and_yarns_wholesaler,services_and_business > business_to_business > wholesaler > threads_and_yarns_wholesaler,wholesaler,threads_and_yarns_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > threads_and_yarns_wholesaler -tools_wholesaler,services_and_business > business_to_business > wholesaler > tools_wholesaler,wholesaler,tools_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tools_wholesaler -wholesale_florist,services_and_business > business_to_business > wholesaler > wholesale_florist,wholesaler,wholesale_florist,business_to_business > business_equipment_and_supply > wholesaler > wholesale_florist -wholesale_grocer,services_and_business > business_to_business > wholesaler > wholesale_grocer,wholesaler,wholesale_grocer,business_to_business > business_equipment_and_supply > wholesaler > wholesale_grocer -wine_wholesaler,services_and_business > business_to_business > wholesaler > wine_wholesaler,wholesaler,wine_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > wine_wholesaler -financial_service,services_and_business > financial_service,financial_service,financial_service,financial_service -accountant,services_and_business > financial_service > accountant,accountant_or_bookkeeper,accountant,financial_service > accountant -atm,services_and_business > financial_service > atm,atm,atms,financial_service > atms -bank_credit_union,services_and_business > financial_service > bank_credit_union,financial_service,bank_credit_union,financial_service > bank_credit_union -bank,services_and_business > financial_service > bank_credit_union > bank,bank,banks,financial_service > bank_credit_union > banks -credit_union,services_and_business > financial_service > bank_credit_union > credit_union,credit_union,credit_union,financial_service > bank_credit_union > credit_union -broker,services_and_business > financial_service > broker,financial_service,brokers,financial_service > brokers -business_broker,services_and_business > financial_service > broker > business_broker,financial_service,business_brokers,financial_service > brokers > business_brokers -stock_and_bond_broker,services_and_business > financial_service > broker > stock_and_bond_broker,financial_service,stock_and_bond_brokers,financial_service > brokers > stock_and_bond_brokers -business_banking_service,services_and_business > financial_service > business_banking_service,financial_service,business_banking_service,financial_service > business_banking_service -business_financing,services_and_business > financial_service > business_financing,financial_service,business_financing,financial_service > business_financing -check_cashing_payday_loans,services_and_business > financial_service > check_cashing_payday_loans,loan_provider,check_cashing_payday_loans,financial_service > check_cashing_payday_loans -coin_dealer,services_and_business > financial_service > coin_dealer,financial_service,coin_dealers,financial_service > coin_dealers -collection_agency,services_and_business > financial_service > collection_agency,financial_service,collection_agencies,financial_service > collection_agencies -credit_and_debt_counseling,services_and_business > financial_service > credit_and_debt_counseling,financial_service,credit_and_debt_counseling,financial_service > credit_and_debt_counseling -currency_exchange,services_and_business > financial_service > currency_exchange,financial_service,currency_exchange,financial_service > currency_exchange -debt_relief_service,services_and_business > financial_service > debt_relief_service,financial_service,debt_relief_services,financial_service > debt_relief_services -financial_advising,services_and_business > financial_service > financial_advising,financial_service,financial_advising,financial_service > financial_advising -holding_company,services_and_business > financial_service > holding_company,financial_service,holding_companies,financial_service > holding_companies -installment_loans,services_and_business > financial_service > installment_loans,loan_provider,installment_loans,financial_service > installment_loans -auto_loan_provider,services_and_business > financial_service > installment_loans > auto_loan_provider,loan_provider,auto_loan_provider,financial_service > installment_loans > auto_loan_provider -mortgage_lender,services_and_business > financial_service > installment_loans > mortgage_lender,loan_provider,mortgage_lender,financial_service > installment_loans > mortgage_lender -insurance_agency,services_and_business > financial_service > insurance_agency,insurance_agency,insurance_agency,financial_service > insurance_agency -auto_insurance,services_and_business > financial_service > insurance_agency > auto_insurance,insurance_agency,auto_insurance,financial_service > insurance_agency > auto_insurance -farm_insurance,services_and_business > financial_service > insurance_agency > farm_insurance,insurance_agency,farm_insurance,financial_service > insurance_agency > farm_insurance -fidelity_and_surety_bonds,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,insurance_agency,fidelity_and_surety_bonds,financial_service > insurance_agency > fidelity_and_surety_bonds -home_and_rental_insurance,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,insurance_agency,home_and_rental_insurance,financial_service > insurance_agency > home_and_rental_insurance -life_insurance,services_and_business > financial_service > insurance_agency > life_insurance,insurance_agency,life_insurance,financial_service > insurance_agency > life_insurance -investing,services_and_business > financial_service > investing,financial_service,investing,financial_service > investing -investment_management_company,services_and_business > financial_service > investment_management_company,financial_service,investment_management_company,financial_service > investment_management_company -money_transfer_service,services_and_business > financial_service > money_transfer_service,financial_service,money_transfer_services,financial_service > money_transfer_services -tax_service,services_and_business > financial_service > tax_service,tax_preparation_service,tax_services,financial_service > tax_services -trusts,services_and_business > financial_service > trusts,financial_service,trusts,financial_service > trusts -gold_buyer,services_and_business > gold_buyer,specialty_store,gold_buyer,retail > shopping > gold_buyer -home_service,services_and_business > home_service,home_service,home_service,home_service -artificial_turf,services_and_business > home_service > artificial_turf,home_service,artificial_turf,home_service > artificial_turf -bathroom_remodeling,services_and_business > home_service > bathroom_remodeling,remodeling_service,bathroom_remodeling,home_service > bathroom_remodeling -bathtub_and_sink_repair,services_and_business > home_service > bathtub_and_sink_repair,home_service,bathtub_and_sink_repairs,home_service > bathtub_and_sink_repairs -cabinet_sales_service,services_and_business > home_service > cabinet_sales_service,home_service,cabinet_sales_service,home_service > cabinet_sales_service -carpenter,services_and_business > home_service > carpenter,carpentry_service,carpenter,home_service > carpenter -carpet_cleaning,services_and_business > home_service > carpet_cleaning,carpet_cleaning_service,carpet_cleaning,home_service > carpet_cleaning -carpet_installation,services_and_business > home_service > carpet_installation,home_service,carpet_installation,home_service > carpet_installation -ceiling_and_roofing_repair_and_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service,roofing_service,ceiling_and_roofing_repair_and_service,home_service > ceiling_and_roofing_repair_and_service -ceiling_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,home_service,ceiling_service,home_service > ceiling_and_roofing_repair_and_service > ceiling_service -roofing,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing_service,roofing,home_service > ceiling_and_roofing_repair_and_service > roofing -childproofing,services_and_business > home_service > childproofing,home_service,childproofing,home_service > childproofing -chimney_service,services_and_business > home_service > chimney_service,home_service,chimney_service,home_service > chimney_service -chimney_sweep,services_and_business > home_service > chimney_service > chimney_sweep,home_service,chimney_sweep,home_service > chimney_service > chimney_sweep -closet_remodeling,services_and_business > home_service > closet_remodeling,remodeling_service,closet_remodeling,home_service > closet_remodeling -contractor,services_and_business > home_service > contractor,building_contractor_service,contractor,home_service > contractor -altering_and_remodeling_contractor,services_and_business > home_service > contractor > altering_and_remodeling_contractor,building_contractor_service,altering_and_remodeling_contractor,home_service > contractor > altering_and_remodeling_contractor -building_contractor,services_and_business > home_service > contractor > building_contractor,building_contractor_service,building_contractor,home_service > contractor > building_contractor -flooring_contractor,services_and_business > home_service > contractor > flooring_contractor,building_contractor_service,flooring_contractors,home_service > contractor > flooring_contractors -paving_contractor,services_and_business > home_service > contractor > paving_contractor,building_contractor_service,paving_contractor,home_service > contractor > paving_contractor -countertop_installation,services_and_business > home_service > countertop_installation,home_service,countertop_installation,home_service > countertop_installation -damage_restoration,services_and_business > home_service > damage_restoration,home_service,damage_restoration,home_service > damage_restoration -fire_and_water_damage_restoration,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,home_service,fire_and_water_damage_restoration,home_service > damage_restoration > fire_and_water_damage_restoration -deck_and_railing_sales_service,services_and_business > home_service > deck_and_railing_sales_service,home_service,deck_and_railing_sales_service,home_service > deck_and_railing_sales_service -demolition_service,services_and_business > home_service > demolition_service,home_service,demolition_service,home_service > demolition_service -door_sales_service,services_and_business > home_service > door_sales_service,home_service,door_sales_service,home_service > door_sales_service -drywall_service,services_and_business > home_service > drywall_service,home_service,drywall_services,home_service > drywall_services -electrician,services_and_business > home_service > electrician,electrical_service,electrician,home_service > electrician -electrician,services_and_business > home_service > electrician,electrical_service,electrical_consultant,professional_services > electrical_consultant -excavation_service,services_and_business > home_service > excavation_service,home_service,excavation_service,home_service > excavation_service -exterior_design,services_and_business > home_service > exterior_design,home_service,exterior_design,home_service > exterior_design -fence_and_gate_sales_service,services_and_business > home_service > fence_and_gate_sales_service,home_service,fence_and_gate_sales_service,home_service > fence_and_gate_sales_service -fire_protection_service,services_and_business > home_service > fire_protection_service,home_service,fire_protection_service,home_service > fire_protection_service -fireplace_service,services_and_business > home_service > fireplace_service,home_service,fireplace_service,home_service > fireplace_service -firewood,services_and_business > home_service > firewood,home_service,firewood,home_service > firewood -foundation_repair,services_and_business > home_service > foundation_repair,home_service,foundation_repair,home_service > foundation_repair -furniture_assembly,services_and_business > home_service > furniture_assembly,home_service,furniture_assembly,home_service > furniture_assembly -garage_door_service,services_and_business > home_service > garage_door_service,home_service,garage_door_service,home_service > garage_door_service -glass_and_mirror_sales_service,services_and_business > home_service > glass_and_mirror_sales_service,home_service,glass_and_mirror_sales_service,home_service > glass_and_mirror_sales_service -grout_service,services_and_business > home_service > grout_service,home_service,grout_service,home_service > grout_service -gutter_service,services_and_business > home_service > gutter_service,home_service,gutter_service,home_service > gutter_service -handyman,services_and_business > home_service > handyman,handyman_service,handyman,home_service > handyman -holiday_decorating_service,services_and_business > home_service > holiday_decorating_service,home_service,holiday_decorating,home_service > holiday_decorating -home_automation,services_and_business > home_service > home_automation,home_service,home_automation,home_service > home_automation -home_cleaning,services_and_business > home_service > home_cleaning,house_cleaning_service,home_cleaning,home_service > home_cleaning -home_energy_auditor,services_and_business > home_service > home_energy_auditor,home_service,home_energy_auditor,home_service > home_energy_auditor -home_inspector,services_and_business > home_service > home_inspector,home_service,home_inspector,home_service > home_inspector -home_network_installation,services_and_business > home_service > home_network_installation,home_service,home_network_installation,home_service > home_network_installation -home_security,services_and_business > home_service > home_security,home_service,home_security,home_service > home_security -home_window_tinting,services_and_business > home_service > home_window_tinting,home_service,home_window_tinting,home_service > home_window_tinting -house_sitting,services_and_business > home_service > house_sitting,home_service,house_sitting,home_service > house_sitting -hvac_service,services_and_business > home_service > hvac_service,hvac_service,hvac_services,home_service > hvac_services -insulation_installation,services_and_business > home_service > insulation_installation,home_service,insulation_installation,home_service > insulation_installation -interior_design,services_and_business > home_service > interior_design,interior_design_service,interior_design,home_service > interior_design -irrigation_service,services_and_business > home_service > irrigation_service,landscaping_gardening_service,irrigation,home_service > irrigation -irrigation_service,services_and_business > home_service > irrigation_service,landscaping_gardening_service,irrigation_companies,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > irrigation_companies -key_and_locksmith,services_and_business > home_service > key_and_locksmith,locksmith_service,key_and_locksmith,home_service > key_and_locksmith -kitchen_remodeling,services_and_business > home_service > kitchen_remodeling,remodeling_service,kitchen_remodeling,home_service > kitchen_remodeling -landscaping,services_and_business > home_service > landscaping,landscaping_gardening_service,landscaping,home_service > landscaping -gardener,services_and_business > home_service > landscaping > gardener,landscaping_gardening_service,gardener,home_service > landscaping > gardener -landscape_architect,services_and_business > home_service > landscaping > landscape_architect,landscaping_gardening_service,landscape_architect,home_service > landscaping > landscape_architect -lawn_service,services_and_business > home_service > landscaping > lawn_service,landscaping_gardening_service,lawn_service,home_service > landscaping > lawn_service -tree_service,services_and_business > home_service > landscaping > tree_service,landscaping_gardening_service,tree_services,home_service > landscaping > tree_services -lighting_fixtures_and_equipment,services_and_business > home_service > lighting_fixtures_and_equipment,home_service,lighting_fixtures_and_equipment,home_service > lighting_fixtures_and_equipment -masonry_concrete,services_and_business > home_service > masonry_concrete,home_service,masonry_concrete,home_service > masonry_concrete -mobile_home_repair,services_and_business > home_service > mobile_home_repair,home_service,mobile_home_repair,home_service > mobile_home_repair -mover,services_and_business > home_service > mover,moving_service,movers,home_service > movers -packing_service,services_and_business > home_service > packing_service,moving_service,packing_services,home_service > packing_services -painting,services_and_business > home_service > painting,painting_service,painting,home_service > painting -patio_covers,services_and_business > home_service > patio_covers,home_service,patio_covers,home_service > patio_covers -plasterer,services_and_business > home_service > plasterer,home_service,plasterer,home_service > plasterer -plumbing,services_and_business > home_service > plumbing,plumbing_service,plumbing,home_service > plumbing -backflow_service,services_and_business > home_service > plumbing > backflow_service,home_service,backflow_services,home_service > plumbing > backflow_services -pool_and_hot_tub_service,services_and_business > home_service > pool_and_hot_tub_service,home_service,pool_and_hot_tub_services,home_service > pool_and_hot_tub_services -pool_cleaning,services_and_business > home_service > pool_cleaning,home_service,pool_cleaning,home_service > pool_cleaning -pressure_washing,services_and_business > home_service > pressure_washing,home_service,pressure_washing,home_service > pressure_washing -refinishing_service,services_and_business > home_service > refinishing_service,home_service,refinishing_services,home_service > refinishing_services -security_systems,services_and_business > home_service > security_systems,home_service,security_systems,home_service > security_systems -shades_and_blinds,services_and_business > home_service > shades_and_blinds,home_service,shades_and_blinds,home_service > shades_and_blinds -shutters,services_and_business > home_service > shutters,home_service,shutters,home_service > shutters -siding,services_and_business > home_service > siding,home_service,siding,home_service > siding -solar_installation,services_and_business > home_service > solar_installation,home_service,solar_installation,home_service > solar_installation -solar_panel_cleaning,services_and_business > home_service > solar_panel_cleaning,home_service,solar_panel_cleaning,home_service > solar_panel_cleaning -structural_engineer,services_and_business > home_service > structural_engineer,home_service,structural_engineer,home_service > structural_engineer -stucco_service,services_and_business > home_service > stucco_service,home_service,stucco_services,home_service > stucco_services -television_service_provider,services_and_business > home_service > television_service_provider,home_service,television_service_providers,home_service > television_service_providers -tiling,services_and_business > home_service > tiling,home_service,tiling,home_service > tiling -wallpaper_installer,services_and_business > home_service > wallpaper_installer,home_service,wallpaper_installers,home_service > wallpaper_installers -washer_and_dryer_repair_service,services_and_business > home_service > washer_and_dryer_repair_service,applicance_repair_service,washer_and_dryer_repair_service,home_service > washer_and_dryer_repair_service -water_heater_installation_repair,services_and_business > home_service > water_heater_installation_repair,applicance_repair_service,water_heater_installation_repair,home_service > water_heater_installation_repair -water_purification_service,services_and_business > home_service > water_purification_service,home_service,water_purification_services,home_service > water_purification_services -waterproofing,services_and_business > home_service > waterproofing,home_service,waterproofing,home_service > waterproofing -window_washing,services_and_business > home_service > window_washing,home_service,window_washing,home_service > window_washing -windows_installation,services_and_business > home_service > windows_installation,home_service,windows_installation,home_service > windows_installation -skylight_installation,services_and_business > home_service > windows_installation > skylight_installation,home_service,skylight_installation,home_service > windows_installation > skylight_installation -media_and_news,services_and_business > media_and_news,media_service,mass_media,mass_media -media_critic,services_and_business > media_and_news > media_critic,media_service,media_critic,mass_media > media_critic -movie_critic,services_and_business > media_and_news > media_critic > movie_critic,media_service,movie_critic,mass_media > media_critic > movie_critic -music_critic,services_and_business > media_and_news > media_critic > music_critic,media_service,music_critic,mass_media > media_critic > music_critic -video_game_critic,services_and_business > media_and_news > media_critic > video_game_critic,media_service,video_game_critic,mass_media > media_critic > video_game_critic -media_news_company,services_and_business > media_and_news > media_news_company,media_service,media_news_company,mass_media > media_news_company -animation_studio,services_and_business > media_and_news > media_news_company > animation_studio,media_service,animation_studio,mass_media > media_news_company > animation_studio -book_magazine_distribution,services_and_business > media_and_news > media_news_company > book_magazine_distribution,print_media_service,book_magazine_distribution,mass_media > media_news_company > book_magazine_distribution -broadcasting_media_production,services_and_business > media_and_news > media_news_company > broadcasting_media_production,media_service,broadcasting_media_production,mass_media > media_news_company > broadcasting_media_production -game_publisher,services_and_business > media_and_news > media_news_company > game_publisher,media_service,game_publisher,mass_media > media_news_company > game_publisher -media_agency,services_and_business > media_and_news > media_news_company > media_agency,media_service,media_agency,mass_media > media_news_company > media_agency -movie_television_studio,services_and_business > media_and_news > media_news_company > movie_television_studio,media_service,movie_television_studio,mass_media > media_news_company > movie_television_studio -music_production,services_and_business > media_and_news > media_news_company > music_production,music_production_service,music_production,mass_media > media_news_company > music_production -radio_station,services_and_business > media_and_news > media_news_company > radio_station,radio_station,radio_station,mass_media > media_news_company > radio_station -social_media_company,services_and_business > media_and_news > media_news_company > social_media_company,media_service,social_media_company,mass_media > media_news_company > social_media_company -television_station,services_and_business > media_and_news > media_news_company > television_station,television_station,television_station,mass_media > media_news_company > television_station -topic_publisher,services_and_business > media_and_news > media_news_company > topic_publisher,print_media_service,topic_publisher,mass_media > media_news_company > topic_publisher -weather_forecast_service,services_and_business > media_and_news > media_news_company > weather_forecast_service,media_service,weather_forecast_services,mass_media > media_news_company > weather_forecast_services -media_news_website,services_and_business > media_and_news > media_news_website,media_service,media_news_website,mass_media > media_news_website -media_restoration_service,services_and_business > media_and_news > media_restoration_service,media_service,media_restoration_service,mass_media > media_restoration_service -print_media,services_and_business > media_and_news > print_media,print_media_service,print_media,mass_media > print_media -theatrical_production,services_and_business > media_and_news > theatrical_production,threatre_venue,theatrical_productions,mass_media > theatrical_productions -private_establishments_and_corporates,services_and_business > private_establishments_and_corporates,corporate_or_business_office,private_establishments_and_corporates,private_establishments_and_corporates -corporate_entertainment_service,services_and_business > private_establishments_and_corporates > corporate_entertainment_service,b2b_service,corporate_entertainment_services,private_establishments_and_corporates > corporate_entertainment_services -corporate_office,services_and_business > private_establishments_and_corporates > corporate_office,corporate_or_business_office,corporate_office,private_establishments_and_corporates > corporate_office -private_equity_firm,services_and_business > private_establishments_and_corporates > private_equity_firm,financial_service,private_equity_firm,private_establishments_and_corporates > private_equity_firm -professional_service,services_and_business > professional_service,service_location,professional_services,professional_services -3d_printing_service,services_and_business > professional_service > 3d_printing_service,printing_service,3d_printing_service,professional_services > 3d_printing_service -acoustical_consultant,services_and_business > professional_service > acoustical_consultant,service_location,acoustical_consultant,professional_services > acoustical_consultant -adoption_service,services_and_business > professional_service > adoption_service,adoption_service,adoption_services,professional_services > adoption_services -advertising_agency,services_and_business > professional_service > advertising_agency,business_advertising_marketing,advertising_agency,professional_services > advertising_agency -after_school_program,services_and_business > professional_service > after_school_program,educational_service,after_school_program,professional_services > after_school_program -air_duct_cleaning_service,services_and_business > professional_service > air_duct_cleaning_service,hvac_service,air_duct_cleaning_service,professional_services > air_duct_cleaning_service -antenna_service,services_and_business > professional_service > antenna_service,home_service,antenna_service,professional_services > antenna_service -appliance_repair_service,services_and_business > professional_service > appliance_repair_service,applicance_repair_service,appliance_repair_service,professional_services > appliance_repair_service -appraisal_service,services_and_business > professional_service > appraisal_service,building_appraisal_service,appraisal_services,professional_services > appraisal_services -architect,services_and_business > professional_service > architect,architectural_design_service,architect,professional_services > architect -architectural_designer,services_and_business > professional_service > architectural_designer,architectural_design_service,architectural_designer,professional_services > architectural_designer -art_restoration_service,services_and_business > professional_service > art_restoration_service,media_service,art_restoration_service,professional_services > art_restoration_service -art_restoration_service,services_and_business > professional_service > art_restoration_service,media_service,art_restoration,mass_media > media_restoration_service > art_restoration -bail_bonds_service,services_and_business > professional_service > bail_bonds_service,bail_bonds_service,bail_bonds_service,professional_services > bail_bonds_service -bank_equipment_service,services_and_business > professional_service > bank_equipment_service,b2b_service,bank_equipment_service,professional_services > bank_equipment_service -bike_repair_maintenance,services_and_business > professional_service > bike_repair_maintenance,vehicle_service,bike_repair_maintenance,professional_services > bike_repair_maintenance -billing_service,services_and_business > professional_service > billing_service,b2b_service,billing_services,professional_services > billing_services -bookbinding,services_and_business > professional_service > bookbinding,media_service,bookbinding,professional_services > bookbinding -bookbinding,services_and_business > professional_service > bookbinding,media_service,bookmakers,arts_and_entertainment > bookmakers -bookkeeper,services_and_business > professional_service > bookkeeper,accountant_or_bookkeeper,bookkeeper,professional_services > bookkeeper -bus_rental,services_and_business > professional_service > bus_rental,vehicle_service,bus_rentals,professional_services > bus_rentals -business_consulting,services_and_business > professional_service > business_consulting,b2b_service,business_consulting,professional_services > business_consulting -calligraphy,services_and_business > professional_service > calligraphy,media_service,calligraphy,professional_services > calligraphy -car_broker,services_and_business > professional_service > car_broker,car_dealer,car_broker,professional_services > car_broker -career_counseling,services_and_business > professional_service > career_counseling,educational_service,career_counseling,professional_services > career_counseling -carpet_dyeing,services_and_business > professional_service > carpet_dyeing,home_service,carpet_dyeing,professional_services > carpet_dyeing -cemetery,services_and_business > professional_service > cemetery,cemetery,cemeteries,professional_services > cemeteries -certification_agency,services_and_business > professional_service > certification_agency,b2b_service,certification_agency,professional_services > certification_agency -child_care_and_day_care,services_and_business > professional_service > child_care_and_day_care,child_care_or_day_care,child_care_and_day_care,professional_services > child_care_and_day_care -day_care_preschool,services_and_business > professional_service > child_care_and_day_care > day_care_preschool,child_care_or_day_care,day_care_preschool,professional_services > child_care_and_day_care > day_care_preschool -cleaning_service,services_and_business > professional_service > cleaning_service,business_cleaning_service,cleaning_services,professional_services > cleaning_services -industrial_cleaning_service,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,business_cleaning_service,industrial_cleaning_services,professional_services > cleaning_services > industrial_cleaning_services -janitorial_service,services_and_business > professional_service > cleaning_service > janitorial_service,business_cleaning_service,janitorial_services,professional_services > cleaning_services > janitorial_services -office_cleaning,services_and_business > professional_service > cleaning_service > office_cleaning,business_cleaning_service,office_cleaning,professional_services > cleaning_services > office_cleaning -clock_repair_service,services_and_business > professional_service > clock_repair_service,home_service,clock_repair_service,professional_services > clock_repair_service -commercial_printer,services_and_business > professional_service > commercial_printer,b2b_service,commercial_printer,professional_services > commercial_printer -commercial_refrigeration,services_and_business > professional_service > commercial_refrigeration,b2b_service,commercial_refrigeration,professional_services > commercial_refrigeration -commissioned_artist,services_and_business > professional_service > commissioned_artist,media_service,commissioned_artist,professional_services > commissioned_artist -community_book_box,services_and_business > professional_service > community_book_box,media_service,community_book_boxes,professional_services > community_book_boxes -computer_hardware_company,services_and_business > professional_service > computer_hardware_company,technical_service,computer_hardware_company,professional_services > computer_hardware_company -construction_service,services_and_business > professional_service > construction_service,building_construction_service,construction_services,professional_services > construction_services -blacksmith,services_and_business > professional_service > construction_service > blacksmith,b2b_service,blacksmiths,professional_services > construction_services > metal_materials_and_experts > blacksmiths -blueprinter,services_and_business > professional_service > construction_service > blueprinter,building_construction_service,blueprinters,professional_services > construction_services > blueprinters -civil_engineer,services_and_business > professional_service > construction_service > civil_engineer,engineering_service,civil_engineers,professional_services > construction_services > engineering_services > civil_engineers -construction_management,services_and_business > professional_service > construction_service > construction_management,building_construction_service,construction_management,professional_services > construction_services > construction_management -engineering_service,services_and_business > professional_service > construction_service > engineering_service,engineering_service,engineering_services,professional_services > construction_services > engineering_services -gravel_professional,services_and_business > professional_service > construction_service > gravel_professional,building_construction_service,gravel_professionals,professional_services > construction_services > stone_and_masonry > gravel_professionals -inspection_service,services_and_business > professional_service > construction_service > inspection_service,building_inspection_service,inspection_services,professional_services > construction_services > inspection_services -instrumentation_engineer,services_and_business > professional_service > construction_service > instrumentation_engineer,engineering_service,instrumentation_engineers,professional_services > construction_services > engineering_services > instrumentation_engineers -ironworker,services_and_business > professional_service > construction_service > ironworker,b2b_service,ironworkers,professional_services > construction_services > metal_materials_and_experts > ironworkers -lime_professional,services_and_business > professional_service > construction_service > lime_professional,building_construction_service,lime_professionals,professional_services > construction_services > stone_and_masonry > lime_professionals -marble_and_granite_professional,services_and_business > professional_service > construction_service > marble_and_granite_professional,building_construction_service,marble_and_granite_professionals,professional_services > construction_services > stone_and_masonry > marble_and_granite_professionals -masonry_contractor,services_and_business > professional_service > construction_service > masonry_contractor,building_construction_service,masonry_contractors,professional_services > construction_services > stone_and_masonry > masonry_contractors -mechanical_engineer,services_and_business > professional_service > construction_service > mechanical_engineer,engineering_service,mechanical_engineers,professional_services > construction_services > engineering_services > mechanical_engineers -metal_material_expert,services_and_business > professional_service > construction_service > metal_material_expert,b2b_service,metal_materials_and_experts,professional_services > construction_services > metal_materials_and_experts -road_contractor,services_and_business > professional_service > construction_service > road_contractor,b2b_service,road_contractor,professional_services > construction_services > road_contractor -stone_and_masonry,services_and_business > professional_service > construction_service > stone_and_masonry,building_construction_service,stone_and_masonry,professional_services > construction_services > stone_and_masonry -welder,services_and_business > professional_service > construction_service > welder,b2b_service,welders,professional_services > construction_services > metal_materials_and_experts > welders -wind_energy,services_and_business > professional_service > construction_service > wind_energy,utility_energy_infrastructure,wind_energy,professional_services > construction_services > wind_energy -copywriting_service,services_and_business > professional_service > copywriting_service,media_service,copywriting_service,professional_services > copywriting_service -courier_and_delivery_service,services_and_business > professional_service > courier_and_delivery_service,courier_service,courier_and_delivery_services,professional_services > courier_and_delivery_services -crane_service,services_and_business > professional_service > crane_service,b2b_service,crane_services,professional_services > crane_services -customs_broker,services_and_business > professional_service > customs_broker,b2b_service,customs_broker,professional_services > customs_broker -delegated_driver_service,services_and_business > professional_service > delegated_driver_service,vehicle_service,delegated_driver_service,professional_services > delegated_driver_service -diamond_dealer,services_and_business > professional_service > diamond_dealer,specialty_store,diamond_dealer,professional_services > diamond_dealer -digitizing_service,services_and_business > professional_service > digitizing_service,media_service,digitizing_services,professional_services > digitizing_services -donation_center,services_and_business > professional_service > donation_center,social_or_community_service,donation_center,professional_services > donation_center -duplication_service,services_and_business > professional_service > duplication_service,media_service,duplication_services,professional_services > duplication_services -e_commerce_service,services_and_business > professional_service > e_commerce_service,software_development,e_commerce_service,professional_services > e_commerce_service -editorial_service,services_and_business > professional_service > editorial_service,media_service,editorial_services,professional_services > editorial_services -elder_care_planning,services_and_business > professional_service > elder_care_planning,social_or_community_service,elder_care_planning,professional_services > elder_care_planning -electronics_repair_shop,services_and_business > professional_service > electronics_repair_shop,electronic_repiar_service,electronics_repair_shop,professional_services > electronics_repair_shop -elevator_service,services_and_business > professional_service > elevator_service,b2b_service,elevator_service,professional_services > elevator_service -employment_agency,services_and_business > professional_service > employment_agency,human_resource_service,employment_agencies,professional_services > employment_agencies -temp_agency,services_and_business > professional_service > employment_agency > temp_agency,human_resource_service,temp_agency,professional_services > employment_agencies > temp_agency -engraving,services_and_business > professional_service > engraving,media_service,engraving,professional_services > engraving -environmental_abatement_service,services_and_business > professional_service > environmental_abatement_service,b2b_service,environmental_abatement_services,professional_services > environmental_abatement_services -environmental_testing,services_and_business > professional_service > environmental_testing,b2b_service,environmental_testing,professional_services > environmental_testing -event_planning,services_and_business > professional_service > event_planning,event_or_party_service,event_planning,professional_services > event_planning -audiovisual_equipment_rental,services_and_business > professional_service > event_planning > audiovisual_equipment_rental,event_or_party_service,audiovisual_equipment_rental,professional_services > event_planning > party_equipment_rental > audiovisual_equipment_rental -balloon_service,services_and_business > professional_service > event_planning > balloon_service,event_or_party_service,balloon_services,professional_services > event_planning > balloon_services -bartender,services_and_business > professional_service > event_planning > bartender,event_or_party_service,bartender,professional_services > event_planning > bartender -boat_charter,services_and_business > professional_service > event_planning > boat_charter,event_or_party_service,boat_charter,professional_services > event_planning > boat_charter -boudoir_photography,services_and_business > professional_service > event_planning > boudoir_photography,photography_service,boudoir_photography,professional_services > event_planning > photographer > boudoir_photography -bounce_house_rental,services_and_business > professional_service > event_planning > bounce_house_rental,event_or_party_service,bounce_house_rental,professional_services > event_planning > party_equipment_rental > bounce_house_rental -caricature,services_and_business > professional_service > event_planning > caricature,event_or_party_service,caricature,professional_services > event_planning > caricature -caterer,services_and_business > professional_service > event_planning > caterer,catering_service,caterer,professional_services > event_planning > caterer -clown,services_and_business > professional_service > event_planning > clown,event_or_party_service,clown,professional_services > event_planning > clown -dj_service,services_and_business > professional_service > event_planning > dj_service,dj_service,dj_service,professional_services > event_planning > dj_service -event_photography,services_and_business > professional_service > event_planning > event_photography,photography_service,event_photography,professional_services > event_planning > photographer > event_photography -event_technology_service,services_and_business > professional_service > event_planning > event_technology_service,event_or_party_service,event_technology_service,professional_services > event_planning > event_technology_service -face_painting,services_and_business > professional_service > event_planning > face_painting,event_or_party_service,face_painting,professional_services > event_planning > face_painting -floral_designer,services_and_business > professional_service > event_planning > floral_designer,event_or_party_service,floral_designer,professional_services > event_planning > floral_designer -game_truck_rental,services_and_business > professional_service > event_planning > game_truck_rental,event_or_party_service,game_truck_rental,professional_services > event_planning > game_truck_rental -golf_cart_rental,services_and_business > professional_service > event_planning > golf_cart_rental,event_or_party_service,golf_cart_rental,professional_services > event_planning > golf_cart_rental -henna_artist,services_and_business > professional_service > event_planning > henna_artist,event_or_party_service,henna_artist,professional_services > event_planning > henna_artist -karaoke_rental,services_and_business > professional_service > event_planning > karaoke_rental,event_or_party_service,karaoke_rental,professional_services > event_planning > party_equipment_rental > karaoke_rental -kids_recreation_and_party,services_and_business > professional_service > event_planning > kids_recreation_and_party,childrens_party_service,kids_recreation_and_party,professional_services > event_planning > kids_recreation_and_party -magician,services_and_business > professional_service > event_planning > magician,event_or_party_service,magician,professional_services > event_planning > magician -mohel,services_and_business > professional_service > event_planning > mohel,event_or_party_service,mohel,professional_services > event_planning > mohel -musician,services_and_business > professional_service > event_planning > musician,event_or_party_service,musician,professional_services > event_planning > musician -officiating_service,services_and_business > professional_service > event_planning > officiating_service,event_or_party_service,officiating_services,professional_services > event_planning > officiating_services -party_and_event_planning,services_and_business > professional_service > event_planning > party_and_event_planning,event_or_party_service,party_and_event_planning,professional_services > event_planning > party_and_event_planning -party_bike_rental,services_and_business > professional_service > event_planning > party_bike_rental,event_or_party_service,party_bike_rental,professional_services > event_planning > party_bike_rental -party_bus_rental,services_and_business > professional_service > event_planning > party_bus_rental,event_or_party_service,party_bus_rental,professional_services > event_planning > party_bus_rental -party_character,services_and_business > professional_service > event_planning > party_character,event_or_party_service,party_character,professional_services > event_planning > party_character -party_equipment_rental,services_and_business > professional_service > event_planning > party_equipment_rental,event_or_party_service,party_equipment_rental,professional_services > event_planning > party_equipment_rental -personal_chef,services_and_business > professional_service > event_planning > personal_chef,event_or_party_service,personal_chef,professional_services > event_planning > personal_chef -photo_booth_rental,services_and_business > professional_service > event_planning > photo_booth_rental,event_or_party_service,photo_booth_rental,professional_services > event_planning > photo_booth_rental -photographer,services_and_business > professional_service > event_planning > photographer,photography_service,photographer,professional_services > event_planning > photographer -session_photography,services_and_business > professional_service > event_planning > session_photography,photography_service,session_photography,professional_services > event_planning > photographer > session_photography -silent_disco,services_and_business > professional_service > event_planning > silent_disco,event_or_party_service,silent_disco,professional_services > event_planning > silent_disco -sommelier_service,services_and_business > professional_service > event_planning > sommelier_service,event_or_party_service,sommelier_service,professional_services > event_planning > sommelier_service -team_building_activity,services_and_business > professional_service > event_planning > team_building_activity,event_or_party_service,team_building_activity,professional_services > event_planning > team_building_activity -trivia_host,services_and_business > professional_service > event_planning > trivia_host,event_or_party_service,trivia_host,professional_services > event_planning > trivia_host -valet_service,services_and_business > professional_service > event_planning > valet_service,event_or_party_service,valet_service,professional_services > event_planning > valet_service -videographer,services_and_business > professional_service > event_planning > videographer,event_or_party_service,videographer,professional_services > event_planning > videographer -wedding_chapel,services_and_business > professional_service > event_planning > wedding_chapel,event_or_party_service,wedding_chapel,professional_services > event_planning > wedding_chapel -wedding_planning,services_and_business > professional_service > event_planning > wedding_planning,wedding_service,wedding_planning,professional_services > event_planning > wedding_planning -farm_equipment_repair_service,services_and_business > professional_service > farm_equipment_repair_service,agricultural_service,farm_equipment_repair_service,professional_services > farm_equipment_repair_service -feng_shui,services_and_business > professional_service > feng_shui,home_service,feng_shui,professional_services > feng_shui -fingerprinting_service,services_and_business > professional_service > fingerprinting_service,b2b_service,fingerprinting_service,professional_services > fingerprinting_service -food_and_beverage_consultant,services_and_business > professional_service > food_and_beverage_consultant,b2b_service,food_and_beverage_consultant,professional_services > food_and_beverage_consultant -forestry_service,services_and_business > professional_service > forestry_service,b2b_service,forestry_service,professional_services > forestry_service -fortune_telling_service,services_and_business > professional_service > fortune_telling_service,event_or_party_service,fortune_telling_service,professional_services > fortune_telling_service -funeral_service,services_and_business > professional_service > funeral_service,funeral_service,funeral_services_and_cemeteries,professional_services > funeral_services_and_cemeteries -cremation_service,services_and_business > professional_service > funeral_service > cremation_service,funeral_service,cremation_services,professional_services > funeral_services_and_cemeteries > cremation_services -mortuary_service,services_and_business > professional_service > funeral_service > mortuary_service,funeral_service,mortuary_services,professional_services > funeral_services_and_cemeteries > mortuary_services -furniture_rental_service,services_and_business > professional_service > furniture_rental_service,home_service,furniture_rental_service,professional_services > furniture_rental_service -furniture_repair,services_and_business > professional_service > furniture_repair,home_service,furniture_repair,professional_services > furniture_repair -furniture_reupholstery,services_and_business > professional_service > furniture_reupholstery,home_service,furniture_reupholstery,professional_services > furniture_reupholstery -genealogist,services_and_business > professional_service > genealogist,educational_service,genealogists,professional_services > genealogists -generator_installation_repair,services_and_business > professional_service > generator_installation_repair,b2b_service,generator_installation_repair,professional_services > generator_installation_repair -goldsmith,services_and_business > professional_service > goldsmith,specialty_store,goldsmith,professional_services > goldsmith -graphic_designer,services_and_business > professional_service > graphic_designer,graphic_design_service,graphic_designer,professional_services > graphic_designer -gunsmith,services_and_business > professional_service > gunsmith,specialty_store,gunsmith,professional_services > gunsmith -hazardous_waste_disposal,services_and_business > professional_service > hazardous_waste_disposal,b2b_service,hazardous_waste_disposal,professional_services > hazardous_waste_disposal -hydraulic_repair_service,services_and_business > professional_service > hydraulic_repair_service,b2b_service,hydraulic_repair_service,professional_services > hydraulic_repair_service -hydro_jetting,services_and_business > professional_service > hydro_jetting,plumbing_service,hydro_jetting,professional_services > hydro_jetting -immigration_assistance_service,services_and_business > professional_service > immigration_assistance_service,social_or_community_service,immigration_assistance_services,professional_services > immigration_assistance_services -indoor_landscaping,services_and_business > professional_service > indoor_landscaping,landscaping_gardening_service,indoor_landscaping,professional_services > indoor_landscaping -internet_marketing_service,services_and_business > professional_service > internet_marketing_service,business_advertising_marketing,internet_marketing_service,professional_services > internet_marketing_service -internet_service_provider,services_and_business > professional_service > internet_service_provider,internet_service_provider,internet_service_provider,professional_services > internet_service_provider -web_hosting_service,services_and_business > professional_service > internet_service_provider > web_hosting_service,internet_service_provider,web_hosting_service,professional_services > internet_service_provider > web_hosting_service -it_service_and_computer_repair,services_and_business > professional_service > it_service_and_computer_repair,technical_service,it_service_and_computer_repair,professional_services > it_service_and_computer_repair -it_service_and_computer_repair,services_and_business > professional_service > it_service_and_computer_repair,technical_service,it_support_and_service,professional_services > it_service_and_computer_repair > it_support_and_service -data_recovery,services_and_business > professional_service > it_service_and_computer_repair > data_recovery,technical_service,data_recovery,professional_services > it_service_and_computer_repair > data_recovery -it_consultant,services_and_business > professional_service > it_service_and_computer_repair > it_consultant,technical_service,it_consultant,professional_services > it_service_and_computer_repair > it_consultant -mobile_phone_repair,services_and_business > professional_service > it_service_and_computer_repair > mobile_phone_repair,electronic_repiar_service,mobile_phone_repair,professional_services > it_service_and_computer_repair > mobile_phone_repair -telecommunications,services_and_business > professional_service > it_service_and_computer_repair > telecommunications,telecommunications_service,telecommunications,professional_services > it_service_and_computer_repair > telecommunications -jewelry_repair_service,services_and_business > professional_service > jewelry_repair_service,personal_service,jewelry_repair_service,professional_services > jewelry_repair_service -junk_removal_and_hauling,services_and_business > professional_service > junk_removal_and_hauling,home_service,junk_removal_and_hauling,professional_services > junk_removal_and_hauling -dumpster_rental,services_and_business > professional_service > junk_removal_and_hauling > dumpster_rental,b2b_service,dumpster_rentals,professional_services > junk_removal_and_hauling > dumpster_rentals -junkyard,services_and_business > professional_service > junkyard,second_hand_shop,junkyard,professional_services > junkyard -knife_sharpening,services_and_business > professional_service > knife_sharpening,home_service,knife_sharpening,professional_services > knife_sharpening -laboratory,services_and_business > professional_service > laboratory,b2b_service,laboratory,professional_services > laboratory -laundry_service,services_and_business > professional_service > laundry_service,laundry_service,laundry_services,professional_services > laundry_services -dry_cleaning,services_and_business > professional_service > laundry_service > dry_cleaning,dry_cleaning_service,dry_cleaning,professional_services > laundry_services > dry_cleaning -laundromat,services_and_business > professional_service > laundry_service > laundromat,laundromat,laundromat,professional_services > laundry_services > laundromat -lawn_mower_repair_service,services_and_business > professional_service > lawn_mower_repair_service,home_service,lawn_mower_repair_service,professional_services > lawn_mower_repair_service -lawyer,services_and_business > professional_service > lawyer,attorney_or_law_firm,lawyer,professional_services > lawyer -appellate_practice_lawyer,services_and_business > professional_service > lawyer > appellate_practice_lawyer,attorney_or_law_firm,appellate_practice_lawyers,professional_services > lawyer > appellate_practice_lawyers -bankruptcy_law,services_and_business > professional_service > lawyer > bankruptcy_law,attorney_or_law_firm,bankruptcy_law,professional_services > lawyer > bankruptcy_law -business_law,services_and_business > professional_service > lawyer > business_law,attorney_or_law_firm,business_law,professional_services > lawyer > business_law -civil_rights_lawyer,services_and_business > professional_service > lawyer > civil_rights_lawyer,attorney_or_law_firm,civil_rights_lawyers,professional_services > lawyer > civil_rights_lawyers -contract_law,services_and_business > professional_service > lawyer > contract_law,attorney_or_law_firm,contract_law,professional_services > lawyer > contract_law -criminal_defense_law,services_and_business > professional_service > lawyer > criminal_defense_law,attorney_or_law_firm,criminal_defense_law,professional_services > lawyer > criminal_defense_law -disability_law,services_and_business > professional_service > lawyer > disability_law,attorney_or_law_firm,disability_law,professional_services > lawyer > disability_law -divorce_and_family_law,services_and_business > professional_service > lawyer > divorce_and_family_law,attorney_or_law_firm,divorce_and_family_law,professional_services > lawyer > divorce_and_family_law -dui_law,services_and_business > professional_service > lawyer > dui_law,attorney_or_law_firm,dui_law,professional_services > lawyer > dui_law -employment_law,services_and_business > professional_service > lawyer > employment_law,attorney_or_law_firm,employment_law,professional_services > lawyer > employment_law -entertainment_law,services_and_business > professional_service > lawyer > entertainment_law,attorney_or_law_firm,entertainment_law,professional_services > lawyer > entertainment_law -estate_planning_law,services_and_business > professional_service > lawyer > estate_planning_law,attorney_or_law_firm,estate_planning_law,professional_services > lawyer > estate_planning_law -general_litigation,services_and_business > professional_service > lawyer > general_litigation,attorney_or_law_firm,general_litigation,professional_services > lawyer > general_litigation -immigration_law,services_and_business > professional_service > lawyer > immigration_law,attorney_or_law_firm,immigration_law,professional_services > lawyer > immigration_law -ip_and_internet_law,services_and_business > professional_service > lawyer > ip_and_internet_law,attorney_or_law_firm,ip_and_internet_law,professional_services > lawyer > ip_and_internet_law -medical_law,services_and_business > professional_service > lawyer > medical_law,attorney_or_law_firm,medical_law,professional_services > lawyer > medical_law -paralegal_service,services_and_business > professional_service > lawyer > paralegal_service,paralegal_service,paralegal_services,professional_services > lawyer > paralegal_services -personal_injury_law,services_and_business > professional_service > lawyer > personal_injury_law,attorney_or_law_firm,personal_injury_law,professional_services > lawyer > personal_injury_law -real_estate_law,services_and_business > professional_service > lawyer > real_estate_law,attorney_or_law_firm,real_estate_law,professional_services > lawyer > real_estate_law -social_security_law,services_and_business > professional_service > lawyer > social_security_law,attorney_or_law_firm,social_security_law,professional_services > lawyer > social_security_law -tax_law,services_and_business > professional_service > lawyer > tax_law,attorney_or_law_firm,tax_law,professional_services > lawyer > tax_law -traffic_ticketing_law,services_and_business > professional_service > lawyer > traffic_ticketing_law,attorney_or_law_firm,traffic_ticketing_law,professional_services > lawyer > traffic_ticketing_law -wills_trusts_and_probate,services_and_business > professional_service > lawyer > wills_trusts_and_probate,will_trust_probate_service,wills_trusts_and_probate,professional_services > lawyer > estate_planning_law > wills_trusts_and_probate -workers_compensation_law,services_and_business > professional_service > lawyer > workers_compensation_law,attorney_or_law_firm,workers_compensation_law,professional_services > lawyer > workers_compensation_law -legal_service,services_and_business > professional_service > legal_service,legal_service,legal_services,professional_services > legal_services -court_reporter,services_and_business > professional_service > legal_service > court_reporter,legal_service,court_reporter,professional_services > legal_services > court_reporter -process_server,services_and_business > professional_service > legal_service > process_server,legal_service,process_servers,professional_services > legal_services > process_servers -life_coach,services_and_business > professional_service > life_coach,educational_service,life_coach,professional_services > life_coach -lottery_ticket,services_and_business > professional_service > lottery_ticket,specialty_store,lottery_ticket,professional_services > lottery_ticket -machine_and_tool_rental,services_and_business > professional_service > machine_and_tool_rental,technical_service,machine_and_tool_rentals,professional_services > machine_and_tool_rentals -machine_shop,services_and_business > professional_service > machine_shop,machine_shop,machine_shop,professional_services > machine_shop -mailbox_center,services_and_business > professional_service > mailbox_center,shipping_delivery_service,mailbox_center,professional_services > mailbox_center -marketing_agency,services_and_business > professional_service > marketing_agency,business_advertising_marketing,marketing_agency,professional_services > marketing_agency -matchmaker,services_and_business > professional_service > matchmaker,personal_service,matchmaker,professional_services > matchmaker -mediator,services_and_business > professional_service > mediator,b2b_service,mediator,professional_services > mediator -merchandising_service,services_and_business > professional_service > merchandising_service,business_advertising_marketing,merchandising_service,professional_services > merchandising_service -metal_detector_service,services_and_business > professional_service > metal_detector_service,technical_service,metal_detector_services,professional_services > metal_detector_services -misting_system_service,services_and_business > professional_service > misting_system_service,home_service,misting_system_services,professional_services > misting_system_services -mobility_equipment_service,services_and_business > professional_service > mobility_equipment_service,technical_service,mobility_equipment_services,professional_services > mobility_equipment_services -mooring_service,services_and_business > professional_service > mooring_service,b2b_service,mooring_service,professional_services > mooring_service -music_production_service,services_and_business > professional_service > music_production_service,media_service,music_production_services,professional_services > music_production_services -musical_instrument_service,services_and_business > professional_service > musical_instrument_service,media_service,musical_instrument_services,professional_services > musical_instrument_services -piano_service,services_and_business > professional_service > musical_instrument_service > piano_service,media_service,piano_services,professional_services > musical_instrument_services > piano_services -vocal_coach,services_and_business > professional_service > musical_instrument_service > vocal_coach,media_service,vocal_coach,professional_services > musical_instrument_services > vocal_coach -nanny_service,services_and_business > professional_service > nanny_service,family_service,nanny_services,professional_services > nanny_services -notary_public,services_and_business > professional_service > notary_public,notary_public,notary_public,professional_services > notary_public -package_locker,services_and_business > professional_service > package_locker,shipping_delivery_service,package_locker,professional_services > package_locker -packaging_contractors_and_service,services_and_business > professional_service > packaging_contractors_and_service,b2b_service,packaging_contractors_and_service,professional_services > packaging_contractors_and_service -patent_law,services_and_business > professional_service > patent_law,legal_service,patent_law,professional_services > patent_law -payroll_service,services_and_business > professional_service > payroll_service,human_resource_service,payroll_services,professional_services > payroll_services -personal_assistant,services_and_business > professional_service > personal_assistant,personal_service,personal_assistant,professional_services > personal_assistant -pest_control_service,services_and_business > professional_service > pest_control_service,pest_control_service,pest_control_service,professional_services > pest_control_service -powder_coating_service,services_and_business > professional_service > powder_coating_service,b2b_service,powder_coating_service,professional_services > powder_coating_service -printing_service,services_and_business > professional_service > printing_service,printing_service,printing_services,professional_services > printing_services -private_investigation,services_and_business > professional_service > private_investigation,legal_service,private_investigation,professional_services > private_investigation -product_design,services_and_business > professional_service > product_design,engineering_service,product_design,professional_services > product_design -public_adjuster,services_and_business > professional_service > public_adjuster,insurance_agency,public_adjuster,professional_services > public_adjuster -public_relations,services_and_business > professional_service > public_relations,business_management_service,public_relations,professional_services > public_relations -record_label,services_and_business > professional_service > record_label,media_service,record_label,professional_services > record_label -recording_and_rehearsal_studio,services_and_business > professional_service > recording_and_rehearsal_studio,media_service,recording_and_rehearsal_studio,professional_services > recording_and_rehearsal_studio -recycling_center,services_and_business > professional_service > recycling_center,recycling_center,recycling_center,professional_services > recycling_center -sandblasting_service,services_and_business > professional_service > sandblasting_service,b2b_service,sandblasting_service,professional_services > sandblasting_service -screen_printing_t_shirt_printing,services_and_business > professional_service > screen_printing_t_shirt_printing,printing_service,screen_printing_t_shirt_printing,professional_services > screen_printing_t_shirt_printing -security_service,services_and_business > professional_service > security_service,security_service,security_services,professional_services > security_services -septic_service,services_and_business > professional_service > septic_service,home_service,septic_services,professional_services > septic_services -sewing_and_alterations,services_and_business > professional_service > sewing_and_alterations,clothing_alteration_service,sewing_and_alterations,professional_services > sewing_and_alterations -tailor,services_and_business > professional_service > sewing_and_alterations > tailor,personal_service,gents_tailor,professional_services > sewing_and_alterations > gents_tailor -shipping_center,services_and_business > professional_service > shipping_center,shipping_center,shipping_center,professional_services > shipping_center -shoe_repair,services_and_business > professional_service > shoe_repair,personal_service,shoe_repair,professional_services > shoe_repair -shoe_shining_service,services_and_business > professional_service > shoe_shining_service,personal_service,shoe_shining_service,professional_services > shoe_shining_service -shredding_service,services_and_business > professional_service > shredding_service,media_service,shredding_services,professional_services > shredding_services -sign_making,services_and_business > professional_service > sign_making,sign_making_service,sign_making,professional_services > sign_making -snow_removal_service,services_and_business > professional_service > snow_removal_service,home_service,snow_removal_service,professional_services > snow_removal_service -snuggle_service,services_and_business > professional_service > snuggle_service,personal_service,snuggle_service,professional_services > snuggle_service -social_media_agency,services_and_business > professional_service > social_media_agency,media_service,social_media_agency,professional_services > social_media_agency -software_development,services_and_business > professional_service > software_development,software_development,software_development,professional_services > software_development -storage_facility,services_and_business > professional_service > storage_facility,storage_facility,storage_facility,professional_services > storage_facility -boat_storage_facility,services_and_business > professional_service > storage_facility > boat_storage_facility,storage_facility,boat_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > boat_storage_facility -rv_and_boat_storage_facility,services_and_business > professional_service > storage_facility > rv_and_boat_storage_facility,storage_facility,rv_and_boat_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility -rv_storage_facility,services_and_business > professional_service > storage_facility > rv_storage_facility,storage_facility,rv_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > rv_storage_facility -self_storage_facility,services_and_business > professional_service > storage_facility > self_storage_facility,self_storage_facility,self_storage_facility,professional_services > storage_facility > self_storage_facility -talent_agency,services_and_business > professional_service > talent_agency,human_resource_service,talent_agency,professional_services > talent_agency -taxidermist,services_and_business > professional_service > taxidermist,personal_service,taxidermist,professional_services > taxidermist -telephone_service,services_and_business > professional_service > telephone_service,technical_service,telephone_services,professional_services > telephone_services -tenant_and_eviction_law,services_and_business > professional_service > tenant_and_eviction_law,legal_service,tenant_and_eviction_law,professional_services > tenant_and_eviction_law -translation_service,services_and_business > professional_service > translation_service,media_service,translation_services,professional_services > translation_services -tv_mounting,services_and_business > professional_service > tv_mounting,technical_service,tv_mounting,professional_services > tv_mounting -typing_service,services_and_business > professional_service > typing_service,media_service,typing_services,professional_services > typing_services -video_film_production,services_and_business > professional_service > video_film_production,media_service,video_film_production,professional_services > video_film_production -watch_repair_service,services_and_business > professional_service > watch_repair_service,personal_service,watch_repair_service,professional_services > watch_repair_service -water_delivery,services_and_business > professional_service > water_delivery,home_service,water_delivery,professional_services > water_delivery -web_designer,services_and_business > professional_service > web_designer,web_design_service,web_designer,professional_services > web_designer -well_drilling,services_and_business > professional_service > well_drilling,home_service,well_drilling,professional_services > well_drilling -wildlife_control,services_and_business > professional_service > wildlife_control,home_service,wildlife_control,professional_services > wildlife_control -writing_service,services_and_business > professional_service > writing_service,media_service,writing_service,professional_services > writing_service -real_estate,services_and_business > real_estate,real_estate_service,real_estate,real_estate -apartment,services_and_business > real_estate > apartment,apartment_building,apartments,real_estate > apartments -art_space_rental,services_and_business > real_estate > art_space_rental,artspace,art_space_rental,real_estate > art_space_rental -builder,services_and_business > real_estate > builder,building_contractor_service,builders,real_estate > builders -home_developer,services_and_business > real_estate > builder > home_developer,real_estate_developer,home_developer,real_estate > builders > home_developer -commercial_real_estate,services_and_business > real_estate > commercial_real_estate,b2b_service,commercial_real_estate,real_estate > commercial_real_estate -condominium,services_and_business > real_estate > condominium,housing,condominium,real_estate > condominium -display_home_center,services_and_business > real_estate > display_home_center,real_estate_service,display_home_center,real_estate > display_home_center -estate_liquidation,services_and_business > real_estate > estate_liquidation,real_estate_service,estate_liquidation,real_estate > estate_liquidation -holiday_park,services_and_business > real_estate > holiday_park,resort,holiday_park,real_estate > holiday_park -home_staging,services_and_business > real_estate > home_staging,real_estate_service,home_staging,real_estate > home_staging -homeowner_association,services_and_business > real_estate > homeowner_association,home_service,homeowner_association,real_estate > homeowner_association -housing_cooperative,services_and_business > real_estate > housing_cooperative,social_or_community_service,housing_cooperative,real_estate > housing_cooperative -kitchen_incubator,services_and_business > real_estate > kitchen_incubator,real_estate_service,kitchen_incubator,real_estate > kitchen_incubator -mobile_home_dealer,services_and_business > real_estate > mobile_home_dealer,housing,mobile_home_dealer,real_estate > mobile_home_dealer -mobile_home_park,services_and_business > real_estate > mobile_home_park,housing,mobile_home_park,real_estate > mobile_home_park -mortgage_broker,services_and_business > real_estate > mortgage_broker,loan_provider,mortgage_broker,real_estate > mortgage_broker -property_management,services_and_business > real_estate > property_management,property_management_service,property_management,real_estate > property_management -real_estate_agent,services_and_business > real_estate > real_estate_agent,real_estate_agency,real_estate_agent,real_estate > real_estate_agent -apartment_agent,services_and_business > real_estate > real_estate_agent > apartment_agent,property_management_service,apartment_agent,real_estate > real_estate_agent > apartment_agent -real_estate_investment,services_and_business > real_estate > real_estate_investment,financial_service,real_estate_investment,real_estate > real_estate_investment -real_estate_service,services_and_business > real_estate > real_estate_service,real_estate_service,real_estate_service,real_estate > real_estate_service -escrow_service,services_and_business > real_estate > real_estate_service > escrow_service,real_estate_service,escrow_services,real_estate > real_estate_service > escrow_services -land_surveying,services_and_business > real_estate > real_estate_service > land_surveying,real_estate_service,land_surveying,real_estate > real_estate_service > land_surveying -real_estate_photography,services_and_business > real_estate > real_estate_service > real_estate_photography,real_estate_service,real_estate_photography,real_estate > real_estate_service > real_estate_photography -rental_service,services_and_business > real_estate > real_estate_service > rental_service,property_management_service,rental_services,real_estate > real_estate_service > rental_services -rental_service,services_and_business > real_estate > real_estate_service > rental_service,vehicle_service,rental_service,travel > rental_service -clothing_rental,services_and_business > real_estate > real_estate_service > rental_service > clothing_rental,clothing_store,clothing_rental,retail > shopping > fashion > clothing_store > clothing_rental -rental_kiosk,services_and_business > real_estate > real_estate_service > rental_service > rental_kiosk,specialty_store,rental_kiosks,retail > shopping > rental_kiosks -vehicle_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service,vehicle_service,, -car_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service > car_rental_service,auto_rental_service,car_rental_agency,travel > rental_service > car_rental_agency -motorcycle_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service > motorcycle_rental_service,vehicle_service,motorcycle_rentals,travel > rental_service > motorcycle_rentals -rv_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service > rv_rental_service,vehicle_service,rv_rentals,travel > rental_service > rv_rentals -trailer_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service > trailer_rental_service,vehicle_service,trailer_rentals,travel > rental_service > trailer_rentals -truck_rental_service,services_and_business > real_estate > real_estate_service > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,truck_rentals,travel > rental_service > truck_rentals -shared_office_space,services_and_business > real_estate > shared_office_space,real_estate_service,shared_office_space,real_estate > shared_office_space -university_housing,services_and_business > real_estate > university_housing,housing,university_housing,real_estate > university_housing -studio_taping,services_and_business > studio_taping,entertainment_location,studio_taping,arts_and_entertainment > studio_taping -shopping,shopping,retail_location,shopping,retail > shopping -shopping,shopping,retail_location,back_shop,retail > food > back_shop -shopping,shopping,retail_location,concept_shop,retail > shopping > concept_shop -shopping,shopping,retail_location,retail,retail -convenience_store,shopping > convenience_store,convenience_store,convenience_store,retail > shopping > convenience_store -department_store,shopping > department_store,department_store,department_store,retail > shopping > department_store -discount_store,shopping > discount_store,discount_store,discount_store,retail > shopping > discount_store -fashion_and_apparel_store,shopping > fashion_and_apparel_store,fashion_or_apparel_store,fashion,retail > shopping > fashion -clothing_store,shopping > fashion_and_apparel_store > clothing_store,clothing_store,clothing_store,retail > shopping > fashion > clothing_store -clothing_store,shopping > fashion_and_apparel_store > clothing_store,clothing_store,ceremonial_clothing,retail > shopping > fashion > clothing_store > ceremonial_clothing -clothing_store,shopping > fashion_and_apparel_store > clothing_store,clothing_store,stocking,retail > shopping > fashion > stocking -bridal_shop,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,clothing_store,bridal_shop,retail > shopping > bridal_shop -childrens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,clothing_store,childrens_clothing_store,retail > shopping > fashion > clothing_store > childrens_clothing_store -custom_clothing_store,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,clothing_store,custom_clothing,retail > shopping > custom_clothing -denim_wear_store,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,clothing_store,denim_wear_store,retail > shopping > fashion > clothing_store > denim_wear_store -designer_clothing,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,clothing_store,designer_clothing,retail > shopping > fashion > clothing_store > designer_clothing -formal_wear_store,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,clothing_store,formal_wear_store,retail > shopping > fashion > clothing_store > formal_wear_store -fur_clothing,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,clothing_store,fur_clothing,retail > shopping > fashion > clothing_store > fur_clothing -lingerie_store,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,clothing_store,lingerie_store,retail > shopping > fashion > clothing_store > lingerie_store -maternity_wear,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,clothing_store,maternity_wear,retail > shopping > fashion > clothing_store > maternity_wear -mens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,clothing_store,mens_clothing_store,retail > shopping > fashion > clothing_store > mens_clothing_store -plus_size_clothing_store,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,clothing_store,plus_size_clothing,retail > shopping > fashion > plus_size_clothing -sleepwear,shopping > fashion_and_apparel_store > clothing_store > sleepwear,clothing_store,sleepwear,retail > shopping > fashion > sleepwear -t_shirt_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,clothing_store,t_shirt_store,retail > shopping > fashion > clothing_store > t_shirt_store -custom_t_shirt_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,clothing_store,custom_t_shirt_store,retail > shopping > fashion > clothing_store > t_shirt_store -traditional_clothing,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,clothing_store,traditional_clothing,retail > shopping > fashion > clothing_store > traditional_clothing -saree_shop,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,clothing_store,saree_shop,retail > shopping > fashion > saree_shop -uniform_store,shopping > fashion_and_apparel_store > clothing_store > uniform_store,clothing_store,uniform_store,retail > shopping > uniform_store -womens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,clothing_store,womens_clothing_store,retail > shopping > fashion > clothing_store > womens_clothing_store -eyewear_store,shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,eyewear_and_optician,retail > shopping > eyewear_and_optician -sunglasses_store,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,eyewear_store,sunglasses_store,retail > shopping > eyewear_and_optician > sunglasses_store -fashion_accessories_store,shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_or_apparel_store,fashion_accessories_store,retail > shopping > fashion > fashion_accessories_store -handbag_store,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,fashion_or_apparel_store,handbag_stores,retail > shopping > fashion > fashion_accessories_store > handbag_stores -hat_store,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,fashion_or_apparel_store,hat_shop,retail > shopping > fashion > hat_shop -fashion_boutique,shopping > fashion_and_apparel_store > fashion_boutique,fashion_or_apparel_store,boutique,retail > shopping > boutique -jewelry_store,shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,jewelry_store,retail > shopping > jewelry_store -watch_store,shopping > fashion_and_apparel_store > jewelry_store > watch_store,jewelry_store,watch_store,retail > shopping > watch_store -shoe_store,shopping > fashion_and_apparel_store > shoe_store,shoe_store,shoe_store,retail > shopping > fashion > shoe_store -orthopedic_shoe_store,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,shoe_store,orthopedic_shoe_store,retail > shopping > fashion > shoe_store > orthopedic_shoe_store -food_and_beverage_store,shopping > food_and_beverage_store,food_or_beverage_store,food,retail > food -beer_wine_spirits_store,shopping > food_and_beverage_store > beer_wine_spirits_store,food_or_beverage_store,beer_wine_and_spirits,retail > food > beer_wine_and_spirits -beer_wine_spirits_store,shopping > food_and_beverage_store > beer_wine_spirits_store,food_or_beverage_store,mulled_wine,retail > food > mulled_wine -brewing_supply_store,shopping > food_and_beverage_store > brewing_supply_store,specialty_store,brewing_supply_store,retail > shopping > brewing_supply_store -butcher_shop,shopping > food_and_beverage_store > butcher_shop,butcher_shop,butcher_shop,retail > food > butcher_shop -butcher_shop,shopping > food_and_beverage_store > butcher_shop,butcher_shop,meat_shop,retail > meat_shop -cheese_shop,shopping > food_and_beverage_store > cheese_shop,food_or_beverage_store,cheese_shop,retail > food > cheese_shop -coffee_and_tea_supplies,shopping > food_and_beverage_store > coffee_and_tea_supplies,food_or_beverage_store,coffee_and_tea_supplies,retail > food > coffee_and_tea_supplies -csa_farm,shopping > food_and_beverage_store > csa_farm,food_or_beverage_store,csa_farm,retail > food > csa_farm -fishmonger,shopping > food_and_beverage_store > fishmonger,food_or_beverage_store,fishmonger,retail > food > fishmonger -food_delivery_service,shopping > food_and_beverage_store > food_delivery_service,food_delivery_service,food_delivery_service,retail > food > food_delivery_service -pizza_delivery_service,shopping > food_and_beverage_store > food_delivery_service > pizza_delivery_service,pizzaria,pizza_delivery_service,retail > food > food_delivery_service > pizza_delivery_service -grocery_store,shopping > food_and_beverage_store > grocery_store,grocery_store,grocery_store,retail > shopping > grocery_store -grocery_store,shopping > food_and_beverage_store > grocery_store,grocery_store,specialty_grocery_store,retail > shopping > grocery_store > specialty_grocery_store -grocery_store,shopping > food_and_beverage_store > grocery_store,grocery_store,supermarket,retail > shopping > supermarket -asian_grocery_store,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,grocery_store,asian_grocery_store,retail > shopping > grocery_store > asian_grocery_store -ethical_grocery_store,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,grocery_store,ethical_grocery,retail > shopping > grocery_store > ethical_grocery -indian_grocery_store,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,grocery_store,indian_grocery_store,retail > shopping > grocery_store > indian_grocery_store -international_grocery_store,shopping > food_and_beverage_store > grocery_store > international_grocery_store,grocery_store,international_grocery_store,retail > shopping > international_grocery_store -japanese_grocery_store,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,grocery_store,japanese_grocery_store,retail > shopping > grocery_store > japanese_grocery_store -korean_grocery_store,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,grocery_store,korean_grocery_store,retail > shopping > grocery_store > korean_grocery_store -kosher_grocery_store,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,grocery_store,kosher_grocery_store,retail > shopping > grocery_store > kosher_grocery_store -mexican_grocery_store,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,grocery_store,mexican_grocery_store,retail > shopping > grocery_store > mexican_grocery_store -organic_grocery_store,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,grocery_store,organic_grocery_store,retail > shopping > grocery_store > organic_grocery_store -russian_grocery_store,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,grocery_store,russian_grocery_store,retail > shopping > grocery_store > russian_grocery_store -health_food_store,shopping > food_and_beverage_store > health_food_store,grocery_store,health_food_store,retail > food > health_food_store -herb_and_spice_store,shopping > food_and_beverage_store > herb_and_spice_store,food_or_beverage_store,herb_and_spice_shop,retail > herb_and_spice_shop -herb_and_spice_store,shopping > food_and_beverage_store > herb_and_spice_store,food_or_beverage_store,herbal_shop,retail > shopping > herbal_shop -honey_farm_shop,shopping > food_and_beverage_store > honey_farm_shop,food_or_beverage_store,honey_farm_shop,retail > honey_farm_shop -imported_food_store,shopping > food_and_beverage_store > imported_food_store,food_or_beverage_store,imported_food,retail > food > imported_food -liquor_store,shopping > food_and_beverage_store > liquor_store,liquor_store,liquor_store,retail > food > liquor_store -olive_oil_store,shopping > food_and_beverage_store > olive_oil_store,food_or_beverage_store,olive_oil,retail > olive_oil -patisserie_cake_shop,shopping > food_and_beverage_store > patisserie_cake_shop,food_or_beverage_store,patisserie_cake_shop,retail > food > patisserie_cake_shop -patisserie_cake_shop,shopping > food_and_beverage_store > patisserie_cake_shop,food_or_beverage_store,chimney_cake_shop,retail > food > patisserie_cake_shop > chimney_cake_shop -custom_cakes_shop,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,food_or_beverage_store,custom_cakes_shop,retail > food > patisserie_cake_shop > custom_cakes_shop -pick_your_own_farm,shopping > food_and_beverage_store > pick_your_own_farm,farm,pick_your_own_farm,arts_and_entertainment > farm > pick_your_own_farm -seafood_market,shopping > food_and_beverage_store > seafood_market,food_or_beverage_store,seafood_market,retail > seafood_market -smokehouse,shopping > food_and_beverage_store > smokehouse,food_or_beverage_store,smokehouse,retail > food > smokehouse -specialty_foods_store,shopping > food_and_beverage_store > specialty_foods_store,food_or_beverage_store,specialty_foods,retail > food > specialty_foods -dairy_store,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,grocery_store,dairy_stores,retail > shopping > grocery_store > dairy_stores -frozen_foods_store,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,food_or_beverage_store,frozen_foods,retail > food > specialty_foods > frozen_foods -pasta_store,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,food_or_beverage_store,pasta_shop,retail > food > specialty_foods > pasta_shop -produce_store,shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,fruits_and_vegetables,retail > food > fruits_and_vegetables -rice_store,shopping > food_and_beverage_store > specialty_foods_store > rice_store,grocery_store,rice_shop,retail > shopping > grocery_store > rice_shop -tobacco_shop,shopping > food_and_beverage_store > tobacco_shop,specialty_store,tobacco_shop,retail > shopping > tobacco_shop -vitamin_and_supplement_store,shopping > food_and_beverage_store > vitamin_and_supplement_store,specialty_store,vitamins_and_supplements,retail > shopping > vitamins_and_supplements -water_store,shopping > food_and_beverage_store > water_store,food_or_beverage_store,water_store,retail > water_store -kiosk,shopping > kiosk,casual_eatery,kiosk,retail > food > kiosk -market,shopping > market,retail_location,, -farmers_market,shopping > market > farmers_market,farmers_market,farmers_market,retail > shopping > farmers_market -holiday_market,shopping > market > holiday_market,festival_venue,holiday_market,arts_and_entertainment > festival > holiday_market -market_stall,shopping > market > market_stall,specialty_store,market_stall,retail > shopping > market_stall -night_market,shopping > market > night_market,specialty_store,night_market,retail > shopping > night_market -public_market,shopping > market > public_market,retail_location,public_market,retail > shopping > public_market -online_shop,shopping > online_shop,specialty_store,online_shop,retail > shopping > online_shop -outlet_store,shopping > outlet_store,retail_location,outlet_store,retail > shopping > outlet_store -personal_shopper,shopping > personal_shopper,personal_service,personal_shopper,retail > shopping > personal_shopper -second_hand_store,shopping > second_hand_store,second_hand_shop,thrift_store,retail > shopping > thrift_store -antique_store,shopping > second_hand_store > antique_store,antique_shop,antique_store,retail > shopping > antique_store -flea_market,shopping > second_hand_store > flea_market,second_hand_shop,flea_market,retail > shopping > flea_market -second_hand_clothing_store,shopping > second_hand_store > second_hand_clothing_store,second_hand_shop,used_vintage_and_consignment,retail > shopping > fashion > used_vintage_and_consignment -shopping_center,shopping > shopping_center,shopping_mall,shopping_center,retail > shopping > shopping_center -shopping_passage,shopping > shopping_passage,retail_location,shopping_passage,retail > shopping > shopping_passage -specialty_store,shopping > specialty_store,specialty_store,, -adult_store,shopping > specialty_store > adult_store,specialty_store,adult_store,retail > shopping > adult_store -agricultural_seed_store,shopping > specialty_store > agricultural_seed_store,specialty_store,agricultural_seed_store,retail > shopping > agricultural_seed_store -army_and_navy_store,shopping > specialty_store > army_and_navy_store,specialty_store,army_and_navy_store,retail > shopping > army_and_navy_store -arts_and_crafts_store,shopping > specialty_store > arts_and_crafts_store,art_craft_hobby_store,arts_and_crafts,retail > shopping > arts_and_crafts -art_supply_store,shopping > specialty_store > arts_and_crafts_store > art_supply_store,art_craft_hobby_store,art_supply_store,retail > shopping > arts_and_crafts > art_supply_store -atelier,shopping > specialty_store > arts_and_crafts_store > atelier,art_craft_hobby_store,atelier,retail > shopping > arts_and_crafts > atelier -cooking_classes,shopping > specialty_store > arts_and_crafts_store > cooking_classes,art_craft_hobby_store,cooking_classes,retail > shopping > arts_and_crafts > cooking_classes -costume_store,shopping > specialty_store > arts_and_crafts_store > costume_store,art_craft_hobby_store,costume_store,retail > shopping > arts_and_crafts > costume_store -craft_store,shopping > specialty_store > arts_and_crafts_store > craft_store,art_craft_hobby_store,craft_shop,retail > shopping > arts_and_crafts > craft_shop -craft_store,shopping > specialty_store > arts_and_crafts_store > craft_store,art_craft_hobby_store,handicraft_shop,retail > shopping > arts_and_crafts > handicraft_shop -embroidery_and_crochet_store,shopping > specialty_store > arts_and_crafts_store > craft_store > embroidery_and_crochet_store,art_craft_hobby_store,embroidery_and_crochet,retail > shopping > arts_and_crafts > embroidery_and_crochet -knitting_supply_store,shopping > specialty_store > arts_and_crafts_store > craft_store > knitting_supply_store,art_craft_hobby_store,knitting_supply,retail > shopping > knitting_supply -fabric_store,shopping > specialty_store > arts_and_crafts_store > fabric_store,art_craft_hobby_store,fabric_store,retail > shopping > arts_and_crafts > fabric_store -framing_store,shopping > specialty_store > arts_and_crafts_store > framing_store,art_craft_hobby_store,framing_store,retail > shopping > arts_and_crafts > framing_store -hobby_shop,shopping > specialty_store > arts_and_crafts_store > hobby_shop,art_craft_hobby_store,hobby_shop,retail > shopping > hobby_shop -auction_house,shopping > specialty_store > auction_house,specialty_store,auction_house,retail > shopping > auction_house -car_auction,shopping > specialty_store > auction_house > car_auction,specialty_store,car_auction,retail > shopping > auction_house > car_auction -baby_gear_and_furniture_store,shopping > specialty_store > baby_gear_and_furniture_store,specialty_store,baby_gear_and_furniture,retail > shopping > baby_gear_and_furniture -bazaar,shopping > specialty_store > bazaar,specialty_store,bazaars,retail > shopping > bazaars -books_mags_music_video_store,shopping > specialty_store > books_mags_music_video_store,specialty_store,books_mags_music_and_video,retail > shopping > books_mags_music_and_video -bookstore,shopping > specialty_store > books_mags_music_video_store > bookstore,bookstore,bookstore,retail > shopping > books_mags_music_and_video > bookstore -academic_bookstore,shopping > specialty_store > books_mags_music_video_store > bookstore > academic_bookstore,bookstore,academic_bookstore,retail > shopping > books_mags_music_and_video > academic_bookstore -comic_books_store,shopping > specialty_store > books_mags_music_video_store > bookstore > comic_books_store,bookstore,comic_books_store,retail > shopping > books_mags_music_and_video > comic_books_store -used_bookstore,shopping > specialty_store > books_mags_music_video_store > bookstore > used_bookstore,bookstore,used_bookstore,retail > shopping > used_bookstore -music_and_dvd_store,shopping > specialty_store > books_mags_music_video_store > music_and_dvd_store,music_store,music_and_dvd_store,retail > shopping > books_mags_music_and_video > music_and_dvd_store -newspaper_and_magazines_store,shopping > specialty_store > books_mags_music_video_store > newspaper_and_magazines_store,bookstore,newspaper_and_magazines_store,retail > shopping > books_mags_music_and_video > newspaper_and_magazines_store -video_and_video_game_rental,shopping > specialty_store > books_mags_music_video_store > video_and_video_game_rental,specialty_store,video_and_video_game_rentals,retail > shopping > books_mags_music_and_video > video_and_video_game_rentals -video_game_store,shopping > specialty_store > books_mags_music_video_store > video_game_store,electronics_store,video_game_store,retail > shopping > books_mags_music_and_video > video_game_store -vinyl_record_store,shopping > specialty_store > books_mags_music_video_store > vinyl_record_store,music_store,vinyl_record_store,retail > shopping > books_mags_music_and_video > vinyl_record_store -building_supply_store,shopping > specialty_store > building_supply_store,specialty_store,building_supply_store,retail > shopping > building_supply_store -lumber_store,shopping > specialty_store > building_supply_store > lumber_store,specialty_store,lumber_store,retail > shopping > building_supply_store > lumber_store -cannabis_dispensary,shopping > specialty_store > cannabis_dispensary,specialty_store,cannabis_dispensary,retail > shopping > cannabis_dispensary -cards_and_stationery_store,shopping > specialty_store > cards_and_stationery_store,specialty_store,cards_and_stationery_store,retail > shopping > cards_and_stationery_store -carpet_store,shopping > specialty_store > carpet_store,specialty_store,carpet_store,retail > carpet_store -cosmetic_and_beauty_supply_store,shopping > specialty_store > cosmetic_and_beauty_supply_store,specialty_store,cosmetic_and_beauty_supplies,retail > shopping > cosmetic_and_beauty_supplies -hair_supply_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > hair_supply_store,specialty_store,hair_supply_stores,retail > shopping > cosmetic_and_beauty_supplies > hair_supply_stores -wig_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > wig_store,fashion_or_apparel_store,wig_store,retail > shopping > wig_store -customized_merchandise_store,shopping > specialty_store > customized_merchandise_store,specialty_store,customized_merchandise,retail > shopping > customized_merchandise -drugstore,shopping > specialty_store > drugstore,specialty_store,drugstore,retail > drugstore -duty_free_store,shopping > specialty_store > duty_free_store,specialty_store,duty_free_shop,retail > shopping > duty_free_shop -e_cigarette_store,shopping > specialty_store > e_cigarette_store,specialty_store,e_cigarette_store,retail > shopping > e_cigarette_store -educational_supply_store,shopping > specialty_store > educational_supply_store,specialty_store,educational_supply_store,retail > shopping > educational_supply_store -electronics_store,shopping > specialty_store > electronics_store,electronics_store,electronics,retail > shopping > electronics -audio_visual_equipment_store,shopping > specialty_store > electronics_store > audio_visual_equipment_store,electronics_store,audio_visual_equipment_store,retail > shopping > audio_visual_equipment_store -battery_store,shopping > specialty_store > electronics_store > battery_store,electronics_store,battery_store,retail > shopping > battery_store -camera_and_photography_store,shopping > specialty_store > electronics_store > camera_and_photography_store,specialty_store,photography_store_and_services,retail > shopping > photography_store_and_services -computer_store,shopping > specialty_store > electronics_store > computer_store,electronics_store,computer_store,retail > shopping > computer_store -drone_store,shopping > specialty_store > electronics_store > drone_store,specialty_store,drone_store,retail > shopping > drone_store -home_theater_systems_stores,shopping > specialty_store > electronics_store > home_theater_systems_stores,electronics_store,home_theater_systems_stores,retail > shopping > home_theater_systems_stores -mobile_phone_accessory_store,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,electronics_store,mobile_phone_accessories,retail > shopping > mobile_phone_accessories -mobile_phone_store,shopping > specialty_store > electronics_store > mobile_phone_store,electronics_store,mobile_phone_store,retail > shopping > mobile_phone_store -farming_equipment_store,shopping > specialty_store > farming_equipment_store,specialty_store,farming_equipment_store,retail > shopping > farming_equipment_store -firework_store,shopping > specialty_store > firework_store,specialty_store,firework_retailer,retail > shopping > firework_retailer -flooring_store,shopping > specialty_store > flooring_store,specialty_store,flooring_store,retail > flooring_store -flowers_and_gifts_shop,shopping > specialty_store > flowers_and_gifts_shop,flower_shop,flowers_and_gifts_shop,retail > shopping > flowers_and_gifts_shop -florist,shopping > specialty_store > flowers_and_gifts_shop > florist,flower_shop,florist,retail > shopping > flowers_and_gifts_shop > florist -flower_market,shopping > specialty_store > flowers_and_gifts_shop > flower_market,flower_shop,flower_markets,retail > shopping > flower_markets -gift_shop,shopping > specialty_store > flowers_and_gifts_shop > gift_shop,gift_shop,gift_shop,retail > shopping > flowers_and_gifts_shop > gift_shop -gemstone_and_mineral_store,shopping > specialty_store > gemstone_and_mineral_store,specialty_store,gemstone_and_mineral,retail > shopping > gemstone_and_mineral -gun_and_ammo_store,shopping > specialty_store > gun_and_ammo_store,specialty_store,gun_and_ammo,retail > shopping > gun_and_ammo -health_market,shopping > specialty_store > health_market,specialty_store,health_market,retail > health_market -home_and_garden_store,shopping > specialty_store > home_and_garden_store,specialty_store,home_and_garden,retail > shopping > home_and_garden -appliance_store,shopping > specialty_store > home_and_garden_store > appliance_store,specialty_store,appliance_store,retail > shopping > home_and_garden > appliance_store -bedding_and_bath_store,shopping > specialty_store > home_and_garden_store > bedding_and_bath_store,specialty_store,bedding_and_bath_stores,retail > shopping > home_and_garden > bedding_and_bath_stores -candle_store,shopping > specialty_store > home_and_garden_store > candle_store,specialty_store,candle_store,retail > shopping > home_and_garden > candle_store -christmas_tree_store,shopping > specialty_store > home_and_garden_store > christmas_tree_store,specialty_store,christmas_trees,retail > shopping > home_and_garden > christmas_trees -do_it_yourself_store,shopping > specialty_store > home_and_garden_store > do_it_yourself_store,home_improvement_center,do_it_yourself_store,retail > shopping > do_it_yourself_store -electrical_supply_store,shopping > specialty_store > home_and_garden_store > electrical_supply_store,specialty_store,electrical_supply_store,retail > shopping > home_and_garden > electrical_supply_store -furniture_accessory_store,shopping > specialty_store > home_and_garden_store > furniture_accessory_store,specialty_store,furniture_accessory_store,retail > shopping > home_and_garden > furniture_accessory_store -furniture_store,shopping > specialty_store > home_and_garden_store > furniture_store,specialty_store,furniture_store,retail > shopping > home_and_garden > furniture_store -grilling_equipment_store,shopping > specialty_store > home_and_garden_store > grilling_equipment_store,specialty_store,grilling_equipment,retail > shopping > home_and_garden > grilling_equipment -hardware_store,shopping > specialty_store > home_and_garden_store > hardware_store,hardware_store,hardware_store,retail > shopping > home_and_garden > hardware_store -welding_supply_store,shopping > specialty_store > home_and_garden_store > hardware_store > welding_supply_store,specialty_store,welding_supply_store,retail > shopping > home_and_garden > hardware_store > welding_supply_store -holiday_decor_store,shopping > specialty_store > home_and_garden_store > holiday_decor_store,specialty_store,holiday_decor,retail > shopping > home_and_garden > holiday_decor -home_decor_store,shopping > specialty_store > home_and_garden_store > home_decor_store,specialty_store,home_decor,retail > shopping > home_and_garden > home_decor -home_goods_store,shopping > specialty_store > home_and_garden_store > home_goods_store,specialty_store,home_goods_store,retail > shopping > home_and_garden > home_goods_store -home_improvement_store,shopping > specialty_store > home_and_garden_store > home_improvement_store,home_improvement_center,home_improvement_store,retail > shopping > home_and_garden > home_improvement_store -hot_tub_and_pool_store,shopping > specialty_store > home_and_garden_store > hot_tub_and_pool_store,specialty_store,hot_tubs_and_pools,retail > shopping > home_and_garden > hot_tubs_and_pools -kitchen_and_bath_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store,specialty_store,kitchen_and_bath,retail > shopping > home_and_garden > kitchen_and_bath -bathroom_fixture_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,specialty_store,bathroom_fixture_stores,retail > shopping > home_and_garden > kitchen_and_bath > bathroom_fixture_stores -kitchen_supply_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,specialty_store,kitchen_supply_store,retail > shopping > home_and_garden > kitchen_and_bath > kitchen_supply_store -lawn_mower_store,shopping > specialty_store > home_and_garden_store > lawn_mower_store,specialty_store,lawn_mower_store,retail > shopping > home_and_garden > lawn_mower_store -lighting_store,shopping > specialty_store > home_and_garden_store > lighting_store,specialty_store,lighting_store,retail > shopping > home_and_garden > lighting_store -linen_store,shopping > specialty_store > home_and_garden_store > linen_store,specialty_store,linen,retail > shopping > home_and_garden > linen -mattress_store,shopping > specialty_store > home_and_garden_store > mattress_store,specialty_store,mattress_store,retail > shopping > home_and_garden > mattress_store -nursery_and_gardening_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store,specialty_store,nursery_and_gardening,retail > shopping > home_and_garden > nursery_and_gardening -hydroponic_gardening_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,specialty_store,hydroponic_gardening,retail > shopping > home_and_garden > nursery_and_gardening > hydroponic_gardening -outdoor_furniture_store,shopping > specialty_store > home_and_garden_store > outdoor_furniture_store,specialty_store,outdoor_furniture_store,retail > shopping > home_and_garden > outdoor_furniture_store -paint_store,shopping > specialty_store > home_and_garden_store > paint_store,specialty_store,paint_store,retail > shopping > home_and_garden > paint_store -rug_store,shopping > specialty_store > home_and_garden_store > rug_store,specialty_store,rug_store,retail > shopping > home_and_garden > rug_store -tile_store,shopping > specialty_store > home_and_garden_store > tile_store,specialty_store,tile_store,retail > shopping > home_and_garden > tile_store -wallpaper_store,shopping > specialty_store > home_and_garden_store > wallpaper_store,specialty_store,wallpaper_store,retail > shopping > home_and_garden > wallpaper_store -window_treatment_store,shopping > specialty_store > home_and_garden_store > window_treatment_store,specialty_store,window_treatment_store,retail > shopping > home_and_garden > window_treatment_store -woodworking_supply_store,shopping > specialty_store > home_and_garden_store > woodworking_supply_store,specialty_store,woodworking_supply_store,retail > shopping > home_and_garden > woodworking_supply_store -horse_equipment_shop,shopping > specialty_store > horse_equipment_shop,specialty_store,horse_equipment_shop,retail > shopping > horse_equipment_shop -leather_goods_store,shopping > specialty_store > leather_goods_store,fashion_or_apparel_store,leather_goods,retail > shopping > fashion > leather_goods -livestock_feed_and_supply_store,shopping > specialty_store > livestock_feed_and_supply_store,specialty_store,livestock_feed_and_supply_store,retail > shopping > livestock_feed_and_supply_store -luggage_store,shopping > specialty_store > luggage_store,specialty_store,luggage_store,retail > shopping > luggage_store -medical_supply_store,shopping > specialty_store > medical_supply_store,specialty_store,medical_supply,retail > shopping > medical_supply -dental_supply_store,shopping > specialty_store > medical_supply_store > dental_supply_store,specialty_store,dental_supply_store,retail > shopping > medical_supply > dental_supply_store -hearing_aid_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,specialty_store,hearing_aids,retail > shopping > medical_supply > hearing_aids -hearing_aid_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,specialty_store,hearing_aid_provider,retail > hearing_aid_provider -military_surplus_store,shopping > specialty_store > military_surplus_store,specialty_store,military_surplus_store,retail > shopping > military_surplus_store -musical_instrument_store,shopping > specialty_store > musical_instrument_store,specialty_store,musical_instrument_store,retail > shopping > musical_instrument_store -guitar_store,shopping > specialty_store > musical_instrument_store > guitar_store,specialty_store,guitar_store,retail > shopping > guitar_store -piano_store,shopping > specialty_store > musical_instrument_store > piano_store,specialty_store,piano_store,retail > shopping > piano_store -office_equipment,shopping > specialty_store > office_equipment,specialty_store,office_equipment,retail > shopping > office_equipment -packing_supply_store,shopping > specialty_store > packing_supply_store,specialty_store,packing_supply,retail > shopping > packing_supply -party_supply_store,shopping > specialty_store > party_supply_store,specialty_store,party_supply,retail > party_supply -pawn_shop,shopping > specialty_store > pawn_shop,second_hand_shop,pawn_shop,retail > shopping > pawn_shop -pen_store,shopping > specialty_store > pen_store,specialty_store,pen_store,retail > shopping > pen_store -perfume_store,shopping > specialty_store > perfume_store,specialty_store,perfume_store,retail > shopping > perfume_store -pet_store,shopping > specialty_store > pet_store,pet_store,pet_store,retail > shopping > pet_store -aquatic_pet_store,shopping > specialty_store > pet_store > aquatic_pet_store,pet_store,aquatic_pet_store,retail > shopping > pet_store > aquatic_pet_store -bird_shop,shopping > specialty_store > pet_store > bird_shop,pet_store,bird_shop,retail > shopping > pet_store > bird_shop -reptile_shop,shopping > specialty_store > pet_store > reptile_shop,pet_store,reptile_shop,retail > shopping > pet_store > reptile_shop -pharmacy,shopping > specialty_store > pharmacy,pharmacy,pharmacy,retail > pharmacy -pool_and_billiards,shopping > specialty_store > pool_and_billiards,specialty_store,pool_and_billiards,retail > shopping > pool_and_billiards -pop_up_store,shopping > specialty_store > pop_up_store,retail_location,pop_up_shop,retail > shopping > pop_up_shop -props,shopping > specialty_store > props,specialty_store,props,retail > shopping > props -religious_items_store,shopping > specialty_store > religious_items_store,specialty_store,religious_items,retail > shopping > religious_items -safe_store,shopping > specialty_store > safe_store,specialty_store,safe_store,retail > shopping > safe_store -safety_equipment_store,shopping > specialty_store > safety_equipment_store,specialty_store,safety_equipment,retail > shopping > safety_equipment -souvenir_store,shopping > specialty_store > souvenir_store,gift_shop,souvenir_shop,retail > shopping > souvenir_shop -spiritual_items_store,shopping > specialty_store > spiritual_items_store,specialty_store,spiritual_shop,retail > shopping > spiritual_shop -sporting_goods_store,shopping > specialty_store > sporting_goods_store,sporting_goods_store,sporting_goods,retail > shopping > sporting_goods -archery_store,shopping > specialty_store > sporting_goods_store > archery_store,sporting_goods_store,archery_shop,retail > shopping > sporting_goods > archery_shop -bike_store,shopping > specialty_store > sporting_goods_store > bike_store,sporting_goods_store,bicycle_shop,retail > shopping > sporting_goods > bicycle_shop -dive_store,shopping > specialty_store > sporting_goods_store > dive_store,sporting_goods_store,dive_shop,retail > shopping > sporting_goods > dive_shop -fitness_exercise_store,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,sporting_goods_store,fitness_exercise_equipment,retail > shopping > fitness_exercise_equipment -golf_equipment_store,shopping > specialty_store > sporting_goods_store > golf_equipment_store,sporting_goods_store,golf_equipment,retail > shopping > sporting_goods > golf_equipment -hockey_equipment_store,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,sporting_goods_store,hockey_equipment,retail > shopping > sporting_goods > hockey_equipment -hunting_and_fishing_store,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,sporting_goods_store,hunting_and_fishing_supplies,retail > shopping > sporting_goods > hunting_and_fishing_supplies -outdoor_store,shopping > specialty_store > sporting_goods_store > outdoor_store,sporting_goods_store,outdoor_gear,retail > shopping > sporting_goods > outdoor_gear -skate_store,shopping > specialty_store > sporting_goods_store > skate_store,sporting_goods_store,skate_shop,retail > shopping > sporting_goods > skate_shop -ski_and_snowboard_store,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,sporting_goods_store,ski_and_snowboard_shop,retail > shopping > sporting_goods > ski_and_snowboard_shop -sportswear_store,shopping > specialty_store > sporting_goods_store > sportswear_store,sporting_goods_store,sports_wear,retail > shopping > sporting_goods > sports_wear -dancewear_store,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,sporting_goods_store,dance_wear,retail > shopping > sporting_goods > sports_wear > dance_wear -surf_store,shopping > specialty_store > sporting_goods_store > surf_store,sporting_goods_store,surf_shop,retail > shopping > sporting_goods > surf_shop -swimwear_store,shopping > specialty_store > sporting_goods_store > swimwear_store,sporting_goods_store,swimwear_store,retail > shopping > sporting_goods > swimwear_store -tabletop_games_store,shopping > specialty_store > tabletop_games_store,specialty_store,tabletop_games,retail > shopping > tabletop_games -toy_store,shopping > specialty_store > toy_store,toy_store,toy_store,retail > shopping > toy_store -trophy_store,shopping > specialty_store > trophy_store,specialty_store,trophy_shop,retail > shopping > trophy_shop -vehicle_parts_store,shopping > specialty_store > vehicle_parts_store,specialty_store,, -auto_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,specialty_store,auto_parts_and_supply_store,retail > auto_parts_and_supply_store -boat_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,specialty_store,boat_parts_and_supply_store,retail > boat_parts_and_supply_store -boat_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,specialty_store,boat_parts_and_accessories,automotive > boat_parts_and_accessories -superstore,shopping > superstore,retail_location,superstore,retail > shopping > superstore -vehicle_dealer,shopping > vehicle_dealer,vehicle_dealer,automotive_dealer,automotive > automotive_dealer -car_dealer,shopping > vehicle_dealer > car_dealer,car_dealer,car_dealer,automotive > automotive_dealer > car_dealer -used_car_dealer,shopping > vehicle_dealer > car_dealer > used_car_dealer,car_dealer,used_car_dealer,automotive > automotive_dealer > used_car_dealer -commercial_vehicle_dealer,shopping > vehicle_dealer > commercial_vehicle_dealer,vehicle_dealer,commercial_vehicle_dealer,automotive > automotive_dealer > commercial_vehicle_dealer -forklift_dealer,shopping > vehicle_dealer > forklift_dealer,vehicle_dealer,forklift_dealer,retail > shopping > farming_equipment_store > forklift_dealer -forklift_dealer,shopping > vehicle_dealer > forklift_dealer,vehicle_dealer,b2b_forklift_dealers,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > b2b_forklift_dealers -golf_cart_dealer,shopping > vehicle_dealer > golf_cart_dealer,vehicle_dealer,golf_cart_dealer,automotive > automotive_dealer > golf_cart_dealer -motorcycle_dealer,shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,motorcycle_dealer,automotive > automotive_dealer > motorcycle_dealer -motorsport_vehicle_dealer,shopping > vehicle_dealer > motorsport_vehicle_dealer,vehicle_dealer,motorsport_vehicle_dealer,automotive > automotive_dealer > motorsport_vehicle_dealer -recreational_vehicle_dealer,shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,recreational_vehicle_dealer,automotive > automotive_dealer > recreational_vehicle_dealer -scooter_dealer,shopping > vehicle_dealer > scooter_dealer,vehicle_dealer,scooter_dealers,automotive > automotive_dealer > scooter_dealers -trailer_dealer,shopping > vehicle_dealer > trailer_dealer,vehicle_dealer,trailer_dealer,automotive > automotive_dealer > trailer_dealer -truck_dealer,shopping > vehicle_dealer > truck_dealer,truck_dealer,truck_dealer,automotive > automotive_dealer > truck_dealer -truck_dealer,shopping > vehicle_dealer > truck_dealer,truck_dealer,truck_dealer_for_businesses,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > truck_dealer_for_businesses -wholesale_store,shopping > wholesale_store,warehouse_club,wholesale_store,retail > shopping > wholesale_store -sports_and_recreation,sports_and_recreation,recreational_location,active_life,active_life -adventure_sport,sports_and_recreation > adventure_sport,sport_fitness_facility,, -axe_throwing,sports_and_recreation > adventure_sport > axe_throwing,sport_fitness_facility,axe_throwing,attractions_and_activities > axe_throwing -bungee_jumping_center,sports_and_recreation > adventure_sport > bungee_jumping_center,sport_fitness_facility,bungee_jumping_center,attractions_and_activities > bungee_jumping_center -challenge_courses_center,sports_and_recreation > adventure_sport > challenge_courses_center,sport_fitness_facility,challenge_courses_center,attractions_and_activities > challenge_courses_center -cliff_jumping_center,sports_and_recreation > adventure_sport > cliff_jumping_center,sport_fitness_facility,cliff_jumping_center,attractions_and_activities > cliff_jumping_center -climbing_service,sports_and_recreation > adventure_sport > climbing_service,sport_fitness_facility,climbing_service,attractions_and_activities > climbing_service -high_gliding_center,sports_and_recreation > adventure_sport > high_gliding_center,sport_fitness_facility,high_gliding_center,attractions_and_activities > high_gliding_center -rock_climbing_spot,sports_and_recreation > adventure_sport > rock_climbing_spot,sport_fitness_facility,rock_climbing_spot,attractions_and_activities > rock_climbing_spot -ziplining_center,sports_and_recreation > adventure_sport > ziplining_center,sport_fitness_facility,ziplining_center,attractions_and_activities > ziplining_center -curling_ice,sports_and_recreation > curling_ice,sport_fitness_facility,, -indoor_playcenter,sports_and_recreation > indoor_playcenter,entertainment_location,indoor_playcenter,arts_and_entertainment > indoor_playcenter -laser_tag,sports_and_recreation > laser_tag,entertainment_location,laser_tag,arts_and_entertainment > laser_tag -paintball,sports_and_recreation > paintball,entertainment_location,paintball,arts_and_entertainment > paintball -park,sports_and_recreation > park,park,park,attractions_and_activities > park -backpacking_area,sports_and_recreation > park > backpacking_area,recreational_trail,backpacking_area,attractions_and_activities > backpacking_area -dog_park,sports_and_recreation > park > dog_park,dog_park,dog_park,attractions_and_activities > park > dog_park -mountain_bike_park,sports_and_recreation > park > mountain_bike_park,park,mountain_bike_parks,attractions_and_activities > mountain_bike_parks -national_park,sports_and_recreation > park > national_park,national_park,national_park,attractions_and_activities > park > national_park -state_park,sports_and_recreation > park > state_park,park,state_park,attractions_and_activities > park > state_park -water_park,sports_and_recreation > park > water_park,park,water_park,arts_and_entertainment > water_park -running_and_track,sports_and_recreation > running_and_track,sport_fitness_facility,, -running,sports_and_recreation > running_and_track > running,sport_fitness_facility,, -track_field_event,sports_and_recreation > running_and_track > track_field_event,sport_fitness_facility,, -snow_sport,sports_and_recreation > snow_sport,sport_fitness_facility,, -bobsledding_field,sports_and_recreation > snow_sport > bobsledding_field,sport_fitness_facility,bobsledding_field,attractions_and_activities > bobsledding_field -ski_area,sports_and_recreation > snow_sport > ski_area,sport_fitness_facility,ski_area,attractions_and_activities > ski_area -ski_chairlift,sports_and_recreation > snow_sport > ski_chairlift,sport_fitness_facility,, -ski_chalet,sports_and_recreation > snow_sport > ski_chalet,sport_fitness_facility,, -ski_resort_area,sports_and_recreation > snow_sport > ski_resort_area,sport_fitness_facility,, -snowboarding_center,sports_and_recreation > snow_sport > snowboarding_center,sport_fitness_facility,snowboarding_center,attractions_and_activities > snowboarding_center -sports_and_fitness_instruction,sports_and_recreation > sports_and_fitness_instruction,sport_fitness_facility,sports_and_fitness_instruction,active_life > sports_and_fitness_instruction -aerial_fitness_center,sports_and_recreation > sports_and_fitness_instruction > aerial_fitness_center,fitness_studio,aerial_fitness_center,active_life > sports_and_fitness_instruction > aerial_fitness_center -barre_class,sports_and_recreation > sports_and_fitness_instruction > barre_class,fitness_studio,barre_classes,active_life > sports_and_fitness_instruction > barre_classes -boot_camp,sports_and_recreation > sports_and_fitness_instruction > boot_camp,fitness_studio,boot_camp,active_life > sports_and_fitness_instruction > boot_camp -boxing_class,sports_and_recreation > sports_and_fitness_instruction > boxing_class,sport_fitness_facility,boxing_class,active_life > sports_and_fitness_instruction > boxing_class -boxing_gym,sports_and_recreation > sports_and_fitness_instruction > boxing_gym,sport_fitness_facility,boxing_gym,active_life > sports_and_fitness_instruction > boxing_gym -boxing_gym,sports_and_recreation > sports_and_fitness_instruction > boxing_gym,sport_fitness_facility,boxing_club,active_life > sports_and_fitness_instruction > boxing_club -cardio_class,sports_and_recreation > sports_and_fitness_instruction > cardio_class,sport_fitness_facility,cardio_classes,active_life > sports_and_fitness_instruction > cardio_classes -climbing_class,sports_and_recreation > sports_and_fitness_instruction > climbing_class,sport_fitness_facility,climbing_class,active_life > sports_and_fitness_instruction > climbing_class -cycling_class,sports_and_recreation > sports_and_fitness_instruction > cycling_class,sport_fitness_facility,cycling_classes,active_life > sports_and_fitness_instruction > cycling_classes -dance_studio,sports_and_recreation > sports_and_fitness_instruction > dance_studio,specialty_school,dance_school,active_life > sports_and_fitness_instruction > dance_school -diving_instruction,sports_and_recreation > sports_and_fitness_instruction > diving_instruction,sport_fitness_facility,, -free_diving_instruction,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > free_diving_instruction,sport_fitness_facility,free_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > free_diving_instruction -scuba_diving_instruction,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction,sport_fitness_facility,scuba_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction -ems_training,sports_and_recreation > sports_and_fitness_instruction > ems_training,healthcare_location,ems_training,active_life > sports_and_fitness_instruction > ems_training -fitness_trainer,sports_and_recreation > sports_and_fitness_instruction > fitness_trainer,sport_fitness_facility,fitness_trainer,active_life > sports_and_fitness_instruction > fitness_trainer -golf_instructor,sports_and_recreation > sports_and_fitness_instruction > golf_instructor,sport_fitness_facility,golf_instructor,active_life > sports_and_fitness_instruction > golf_instructor -kiteboarding_instruction,sports_and_recreation > sports_and_fitness_instruction > kiteboarding_instruction,sport_fitness_facility,kiteboarding_instruction,attractions_and_activities > kiteboarding_instruction -meditation_center,sports_and_recreation > sports_and_fitness_instruction > meditation_center,mental_health,meditation_center,active_life > sports_and_fitness_instruction > meditation_center -paddleboarding_lessons,sports_and_recreation > sports_and_fitness_instruction > paddleboarding_lessons,sport_fitness_facility,paddleboarding_lessons,active_life > sports_and_fitness_instruction > paddleboarding_lessons -pilates_studio,sports_and_recreation > sports_and_fitness_instruction > pilates_studio,fitness_studio,pilates_studio,active_life > sports_and_fitness_instruction > pilates_studio -qi_gong_studio,sports_and_recreation > sports_and_fitness_instruction > qi_gong_studio,fitness_studio,qi_gong_studio,active_life > sports_and_fitness_instruction > qi_gong_studio -racing_experience,sports_and_recreation > sports_and_fitness_instruction > racing_experience,sport_fitness_facility,racing_experience,active_life > sports_and_fitness_instruction > racing_experience -rock_climbing_instructor,sports_and_recreation > sports_and_fitness_instruction > rock_climbing_instructor,sport_fitness_facility,rock_climbing_instructor,active_life > sports_and_fitness_instruction > rock_climbing_instructor -self_defense_class,sports_and_recreation > sports_and_fitness_instruction > self_defense_class,sport_fitness_facility,self_defense_classes,active_life > sports_and_fitness_instruction > self_defense_classes -ski_and_snowboard_school,sports_and_recreation > sports_and_fitness_instruction > ski_and_snowboard_school,specialty_school,ski_and_snowboard_school,active_life > sports_and_fitness_instruction > ski_and_snowboard_school -surfing_school,sports_and_recreation > sports_and_fitness_instruction > surfing_school,specialty_school,surfing_school,active_life > sports_and_fitness_instruction > surfing_school -swimming_instructor,sports_and_recreation > sports_and_fitness_instruction > swimming_instructor,swimming_pool,swimming_instructor,active_life > sports_and_fitness_instruction > swimming_instructor -tai_chi_studio,sports_and_recreation > sports_and_fitness_instruction > tai_chi_studio,fitness_studio,tai_chi_studio,active_life > sports_and_fitness_instruction > tai_chi_studio -yoga_studio,sports_and_recreation > sports_and_fitness_instruction > yoga_studio,fitness_studio,yoga_studio,active_life > sports_and_fitness_instruction > yoga_studio -yoga_studio,sports_and_recreation > sports_and_fitness_instruction > yoga_studio,fitness_studio,yoga_instructor,active_life > sports_and_fitness_instruction > yoga_instructor -sports_and_recreation_rental_and_service,sports_and_recreation > sports_and_recreation_rental_and_service,recreational_equipment_rental_service,sports_and_recreation_rental_and_services,active_life > sports_and_recreation_rental_and_services -atv_rental_tour,sports_and_recreation > sports_and_recreation_rental_and_service > atv_rental_tour,recreational_equipment_rental_service,atv_rentals_and_tours,attractions_and_activities > atv_rentals_and_tours -beach_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > beach_equipment_rental,water_sport_equipment_rental_service,beach_equipment_rentals,active_life > sports_and_recreation_rental_and_services > beach_equipment_rentals -bike_rental,sports_and_recreation > sports_and_recreation_rental_and_service > bike_rental,bicycle_rental_service,bike_rentals,active_life > sports_and_recreation_rental_and_services > bike_rentals -boat_hire_service,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service,water_sport_equipment_rental_service,, -canoe_and_kayak_hire_service,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service > canoe_and_kayak_hire_service,water_sport_equipment_rental_service,canoe_and_kayak_hire_service,active_life > sports_and_recreation_rental_and_services > boat_hire_service > canoe_and_kayak_hire_service -boat_rental_and_training,sports_and_recreation > sports_and_recreation_rental_and_service > boat_rental_and_training,water_sport_equipment_rental_service,boat_rental_and_training,attractions_and_activities > boat_rental_and_training -horseback_riding_service,sports_and_recreation > sports_and_recreation_rental_and_service > horseback_riding_service,sport_fitness_facility,horseback_riding_service,attractions_and_activities > horseback_riding_service -jet_skis_rental,sports_and_recreation > sports_and_recreation_rental_and_service > jet_skis_rental,water_sport_equipment_rental_service,jet_skis_rental,attractions_and_activities > jet_skis_rental -paddleboard_rental,sports_and_recreation > sports_and_recreation_rental_and_service > paddleboard_rental,water_sport_equipment_rental_service,paddleboard_rental,attractions_and_activities > paddleboard_rental -parasailing_ride_service,sports_and_recreation > sports_and_recreation_rental_and_service > parasailing_ride_service,sport_fitness_facility,parasailing_ride_service,attractions_and_activities > parasailing_ride_service -scooter_rental,sports_and_recreation > sports_and_recreation_rental_and_service > scooter_rental,scooter_rental_service,scooter_rental,active_life > sports_and_recreation_rental_and_services > scooter_rental -sledding_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sledding_rental,winter_sport_equipment_rental_service,sledding_rental,attractions_and_activities > sledding_rental -snorkeling_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > snorkeling_equipment_rental,water_sport_equipment_rental_service,snorkeling_equipment_rental,attractions_and_activities > snorkeling_equipment_rental -sport_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sport_equipment_rental,water_sport_equipment_rental_service,sport_equipment_rentals,active_life > sports_and_recreation_rental_and_services > sport_equipment_rentals -sports_and_recreation_venue,sports_and_recreation > sports_and_recreation_venue,sport_fitness_facility,sports_and_recreation_venue,active_life > sports_and_recreation_venue -sports_and_recreation_venue,sports_and_recreation > sports_and_recreation_venue,sport_fitness_facility,zorbing_center,active_life > sports_and_recreation_venue > zorbing_center -adventure_sports_center,sports_and_recreation > sports_and_recreation_venue > adventure_sports_center,sport_fitness_facility,adventure_sports_center,active_life > sports_and_recreation_venue > adventure_sports_center -airsoft_field,sports_and_recreation > sports_and_recreation_venue > airsoft_field,sport_field,airsoft_fields,active_life > sports_and_recreation_venue > airsoft_fields -american_football_field,sports_and_recreation > sports_and_recreation_venue > american_football_field,sport_field,american_football_field,active_life > sports_and_recreation_venue > american_football_field -archery_range,sports_and_recreation > sports_and_recreation_venue > archery_range,shooting_range,archery_range,active_life > sports_and_recreation_venue > archery_range -atv_recreation_park,sports_and_recreation > sports_and_recreation_venue > atv_recreation_park,sport_fitness_facility,atv_recreation_park,active_life > sports_and_recreation_venue > atv_recreation_park -badminton_court,sports_and_recreation > sports_and_recreation_venue > badminton_court,sport_court,badminton_court,active_life > sports_and_recreation_venue > badminton_court -baseball_field,sports_and_recreation > sports_and_recreation_venue > baseball_field,sport_field,baseball_field,active_life > sports_and_recreation_venue > baseball_field -basketball_court,sports_and_recreation > sports_and_recreation_venue > basketball_court,sport_court,basketball_court,active_life > sports_and_recreation_venue > basketball_court -batting_cage,sports_and_recreation > sports_and_recreation_venue > batting_cage,sport_fitness_facility,batting_cage,active_life > sports_and_recreation_venue > batting_cage -beach_volleyball_court,sports_and_recreation > sports_and_recreation_venue > beach_volleyball_court,sport_court,beach_volleyball_court,active_life > sports_and_recreation_venue > beach_volleyball_court -bike_path,sports_and_recreation > sports_and_recreation_venue > bike_path,bicycle_path,bicycle_path,active_life > sports_and_recreation_venue > bicycle_path -bocce_ball_court,sports_and_recreation > sports_and_recreation_venue > bocce_ball_court,sport_court,bocce_ball_court,active_life > sports_and_recreation_venue > bocce_ball_court -bowling_alley,sports_and_recreation > sports_and_recreation_venue > bowling_alley,bowling_alley,bowling_alley,active_life > sports_and_recreation_venue > bowling_alley -curling_center,sports_and_recreation > sports_and_recreation_venue > curling_center,sport_fitness_facility,, -disc_golf_course,sports_and_recreation > sports_and_recreation_venue > disc_golf_course,sport_field,disc_golf_course,active_life > sports_and_recreation_venue > disc_golf_course -diving_center,sports_and_recreation > sports_and_recreation_venue > diving_center,sport_fitness_facility,diving_center,active_life > sports_and_recreation_venue > diving_center -free_diving_center,sports_and_recreation > sports_and_recreation_venue > diving_center > free_diving_center,sport_fitness_facility,free_diving_center,active_life > sports_and_recreation_venue > diving_center > free_diving_center -scuba_diving_center,sports_and_recreation > sports_and_recreation_venue > diving_center > scuba_diving_center,sport_fitness_facility,scuba_diving_center,active_life > sports_and_recreation_venue > diving_center > scuba_diving_center -flyboarding_center,sports_and_recreation > sports_and_recreation_venue > flyboarding_center,sport_fitness_facility,flyboarding_center,active_life > sports_and_recreation_venue > flyboarding_center -flyboarding_rental,sports_and_recreation > sports_and_recreation_venue > flyboarding_rental,sport_fitness_facility,flyboarding_rental,attractions_and_activities > flyboarding_rental -futsal_field,sports_and_recreation > sports_and_recreation_venue > futsal_field,sport_field,futsal_field,active_life > sports_and_recreation_venue > futsal_field -golf_course,sports_and_recreation > sports_and_recreation_venue > golf_course,golf_course,golf_course,active_life > sports_and_recreation_venue > golf_course -driving_range,sports_and_recreation > sports_and_recreation_venue > golf_course > driving_range,sport_fitness_facility,driving_range,active_life > sports_and_recreation_venue > golf_course > driving_range -gym,sports_and_recreation > sports_and_recreation_venue > gym,gym,gym,active_life > sports_and_recreation_venue > gym -cycle_studio,sports_and_recreation > sports_and_recreation_venue > gym > cycle_studio,sport_fitness_facility,, -gymnastics_center,sports_and_recreation > sports_and_recreation_venue > gymnastics_center,sport_fitness_facility,gymnastics_center,active_life > sports_and_recreation_venue > gymnastics_center -handball_court,sports_and_recreation > sports_and_recreation_venue > handball_court,sport_court,handball_court,active_life > sports_and_recreation_venue > handball_court -hang_gliding_center,sports_and_recreation > sports_and_recreation_venue > hang_gliding_center,sport_fitness_facility,hang_gliding_center,active_life > sports_and_recreation_venue > hang_gliding_center -hockey_field,sports_and_recreation > sports_and_recreation_venue > hockey_field,sport_field,hockey_field,active_life > sports_and_recreation_venue > hockey_field -field_hockey_pitch,sports_and_recreation > sports_and_recreation_venue > hockey_field > field_hockey_pitch,sport_field,, -street_hockey_court,sports_and_recreation > sports_and_recreation_venue > hockey_field > street_hockey_court,sport_court,, -hockey_rink,sports_and_recreation > sports_and_recreation_venue > hockey_rink,sport_fitness_facility,, -ice_hockey_rink,sports_and_recreation > sports_and_recreation_venue > hockey_rink > ice_hockey_rink,sport_fitness_facility,, -roller_hockey_rink,sports_and_recreation > sports_and_recreation_venue > hockey_rink > roller_hockey_rink,sport_fitness_facility,, -horse_riding,sports_and_recreation > sports_and_recreation_venue > horse_riding,equestrian_facility,horse_riding,active_life > sports_and_recreation_venue > horse_riding -equestrian_facility,sports_and_recreation > sports_and_recreation_venue > horse_riding > equestrian_facility,equestrian_facility,equestrian_facility,active_life > sports_and_recreation_venue > horse_riding > equestrian_facility -kiteboarding,sports_and_recreation > sports_and_recreation_venue > kiteboarding,sport_fitness_facility,kiteboarding,active_life > sports_and_recreation_venue > kiteboarding -lacrosse_field,sports_and_recreation > sports_and_recreation_venue > lacrosse_field,sport_field,, -miniature_golf_course,sports_and_recreation > sports_and_recreation_venue > miniature_golf_course,sport_fitness_facility,miniature_golf_course,active_life > sports_and_recreation_venue > miniature_golf_course -paddleboarding_center,sports_and_recreation > sports_and_recreation_venue > paddleboarding_center,sport_fitness_facility,paddleboarding_center,active_life > sports_and_recreation_venue > paddleboarding_center -pickleball_court,sports_and_recreation > sports_and_recreation_venue > pickleball_court,sport_court,, -playground,sports_and_recreation > sports_and_recreation_venue > playground,playground,playground,active_life > sports_and_recreation_venue > playground -pool_billiards,sports_and_recreation > sports_and_recreation_venue > pool_billiards,pool_hall,pool_billiards,active_life > sports_and_recreation_venue > pool_billiards -pool_hall,sports_and_recreation > sports_and_recreation_venue > pool_billiards > pool_hall,pool_hall,pool_hall,active_life > sports_and_recreation_venue > pool_billiards > pool_hall -race_track,sports_and_recreation > sports_and_recreation_venue > race_track,race_track,race_track,active_life > sports_and_recreation_venue > race_track -go_kart_track,sports_and_recreation > sports_and_recreation_venue > race_track > go_kart_track,sport_fitness_facility,go_kart_track,attractions_and_activities > go_kart_track -horse_racing_track,sports_and_recreation > sports_and_recreation_venue > race_track > horse_racing_track,race_track,horse_racing_track,active_life > sports_and_recreation_venue > horse_riding > horse_racing_track -motor_race_track,sports_and_recreation > sports_and_recreation_venue > race_track > motor_race_track,race_track,, -track_and_field_track,sports_and_recreation > sports_and_recreation_venue > race_track > track_and_field_track,sport_fitness_facility,, -velodrome,sports_and_recreation > sports_and_recreation_venue > race_track > velodrome,sport_fitness_facility,, -racquetball_court,sports_and_recreation > sports_and_recreation_venue > racquetball_court,sport_court,racquetball_court,active_life > sports_and_recreation_venue > racquetball_court -rock_climbing_gym,sports_and_recreation > sports_and_recreation_venue > rock_climbing_gym,sport_fitness_facility,rock_climbing_gym,active_life > sports_and_recreation_venue > rock_climbing_gym -rugby_pitch,sports_and_recreation > sports_and_recreation_venue > rugby_pitch,sport_field,rugby_pitch,active_life > sports_and_recreation_venue > rugby_pitch -shooting_range,sports_and_recreation > sports_and_recreation_venue > shooting_range,shooting_range,shooting_range,active_life > sports_and_recreation_venue > shooting_range -skate_park,sports_and_recreation > sports_and_recreation_venue > skate_park,skate_park,skate_park,active_life > sports_and_recreation_venue > skate_park -skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink,skating_rink,skating_rink,active_life > sports_and_recreation_venue > skating_rink -ice_skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > ice_skating_rink,skating_rink,ice_skating_rink,active_life > sports_and_recreation_venue > skating_rink > ice_skating_rink -roller_skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > roller_skating_rink,skating_rink,roller_skating_rink,active_life > sports_and_recreation_venue > skating_rink > roller_skating_rink -sky_diving,sports_and_recreation > sports_and_recreation_venue > sky_diving,sport_fitness_facility,sky_diving,active_life > sports_and_recreation_venue > sky_diving -sky_diving_drop_zone,sports_and_recreation > sports_and_recreation_venue > sky_diving > sky_diving_drop_zone,sport_fitness_facility,, -skydiving_center,sports_and_recreation > sports_and_recreation_venue > sky_diving > skydiving_center,sport_fitness_facility,, -soccer_field,sports_and_recreation > sports_and_recreation_venue > soccer_field,sport_field,soccer_field,active_life > sports_and_recreation_venue > soccer_field -soccer_field,sports_and_recreation > sports_and_recreation_venue > soccer_field,sport_field,bubble_soccer_field,active_life > sports_and_recreation_venue > bubble_soccer_field -softball_field,sports_and_recreation > sports_and_recreation_venue > softball_field,sport_field,, -squash_court,sports_and_recreation > sports_and_recreation_venue > squash_court,sport_court,squash_court,active_life > sports_and_recreation_venue > squash_court -swimming_pool,sports_and_recreation > sports_and_recreation_venue > swimming_pool,swimming_pool,swimming_pool,active_life > sports_and_recreation_venue > swimming_pool -tennis_court,sports_and_recreation > sports_and_recreation_venue > tennis_court,sport_court,tennis_court,active_life > sports_and_recreation_venue > tennis_court -trampoline_park,sports_and_recreation > sports_and_recreation_venue > trampoline_park,sport_fitness_facility,trampoline_park,active_life > sports_and_recreation_venue > trampoline_park -tubing_provider,sports_and_recreation > sports_and_recreation_venue > tubing_provider,sport_fitness_facility,tubing_provider,active_life > sports_and_recreation_venue > tubing_provider -volleyball_court,sports_and_recreation > sports_and_recreation_venue > volleyball_court,sport_court,volleyball_court,active_life > sports_and_recreation_venue > volleyball_court -wildlife_hunting_range,sports_and_recreation > sports_and_recreation_venue > wildlife_hunting_range,sport_fitness_facility,wildlife_hunting_range,active_life > sports_and_recreation_venue > wildlife_hunting_range -sports_club_and_league,sports_and_recreation > sports_club_and_league,sport_recreation_club,sports_club_and_league,active_life > sports_club_and_league -amateur_sports_league,sports_and_recreation > sports_club_and_league > amateur_sports_league,amateur_sport_league,amateur_sports_league,active_life > sports_club_and_league > amateur_sports_league -amateur_sports_team,sports_and_recreation > sports_club_and_league > amateur_sports_team,amateur_sport_team,amateur_sports_team,active_life > sports_club_and_league > amateur_sports_team -beach_volleyball_club,sports_and_recreation > sports_club_and_league > beach_volleyball_club,sport_recreation_club,beach_volleyball_club,active_life > sports_club_and_league > beach_volleyball_club -curling_club,sports_and_recreation > sports_club_and_league > curling_club,sport_recreation_club,, -esports_league,sports_and_recreation > sports_club_and_league > esports_league,sport_league,esports_league,active_life > sports_club_and_league > esports_league -esports_team,sports_and_recreation > sports_club_and_league > esports_team,sport_team,esports_team,active_life > sports_club_and_league > esports_team -fencing_club,sports_and_recreation > sports_club_and_league > fencing_club,sport_recreation_club,fencing_club,active_life > sports_club_and_league > fencing_club -fishing_club,sports_and_recreation > sports_club_and_league > fishing_club,sport_recreation_club,fishing_club,active_life > sports_club_and_league > fishing_club -football_club,sports_and_recreation > sports_club_and_league > football_club,sport_recreation_club,football_club,active_life > sports_club_and_league > football_club -go_kart_club,sports_and_recreation > sports_club_and_league > go_kart_club,sport_recreation_club,go_kart_club,active_life > sports_club_and_league > go_kart_club -golf_club,sports_and_recreation > sports_club_and_league > golf_club,golf_club,golf_club,active_life > sports_club_and_league > golf_club -indoor_golf_center,sports_and_recreation > sports_club_and_league > golf_club > indoor_golf_center,sport_fitness_facility,indoor_golf_center,active_life > sports_club_and_league > golf_club > indoor_golf_center -gymnastics_club,sports_and_recreation > sports_club_and_league > gymnastics_club,sport_recreation_club,gymnastics_club,active_life > sports_club_and_league > gymnastics_club -hockey_club,sports_and_recreation > sports_club_and_league > hockey_club,sport_recreation_club,, -field_hockey_club,sports_and_recreation > sports_club_and_league > hockey_club > field_hockey_club,sport_recreation_club,, -ice_hockey_club,sports_and_recreation > sports_club_and_league > hockey_club > ice_hockey_club,sport_recreation_club,, -roller_hockey_club,sports_and_recreation > sports_club_and_league > hockey_club > roller_hockey_club,sport_recreation_club,, -street_hockey_club,sports_and_recreation > sports_club_and_league > hockey_club > street_hockey_club,sport_recreation_club,, -lacrosse_club,sports_and_recreation > sports_club_and_league > lacrosse_club,sport_recreation_club,, -lawn_bowling_club,sports_and_recreation > sports_club_and_league > lawn_bowling_club,sport_recreation_club,lawn_bowling_club,active_life > sports_club_and_league > lawn_bowling_club -martial_arts_club,sports_and_recreation > sports_club_and_league > martial_arts_club,martial_arts_club,martial_arts_club,active_life > sports_club_and_league > martial_arts_club -brazilian_jiu_jitsu_club,sports_and_recreation > sports_club_and_league > martial_arts_club > brazilian_jiu_jitsu_club,martial_arts_club,brazilian_jiu_jitsu_club,active_life > sports_club_and_league > martial_arts_club > brazilian_jiu_jitsu_club -chinese_martial_arts_club,sports_and_recreation > sports_club_and_league > martial_arts_club > chinese_martial_arts_club,martial_arts_club,chinese_martial_arts_club,active_life > sports_club_and_league > martial_arts_club > chinese_martial_arts_club -karate_club,sports_and_recreation > sports_club_and_league > martial_arts_club > karate_club,martial_arts_club,karate_club,active_life > sports_club_and_league > martial_arts_club > karate_club -kickboxing_club,sports_and_recreation > sports_club_and_league > martial_arts_club > kickboxing_club,martial_arts_club,kickboxing_club,active_life > sports_club_and_league > martial_arts_club > kickboxing_club -muay_thai_club,sports_and_recreation > sports_club_and_league > martial_arts_club > muay_thai_club,martial_arts_club,muay_thai_club,active_life > sports_club_and_league > martial_arts_club > muay_thai_club -taekwondo_club,sports_and_recreation > sports_club_and_league > martial_arts_club > taekwondo_club,martial_arts_club,taekwondo_club,active_life > sports_club_and_league > martial_arts_club > taekwondo_club -naturist_club,sports_and_recreation > sports_club_and_league > naturist_club,sport_recreation_club,nudist_clubs,active_life > sports_club_and_league > nudist_clubs -paddle_tennis_club,sports_and_recreation > sports_club_and_league > paddle_tennis_club,sport_recreation_club,paddle_tennis_club,active_life > sports_club_and_league > paddle_tennis_club -pickleball_club,sports_and_recreation > sports_club_and_league > pickleball_club,sport_recreation_club,, -professional_sports_league,sports_and_recreation > sports_club_and_league > professional_sports_league,pro_sport_league,professional_sports_league,active_life > sports_club_and_league > professional_sports_league -professional_sports_team,sports_and_recreation > sports_club_and_league > professional_sports_team,pro_sport_team,professional_sports_team,active_life > sports_club_and_league > professional_sports_team -rowing_club,sports_and_recreation > sports_club_and_league > rowing_club,sport_recreation_club,rowing_club,active_life > sports_club_and_league > rowing_club -running_and_track_club,sports_and_recreation > sports_club_and_league > running_and_track_club,sport_recreation_club,, -running_club,sports_and_recreation > sports_club_and_league > running_and_track_club > running_club,sport_recreation_club,, -track_and_field_club,sports_and_recreation > sports_club_and_league > running_and_track_club > track_and_field_club,sport_recreation_club,, -sailing_club,sports_and_recreation > sports_club_and_league > sailing_club,sport_recreation_club,sailing_club,active_life > sports_club_and_league > sailing_club -school_sports_league,sports_and_recreation > sports_club_and_league > school_sports_league,school_sport_league,school_sports_league,active_life > sports_club_and_league > school_sports_league -school_sports_team,sports_and_recreation > sports_club_and_league > school_sports_team,school_sport_team,school_sports_team,active_life > sports_club_and_league > school_sports_team -soccer_club,sports_and_recreation > sports_club_and_league > soccer_club,sport_recreation_club,soccer_club,active_life > sports_club_and_league > soccer_club -surf_lifesaving_club,sports_and_recreation > sports_club_and_league > surf_lifesaving_club,sport_recreation_club,surf_lifesaving_club,active_life > sports_club_and_league > surf_lifesaving_club -table_tennis_club,sports_and_recreation > sports_club_and_league > table_tennis_club,sport_recreation_club,table_tennis_club,active_life > sports_club_and_league > table_tennis_club -volleyball_club,sports_and_recreation > sports_club_and_league > volleyball_club,sport_recreation_club,volleyball_club,active_life > sports_club_and_league > volleyball_club -trail,sports_and_recreation > trail,recreational_trail,trail,attractions_and_activities > trail -hiking_trail,sports_and_recreation > trail > hiking_trail,hiking_trail,hiking_trail,attractions_and_activities > trail > hiking_trail -mountain_bike_trail,sports_and_recreation > trail > mountain_bike_trail,recreational_trail,mountain_bike_trails,attractions_and_activities > trail > mountain_bike_trails -water_sport,sports_and_recreation > water_sport,recreational_location,, -boating_place,sports_and_recreation > water_sport > boating_place,recreational_location,boating_places,attractions_and_activities > boating_places -fishing,sports_and_recreation > water_sport > fishing,recreational_location,, -fishing_area,sports_and_recreation > water_sport > fishing > fishing_area,recreational_location,, -fishing_charter,sports_and_recreation > water_sport > fishing > fishing_charter,recreational_location,fishing_charter,attractions_and_activities > fishing_charter -rafting_kayaking_area,sports_and_recreation > water_sport > rafting_kayaking_area,recreational_location,rafting_kayaking_area,attractions_and_activities > rafting_kayaking_area -sailing_area,sports_and_recreation > water_sport > sailing_area,recreational_location,sailing_area,attractions_and_activities > sailing_area -snorkeling,sports_and_recreation > water_sport > snorkeling,recreational_location,snorkeling,attractions_and_activities > snorkeling -surfing,sports_and_recreation > water_sport > surfing,recreational_location,surfing,attractions_and_activities > surfing -surfboard_rental,sports_and_recreation > water_sport > surfing > surfboard_rental,water_sport_equipment_rental_service,surfboard_rental,attractions_and_activities > surfing > surfboard_rental -windsurfing_center,sports_and_recreation > water_sport > surfing > windsurfing_center,sport_fitness_facility,windsurfing_center,attractions_and_activities > surfing > windsurfing_center -travel_and_transportation,travel_and_transportation,transportation_location,, -travel_and_transportation,travel_and_transportation,transportation_location,transportation,travel > transportation -aircraft_and_air_transport,travel_and_transportation > aircraft_and_air_transport,air_transport_facility_service,, -aircraft_dealer,travel_and_transportation > aircraft_and_air_transport > aircraft_dealer,vehicle_dealer,aircraft_dealer,automotive > aircraft_dealer -aircraft_parts_and_supplies,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies,air_transport_facility_service,aircraft_parts_and_supplies,automotive > aircraft_parts_and_supplies -avionics_shop,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies > avionics_shop,air_transport_facility_service,avionics_shop,automotive > aircraft_parts_and_supplies > avionics_shop -aircraft_repair,travel_and_transportation > aircraft_and_air_transport > aircraft_repair,vehicle_service,aircraft_repair,automotive > aircraft_services_and_repair -airline,travel_and_transportation > aircraft_and_air_transport > airline,air_transport_facility_service,airlines,travel > transportation > airlines -airline,travel_and_transportation > aircraft_and_air_transport > airline,air_transport_facility_service,airline,business_to_business > business > airline -airline_ticket_agency,travel_and_transportation > aircraft_and_air_transport > airline_ticket_agency,air_transport_facility_service,airline_ticket_agency,travel > airline_ticket_agency -airport,travel_and_transportation > aircraft_and_air_transport > airport,airport,airport,travel > airport -airport,travel_and_transportation > aircraft_and_air_transport > airport,airport,domestic_airports,travel > airport > domestic_airports -airport,travel_and_transportation > aircraft_and_air_transport > airport,airport,major_airports,travel > airport > major_airports -airport_terminal,travel_and_transportation > aircraft_and_air_transport > airport > airport_terminal,airport_terminal,airport_terminal,travel > airport > airport_terminal -balloon_port,travel_and_transportation > aircraft_and_air_transport > airport > balloon_port,airport,balloon_ports,travel > airport > balloon_ports -gliderport,travel_and_transportation > aircraft_and_air_transport > airport > gliderport,airport,gliderports,travel > airport > gliderports -heliport,travel_and_transportation > aircraft_and_air_transport > airport > heliport,heliport,heliports,travel > airport > heliports -seaplane_base,travel_and_transportation > aircraft_and_air_transport > airport > seaplane_base,airport,seaplane_bases,travel > airport > seaplane_bases -ultralight_airport,travel_and_transportation > aircraft_and_air_transport > airport > ultralight_airport,airport,ultralight_airports,travel > airport > ultralight_airports -airport_shuttle,travel_and_transportation > aircraft_and_air_transport > airport_shuttle,air_transport_facility_service,airport_shuttles,travel > transportation > airport_shuttles -private_jet_charter,travel_and_transportation > aircraft_and_air_transport > private_jet_charter,air_transport_facility_service,private_jet_charters,travel > transportation > private_jet_charters -automotive_and_ground_transport,travel_and_transportation > automotive_and_ground_transport,transportation_location,, -automotive,travel_and_transportation > automotive_and_ground_transport > automotive,transportation_location,automotive,automotive -auto_company,travel_and_transportation > automotive_and_ground_transport > automotive > auto_company,corporate_or_business_office,auto_company,automotive > auto_company -automobile_leasing,travel_and_transportation > automotive_and_ground_transport > automotive > automobile_leasing,vehicle_dealer,automobile_leasing,automotive > automobile_leasing -automotive_parts_and_accessories,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories,specialty_store,automotive_parts_and_accessories,automotive > automotive_parts_and_accessories -car_stereo_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > car_stereo_store,specialty_store,car_stereo_store,automotive > automotive_parts_and_accessories > car_stereo_store -interlock_system,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > interlock_system,specialty_store,interlock_system,automotive > automotive_parts_and_accessories > interlock_system -motorcycle_gear,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorcycle_gear,specialty_store,motorcycle_gear,automotive > automotive_parts_and_accessories > motorcycle_gear -motorsports_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorsports_store,specialty_store,motorsports_store,automotive > automotive_parts_and_accessories > motorsports_store -recreational_vehicle_parts_and_accessories,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories,specialty_store,recreational_vehicle_parts_and_accessories,automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories -automotive_services_and_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair,vehicle_service,automotive_services_and_repair,automotive > automotive_services_and_repair -auto_body_shop,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_body_shop,auto_body_shop,auto_body_shop,automotive > automotive_services_and_repair > auto_body_shop -auto_customization,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_customization,vehicle_service,auto_customization,automotive > automotive_services_and_repair > auto_customization -auto_detailing,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_detailing,auto_detailing_service,auto_detailing,automotive > automotive_services_and_repair > auto_detailing -auto_glass_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service,auto_glass_service,auto_glass_service,automotive > automotive_services_and_repair > auto_glass_service -car_window_tinting,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting,auto_glass_service,car_window_tinting,automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting -windshield_installation_and_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > windshield_installation_and_repair,auto_glass_service,windshield_installation_and_repair,automotive > automotive_services_and_repair > windshield_installation_and_repair -auto_restoration_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_restoration_service,vehicle_service,auto_restoration_services,automotive > automotive_services_and_repair > auto_restoration_services -auto_security,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_security,vehicle_service,auto_security,automotive > automotive_services_and_repair > auto_security -auto_upholstery,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_upholstery,vehicle_service,auto_upholstery,automotive > automotive_services_and_repair > auto_upholstery -automobile_registration_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automobile_registration_service,vehicle_service,automobile_registration_service,automotive > automotive_services_and_repair > automobile_registration_service -automotive_consultant,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_consultant,vehicle_service,automotive_consultant,automotive > automotive_services_and_repair > automotive_consultant -automotive_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair,auto_repair_service,automotive_repair,automotive > automotive_repair -auto_electrical_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > auto_electrical_repair,auto_repair_service,auto_electrical_repair,automotive > automotive_services_and_repair > auto_electrical_repair -brake_service_and_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > brake_service_and_repair,auto_repair_service,brake_service_and_repair,automotive > automotive_services_and_repair > brake_service_and_repair -diy_auto_shop,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > diy_auto_shop,auto_repair_service,diy_auto_shop,automotive > automotive_services_and_repair > diy_auto_shop -engine_repair_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > engine_repair_service,auto_repair_service,engine_repair_service,automotive > automotive_services_and_repair > engine_repair_service -exhaust_and_muffler_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > exhaust_and_muffler_repair,auto_repair_service,exhaust_and_muffler_repair,automotive > automotive_services_and_repair > exhaust_and_muffler_repair -hybrid_car_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > hybrid_car_repair,auto_repair_service,hybrid_car_repair,automotive > automotive_services_and_repair > hybrid_car_repair -motorcycle_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorcycle_repair,auto_repair_service,motorcycle_repair,automotive > automotive_services_and_repair > motorcycle_repair -motorsport_vehicle_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorsport_vehicle_repair,auto_repair_service,motorsport_vehicle_repair,automotive > automotive_services_and_repair > motorsport_vehicle_repair -recreation_vehicle_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > recreation_vehicle_repair,auto_repair_service,recreation_vehicle_repair,automotive > automotive_services_and_repair > recreation_vehicle_repair -tire_dealer_and_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > tire_dealer_and_repair,auto_repair_service,tire_dealer_and_repair,automotive > automotive_services_and_repair > tire_dealer_and_repair -trailer_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > trailer_repair,auto_repair_service,trailer_repair,automotive > automotive_services_and_repair > trailer_repair -transmission_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > transmission_repair,auto_repair_service,transmission_repair,automotive > automotive_services_and_repair > transmission_repair -wheel_and_rim_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > wheel_and_rim_repair,auto_repair_service,wheel_and_rim_repair,automotive > automotive_services_and_repair > wheel_and_rim_repair -automotive_storage_facility,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_storage_facility,storage_facility,automotive_storage_facility,automotive > automotive_services_and_repair > automotive_storage_facility -automotive_wheel_polishing_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_wheel_polishing_service,vehicle_service,automotive_wheel_polishing_service,automotive > automotive_services_and_repair > automotive_wheel_polishing_service -car_inspection,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_inspection,vehicle_service,car_inspection,automotive > automotive_services_and_repair > car_inspection -car_stereo_installation,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_stereo_installation,vehicle_service,car_stereo_installation,automotive > automotive_services_and_repair > car_stereo_installation -car_wash,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_wash,vehicle_service,car_wash,automotive > automotive_services_and_repair > car_wash -emissions_inspection,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > emissions_inspection,vehicle_service,emissions_inspection,automotive > automotive_services_and_repair > emissions_inspection -oil_change_station,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > oil_change_station,vehicle_service,oil_change_station,automotive > automotive_services_and_repair > oil_change_station -tire_shop,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > tire_shop,vehicle_service,tire_shop,retail > tire_shop -tire_shop,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > tire_shop,vehicle_service,tire_repair_shop,retail > tire_shop > tire_repair_shop -towing_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > towing_service,towing_service,towing_service,automotive > automotive_services_and_repair > towing_service -truck_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > truck_repair,vehicle_service,truck_repair,automotive > automotive_services_and_repair > truck_repair -truck_repair,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > truck_repair,vehicle_service,truck_repair_and_services_for_businesses,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > truck_repair_and_services_for_businesses -vehicle_shipping,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_shipping,shipping_delivery_service,vehicle_shipping,automotive > automotive_services_and_repair > vehicle_shipping -vehicle_wrap,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_wrap,vehicle_service,vehicle_wrap,automotive > automotive_services_and_repair > vehicle_wrap -car_buyer,travel_and_transportation > automotive_and_ground_transport > automotive > car_buyer,vehicle_service,car_buyer,automotive > car_buyer -buses_and public_transit,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit,transportation_location,bus_service,travel > transportation > bus_service -buses_and public_transit,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit,transportation_location,public_transportation,travel > transportation > public_transportation -bus_station,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_station,bus_station,bus_station,travel > transportation > bus_station -bus_ticket_agency,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_ticket_agency,travel_ticket_office,bus_ticket_agency,travel > bus_ticket_agency -cable_car_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > cable_car_service,transportation_location,cable_car_service,travel > transportation > cable_car_service -coach_bus,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > coach_bus,transportation_location,coach_bus,travel > transportation > coach_bus -light_rail_and_subway_station,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > light_rail_and_subway_station,transportation_location,light_rail_and_subway_stations,travel > transportation > light_rail_and_subway_stations -metro_station,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > metro_station,transportation_location,metro_station,travel > transportation > metro_station -fueling_station,travel_and_transportation > automotive_and_ground_transport > fueling_station,fueling_station,, -ev_charging_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > ev_charging_station,ev_charging_station,ev_charging_station,automotive > electric_vehicle_charging_station -gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station,gas_station,gas_station,automotive > gas_station -fuel_dock,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > fuel_dock,gas_station,fuel_dock,automotive > gas_station > fuel_dock -truck_gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > truck_gas_station,gas_station,truck_gas_station,automotive > gas_station > truck_gas_station -parking,travel_and_transportation > automotive_and_ground_transport > parking,parking,parking,travel > transportation > parking -motorcycle_parking,travel_and_transportation > automotive_and_ground_transport > parking > motorcycle_parking,parking,motorcycle_parking,travel > transportation > motorcycle_parking -park_and_ride,travel_and_transportation > automotive_and_ground_transport > parking > park_and_ride,park_and_ride,park_and_rides,travel > transportation > park_and_rides -roadside_assistance,travel_and_transportation > automotive_and_ground_transport > roadside_assistance,vehicle_service,roadside_assistance,automotive > automotive_services_and_repair > roadside_assistance -emergency_roadside_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > emergency_roadside_service,emergency_roadside_service,emergency_roadside_service,automotive > automotive_services_and_repair > roadside_assistance > emergency_roadside_service -mobile_dent_repair,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > mobile_dent_repair,vehicle_service,mobile_dent_repair,automotive > automotive_services_and_repair > roadside_assistance > mobile_dent_repair -taxi_and_ride_share,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share,taxi_or_ride_share_service,, -car_sharing,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > car_sharing,taxi_or_ride_share_service,car_sharing,travel > transportation > car_sharing -limo_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > limo_service,taxi_or_ride_share_service,limo_services,travel > transportation > limo_services -pedicab_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > pedicab_service,taxi_or_ride_share_service,pedicab_service,travel > transportation > pedicab_service -ride_sharing,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > ride_sharing,ride_share_service,ride_sharing,travel > transportation > ride_sharing -taxi_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service,taxi_service,taxi_service,travel > transportation > taxi_service -taxi_stand,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service > taxi_stand,taxi_or_ride_share_service,taxi_rank,travel > transportation > taxi_rank -town_car_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > town_car_service,taxi_or_ride_share_service,town_car_service,travel > transportation > town_car_service -trains_and_rail_transport,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport,transportation_location,, -railway_ticket_agent,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > railway_ticket_agent,travel_ticket_office,railway_ticket_agent,travel > railway_ticket_agent -train,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train,transportation_location,trains,travel > transportation > trains -train_station,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train_station,train_station,train_station,travel > transportation > trains > train_station -bikes_and_bike_service,travel_and_transportation > bikes_and_bike_service,transportation_location,, -bike_parking,travel_and_transportation > bikes_and_bike_service > bike_parking,parking,bike_parking,travel > transportation > bike_parking -bike_sharing_location,travel_and_transportation > bikes_and_bike_service > bike_sharing_location,transportation_location,bicycle_sharing_location,travel > transportation > bicycle_sharing_location -bike_sharing_location,travel_and_transportation > bikes_and_bike_service > bike_sharing_location,transportation_location,bike_sharing,travel > transportation > bike_sharing -road_structures_and_service,travel_and_transportation > road_structures_and_service,transportation_location,road_structures_and_services,travel > road_structures_and_services -rest_stop,travel_and_transportation > road_structures_and_service > rest_stop,rest_stop,rest_stop,travel > rest_stop -rest_stop,travel_and_transportation > road_structures_and_service > rest_stop,rest_stop,rest_areas,travel > road_structures_and_services > rest_areas -toll_station,travel_and_transportation > road_structures_and_service > toll_station,toll_station,toll_stations,travel > road_structures_and_services > toll_stations -truck_stop,travel_and_transportation > road_structures_and_service > truck_stop,rest_stop,truck_stop,automotive > truck_stop -transport_interchange,travel_and_transportation > transport_interchange,transportation_location,transport_interchange,travel > transportation > transport_interchange -travel,travel_and_transportation > travel,travel_service,travel,travel -travel,travel_and_transportation > travel,travel_service,travel_services,travel > travel_services -agriturism,travel_and_transportation > travel > agriturism,travel_service,agriturismo,travel > agriturismo -luggage_storage,travel_and_transportation > travel > luggage_storage,luggage_storage,luggage_storage,travel > travel_services > luggage_storage -passport_and_visa_service,travel_and_transportation > travel > passport_and_visa_service,passport_visa_service,passport_and_visa_services,travel > travel_services > passport_and_visa_services -visa_agent,travel_and_transportation > travel > passport_and_visa_service > visa_agent,passport_visa_service,visa_agent,travel > travel_services > passport_and_visa_services > visa_agent -tour,travel_and_transportation > travel > tour,tour_operator,tours,travel > tours -aerial_tour,travel_and_transportation > travel > tour > aerial_tour,tour_operator,aerial_tours,travel > tours > aerial_tours -architectural_tour,travel_and_transportation > travel > tour > architectural_tour,tour_operator,architectural_tours,travel > tours > architectural_tours -art_tour,travel_and_transportation > travel > tour > art_tour,tour_operator,art_tours,travel > tours > art_tours -beer_tour,travel_and_transportation > travel > tour > beer_tour,tour_operator,beer_tours,travel > tours > beer_tours -bike_tour,travel_and_transportation > travel > tour > bike_tour,tour_operator,bike_tours,travel > tours > bike_tours -boat_tour,travel_and_transportation > travel > tour > boat_tour,tour_operator,boat_tours,travel > tours > boat_tours -bus_tour,travel_and_transportation > travel > tour > bus_tour,tour_operator,bus_tours,travel > tours > bus_tours -cannabis_tour,travel_and_transportation > travel > tour > cannabis_tour,tour_operator,cannabis_tour,travel > tours > cannabis_tour -food_tour,travel_and_transportation > travel > tour > food_tour,tour_operator,food_tours,travel > tours > food_tours -historical_tour,travel_and_transportation > travel > tour > historical_tour,tour_operator,historical_tours,travel > tours > historical_tours -hot_air_balloons_tour,travel_and_transportation > travel > tour > hot_air_balloons_tour,tour_operator,hot_air_balloons_tour,attractions_and_activities > hot_air_balloons_tour -scooter_tour,travel_and_transportation > travel > tour > scooter_tour,tour_operator,scooter_tours,travel > tours > scooter_tours -sightseeing_tour_agency,travel_and_transportation > travel > tour > sightseeing_tour_agency,tour_operator,sightseeing_tour_agency,travel > travel_services > travel_agents > sightseeing_tour_agency -walking_tour,travel_and_transportation > travel > tour > walking_tour,tour_operator,walking_tours,travel > tours > walking_tours -whale_watching_tour,travel_and_transportation > travel > tour > whale_watching_tour,tour_operator,whale_watching_tours,travel > tours > whale_watching_tours -wine_tour,travel_and_transportation > travel > tour > wine_tour,tour_operator,wine_tours,travel > tours > wine_tours -travel_agent,travel_and_transportation > travel > travel_agent,travel_agent,travel_agents,travel > travel_services > travel_agents -vacation_rental_agent,travel_and_transportation > travel > vacation_rental_agent,property_management_service,vacation_rental_agents,travel > vacation_rental_agents -visitor_center,travel_and_transportation > travel > visitor_center,visitor_information_center,visitor_center,travel > travel_services > visitor_center -watercraft_and_water_transport,travel_and_transportation > watercraft_and_water_transport,transportation_location,, -boat_dealer,travel_and_transportation > watercraft_and_water_transport > boat_dealer,boat_dealer,boat_dealer,automotive > boat_dealer -boat_service_and_repair,travel_and_transportation > watercraft_and_water_transport > boat_service_and_repair,vehicle_service,boat_service_and_repair,automotive > boat_service_and_repair -ferry_service,travel_and_transportation > watercraft_and_water_transport > ferry_service,ferry_service,ferry_service,travel > transportation > ferry_service -water_taxi,travel_and_transportation > watercraft_and_water_transport > water_taxi,water_taxi_service,water_taxi,travel > transportation > water_taxi -waterway,travel_and_transportation > watercraft_and_water_transport > waterway,waterway,, -canal,travel_and_transportation > watercraft_and_water_transport > waterway > canal,canal,canal,structure_and_geography > canal -marina,travel_and_transportation > watercraft_and_water_transport > waterway > marina,marina,marina,attractions_and_activities > marina \ No newline at end of file diff --git a/docs/guides/places/csv/2025-12-05-counts.csv b/docs/guides/places/csv/2025-12-05-counts.csv deleted file mode 100644 index 26bb77f75..000000000 --- a/docs/guides/places/csv/2025-12-05-counts.csv +++ /dev/null @@ -1,2077 +0,0 @@ -_col0,primary_category,basic_category,primary,hierarchy,alternates -720,3d_printing_service,printing_service,3d_printing_service,"[""services_and_business"",""professional_service"",""3d_printing_service""]", -412,abortion_clinic,clinic_or_treatment_center,abortion_clinic,"[""health_care"",""abortion_clinic""]", -94,abrasives_supplier,b2b_supplier_distributor,abrasives_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""abrasives_supplier""]", -19450,abuse_and_addiction_treatment,clinic_or_treatment_center,abuse_and_addiction_treatment,"[""health_care"",""abuse_and_addiction_treatment""]", -1189,academic_bookstore,bookstore,academic_bookstore,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""bookstore"",""academic_bookstore""]", -294,acai_bowls,restaurant,acai_bowls,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""acai_bowls""]", -374785,accommodation,accommodation,lodging,"[""lodging""]", -154132,accountant,accountant_or_bookkeeper,accountant,"[""services_and_business"",""financial_service"",""accountant""]", -31,acne_treatment,personal_service,acne_treatment,"[""lifestyle_services"",""beauty_service"",""acne_treatment""]", -199,acoustical_consultant,service_location,acoustical_consultant,"[""services_and_business"",""professional_service"",""acoustical_consultant""]", -179150,active_life,recreational_location,sports_and_recreation,"[""sports_and_recreation""]", -41246,acupuncture,alternative_medicine,acupuncture,"[""health_care"",""acupuncture""]", -2007,addiction_rehabilitation_center,clinic_or_treatment_center,addiction_rehabilitation_center,"[""health_care"",""rehabilitation_center"",""addiction_rehabilitation_center""]", -867,adoption_services,adoption_service,adoption_service,"[""services_and_business"",""professional_service"",""adoption_service""]", -8456,adult_education,place_of_learning,adult_education,"[""education"",""adult_education""]", -13561,adult_entertainment,entertainment_location,adult_entertainment_venue,"[""arts_and_entertainment"",""nightlife_venue"",""adult_entertainment_venue""]", -1723,adult_store,specialty_store,adult_store,"[""shopping"",""specialty_store"",""adult_store""]", -854,adventure_sports_center,sport_fitness_facility,adventure_sports_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""adventure_sports_center""]", -256464,advertising_agency,business_advertising_marketing,advertising_agency,"[""services_and_business"",""professional_service"",""advertising_agency""]", -28,aerial_fitness_center,fitness_studio,aerial_fitness_center,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""aerial_fitness_center""]", -68,aerial_tours,tour_operator,aerial_tour,"[""travel_and_transportation"",""travel"",""tour"",""aerial_tour""]", -217,aesthetician,plastic_reconstructive_and_aesthetic_surgery,aesthetician,"[""health_care"",""aesthetician""]", -2009,afghan_restaurant,restaurant,afghani_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""central_asian_restaurant"",""afghani_restaurant""]", -7708,african_restaurant,restaurant,african_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant""]", -909,after_school_program,educational_service,after_school_program,"[""services_and_business"",""professional_service"",""after_school_program""]", -168,aggregate_supplier,b2b_supplier_distributor,aggregate_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""aggregate_supplier""]", -24245,agricultural_cooperatives,agricultural_service,agricultural_cooperative,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""agricultural_cooperative""]", -18,agricultural_engineering_service,agricultural_service,agricultural_service,"[""services_and_business"",""agricultural_service""]", -215,agricultural_production,agricultural_area,agricultural_production,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""agricultural_production""]", -195,agricultural_seed_store,specialty_store,agricultural_seed_store,"[""shopping"",""specialty_store"",""agricultural_seed_store""]", -89295,agricultural_service,agricultural_service,agricultural_service,"[""services_and_business"",""agricultural_service""]", -62301,agriculture,agricultural_area,agriculture,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""agriculture""]", -673,agriculture_association,civic_organization_office,agriculture_association,"[""community_and_government"",""organization"",""agriculture_association""]", -977,agriturismo,travel_service,agriturism,"[""travel_and_transportation"",""travel"",""agriturism""]", -1094,air_duct_cleaning_service,hvac_service,air_duct_cleaning_service,"[""services_and_business"",""professional_service"",""air_duct_cleaning_service""]", -535,aircraft_dealer,vehicle_dealer,aircraft_dealer,"[""travel_and_transportation"",""aircraft_and_air_transport"",""aircraft_dealer""]", -581,aircraft_manufacturer,manufacturer,aircraft_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""aircraft_manufacturer""]", -88,aircraft_parts_and_supplies,air_transport_facility_service,aircraft_parts_and_supplies,"[""travel_and_transportation"",""aircraft_and_air_transport"",""aircraft_parts_and_supplies""]", -804,aircraft_repair,vehicle_service,aircraft_repair,"[""travel_and_transportation"",""aircraft_and_air_transport"",""aircraft_repair""]", -6825,airline,air_transport_facility_service,airline,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airline""]", -103,airline_ticket_agency,air_transport_facility_service,airline_ticket_agency,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airline_ticket_agency""]", -4636,airlines,air_transport_facility_service,airline,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airline""]", -58660,airport,airport,airport,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport""]", -4106,airport_lounge,eating_drinking_location,airport_lounge,"[""food_and_drink"",""lounge"",""airport_lounge""]", -4404,airport_shuttles,air_transport_facility_service,airport_shuttle,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport_shuttle""]", -7084,airport_terminal,airport_terminal,airport_terminal,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport"",""airport_terminal""]", -50,airsoft_fields,sport_field,airsoft_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""airsoft_field""]", -480,alcohol_and_drug_treatment_center,clinic_or_treatment_center,alcohol_and_drug_treatment_center,"[""health_care"",""alcohol_and_drug_treatment_center""]", -3778,alcohol_and_drug_treatment_centers,clinic_or_treatment_center,alcohol_and_drug_treatment_center,"[""health_care"",""alcohol_and_drug_treatment_center""]", -6195,allergist,allergy_and_immunology,allergist,"[""health_care"",""doctor"",""allergist""]", -3690,altering_and_remodeling_contractor,building_contractor_service,altering_and_remodeling_contractor,"[""services_and_business"",""home_service"",""contractor"",""altering_and_remodeling_contractor""]", -18466,alternative_medicine,alternative_medicine,alternative_medicine,"[""health_care"",""alternative_medicine""]", -371,aluminum_supplier,b2b_supplier_distributor,aluminum_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""aluminum_supplier""]", -816,amateur_sports_league,amateur_sport_league,amateur_sports_league,"[""sports_and_recreation"",""sports_club_and_league"",""amateur_sports_league""]", -20152,amateur_sports_team,amateur_sport_team,amateur_sports_team,"[""sports_and_recreation"",""sports_club_and_league"",""amateur_sports_team""]", -22158,ambulance_and_ems_services,ambulance_ems_service,ambulance_and_ems_service,"[""health_care"",""ambulance_and_ems_service""]", -203,american_football_field,sport_field,american_football_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""american_football_field""]", -84933,american_restaurant,restaurant,american_restaurant,"[""food_and_drink"",""restaurant"",""north_american_restaurant"",""american_restaurant""]", -45836,amusement_park,amusement_park,amusement_park,"[""arts_and_entertainment"",""amusement_attraction"",""amusement_park""]", -4164,anesthesiologist,healthcare_location,anesthesiologist,"[""health_care"",""doctor"",""anesthesiologist""]", -20263,anglican_church,christian_place_of_worshop,anglican_or_episcopal_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""protestant_place_of_worship"",""anglican_or_episcopal_place_of_worshop""]", -2,animal_assisted_therapy,psychotherapy,animal_assisted_therapy,"[""health_care"",""animal_assisted_therapy""]", -1847,animal_hospital,animal_hospital,animal_hospital,"[""lifestyle_services"",""pets"",""veterinary_care"",""animal_hospital""]", -16,animal_physical_therapy,animal_service,animal_physical_therapy,"[""lifestyle_services"",""pets"",""veterinary_care"",""animal_physical_therapy""]", -3766,animal_rescue_service,animal_rescue,animal_rescue_service,"[""lifestyle_services"",""pets"",""adoption_and_rescue"",""animal_rescue_service""]", -23427,animal_shelter,animal_shelter,animal_shelter,"[""lifestyle_services"",""pets"",""adoption_and_rescue"",""animal_shelter""]", -1512,animation_studio,media_service,animation_studio,"[""services_and_business"",""media_and_news"",""media_news_company"",""animation_studio""]", -100,antenna_service,home_service,antenna_service,"[""services_and_business"",""professional_service"",""antenna_service""]", -70224,antique_store,antique_shop,antique_store,"[""shopping"",""second_hand_store"",""antique_store""]", -1175,apartment_agent,property_management_service,apartment_agent,"[""services_and_business"",""real_estate"",""real_estate_agent"",""apartment_agent""]", -32630,apartments,apartment_building,apartment,"[""services_and_business"",""real_estate"",""apartment""]", -20,apiaries_and_beekeepers,farm,apiary_beekeeper,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""apiary_beekeeper""]", -3043,appellate_practice_lawyers,attorney_or_law_firm,appellate_practice_lawyer,"[""services_and_business"",""professional_service"",""lawyer"",""appellate_practice_lawyer""]", -17912,appliance_manufacturer,manufacturer,appliance_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""appliance_manufacturer""]", -45263,appliance_repair_service,applicance_repair_service,appliance_repair_service,"[""services_and_business"",""professional_service"",""appliance_repair_service""]", -66989,appliance_store,specialty_store,appliance_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""appliance_store""]", -28926,appraisal_services,building_appraisal_service,appraisal_service,"[""services_and_business"",""professional_service"",""appraisal_service""]", -7020,aquarium,aquarium,aquarium,"[""arts_and_entertainment"",""animal_attraction"",""aquarium""]", -93,aquarium_services,animal_service,aquarium_service,"[""lifestyle_services"",""pets"",""pet_care_service"",""aquarium_service""]", -12268,aquatic_pet_store,pet_store,aquatic_pet_store,"[""shopping"",""specialty_store"",""pet_store"",""aquatic_pet_store""]", -2405,arabian_restaurant,restaurant,arabian_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""arabian_restaurant""]", -29099,arcade,arcade,arcade,"[""arts_and_entertainment"",""gaming_venue"",""arcade""]", -817,archaeological_services,educational_service,archaeological_service,"[""education"",""educational_service"",""archaeological_service""]", -2942,archery_range,shooting_range,archery_range,"[""sports_and_recreation"",""sports_and_recreation_venue"",""archery_range""]", -1347,archery_shop,sporting_goods_store,archery_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""archery_store""]", -11878,architect,architectural_design_service,architect,"[""services_and_business"",""professional_service"",""architect""]", -103276,architectural_designer,architectural_design_service,architectural_designer,"[""services_and_business"",""professional_service"",""architectural_designer""]", -92,architectural_tours,tour_operator,architectural_tour,"[""travel_and_transportation"",""travel"",""tour"",""architectural_tour""]", -280,architecture,historic_site,architectural_landmark,"[""cultural_and_historic"",""architectural_landmark""]", -63,architecture_schools,college_university,architecture_school,"[""education"",""college_university"",""architecture_school""]", -4464,argentine_restaurant,restaurant,argentine_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""argentine_restaurant""]", -34671,armed_forces_branch,military_site,armed_forces_branch,"[""community_and_government"",""armed_forces_branch""]", -385,armenian_restaurant,restaurant,armenian_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""armenian_restaurant""]", -18,army_and_navy_store,specialty_store,army_and_navy_store,"[""shopping"",""specialty_store"",""army_and_navy_store""]", -4646,aromatherapy,personal_service,aromatherapy,"[""lifestyle_services"",""aromatherapy""]", -156966,art_gallery,art_gallery,art_gallery,"[""arts_and_entertainment"",""arts_and_crafts_space"",""art_gallery""]", -15309,art_museum,art_museum,art_museum,"[""arts_and_entertainment"",""museum"",""art_museum""]", -2283,art_restoration,media_service,art_restoration_service,"[""services_and_business"",""professional_service"",""art_restoration_service""]", -454,art_restoration_service,media_service,art_restoration_service,"[""services_and_business"",""professional_service"",""art_restoration_service""]", -34737,art_school,specialty_school,art_school,"[""education"",""specialty_school"",""art_school""]", -1,art_space_rental,artspace,art_space_rental,"[""services_and_business"",""real_estate"",""art_space_rental""]", -1180,art_supply_store,art_craft_hobby_store,art_supply_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""art_supply_store""]", -21,art_tours,tour_operator,art_tour,"[""travel_and_transportation"",""travel"",""tour"",""art_tour""]", -173,artificial_turf,home_service,artificial_turf,"[""services_and_business"",""home_service"",""artificial_turf""]", -145313,arts_and_crafts,art_craft_hobby_store,arts_and_crafts_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store""]", -193966,arts_and_entertainment,entertainment_location,arts_and_entertainment,"[""arts_and_entertainment""]", -57,asian_art_museum,art_museum,asian_art_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""asian_art_museum""]", -9741,asian_fusion_restaurant,restaurant,asian_fusion_restaurant,"[""food_and_drink"",""restaurant"",""international_fusion_restaurant"",""asian_fusion_restaurant""]", -444,asian_grocery_store,grocery_store,asian_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""asian_grocery_store""]", -84040,asian_restaurant,restaurant,asian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant""]", -37958,assisted_living_facility,senior_living_facility,assisted_living_facility,"[""health_care"",""assisted_living_facility""]", -8133,astrologer,astrological_advising,astrological_advising,"[""arts_and_entertainment"",""spiritual_advising"",""astrological_advising""]", -41,atelier,art_craft_hobby_store,atelier,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""atelier""]", -393056,atms,atm,atm,"[""services_and_business"",""financial_service"",""atm""]", -169,attraction_farm,farm,attraction_farm,"[""arts_and_entertainment"",""rural_attraction"",""attraction_farm""]", -112944,attractions_and_activities,entertainment_location,arts_and_entertainment,"[""arts_and_entertainment""]", -706,atv_recreation_park,sport_fitness_facility,atv_recreation_park,"[""sports_and_recreation"",""sports_and_recreation_venue"",""atv_recreation_park""]", -1736,atv_rentals_and_tours,recreational_equipment_rental_service,atv_rental_tour,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""atv_rental_tour""]", -16844,auction_house,specialty_store,auction_house,"[""shopping"",""specialty_store"",""auction_house""]", -17455,audio_visual_equipment_store,electronics_store,audio_visual_equipment_store,"[""shopping"",""specialty_store"",""electronics_store"",""audio_visual_equipment_store""]", -198,audio_visual_production_and_design,b2b_service,audio_visual_production_and_design,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""audio_visual_production_and_design""]", -19652,audiologist,healthcare_location,audiologist,"[""health_care"",""doctor"",""audiologist""]", -4925,audiovisual_equipment_rental,event_or_party_service,audiovisual_equipment_rental,"[""services_and_business"",""professional_service"",""event_planning"",""audiovisual_equipment_rental""]", -20620,auditorium,event_space,auditorium,"[""arts_and_entertainment"",""event_venue"",""auditorium""]", -2056,australian_restaurant,restaurant,australian_restaurant,"[""food_and_drink"",""restaurant"",""pacific_rim_restaurant"",""australian_restaurant""]", -3369,austrian_restaurant,restaurant,austrian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""austrian_restaurant""]", -86099,auto_body_shop,auto_body_shop,auto_body_shop,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_body_shop""]", -51078,auto_company,corporate_or_business_office,auto_company,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""auto_company""]", -21278,auto_customization,vehicle_service,auto_customization,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_customization""]", -118957,auto_detailing,auto_detailing_service,auto_detailing,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_detailing""]", -7060,auto_electrical_repair,auto_repair_service,auto_electrical_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""auto_electrical_repair""]", -31528,auto_glass_service,auto_glass_service,auto_glass_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_glass_service""]", -38845,auto_insurance,insurance_agency,auto_insurance,"[""services_and_business"",""financial_service"",""insurance_agency"",""auto_insurance""]", -6561,auto_loan_provider,loan_provider,auto_loan_provider,"[""services_and_business"",""financial_service"",""installment_loans"",""auto_loan_provider""]", -13070,auto_manufacturers_and_distributors,manufacturer,auto_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""auto_manufacturer""]", -33206,auto_parts_and_supply_store,specialty_store,auto_parts_store,"[""shopping"",""specialty_store"",""vehicle_parts_store"",""auto_parts_store""]", -12846,auto_restoration_services,vehicle_service,auto_restoration_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_restoration_service""]", -1269,auto_security,vehicle_service,auto_security,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_security""]", -3733,auto_upholstery,vehicle_service,auto_upholstery,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_upholstery""]", -19605,automation_services,b2b_service,automation_service,"[""services_and_business"",""business_to_business"",""commercial_industrial"",""automation_service""]", -4993,automobile_leasing,vehicle_dealer,automobile_leasing,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automobile_leasing""]", -3646,automobile_registration_service,vehicle_service,automobile_registration_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automobile_registration_service""]", -166047,automotive,transportation_location,automotive,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive""]", -8945,automotive_consultant,vehicle_service,automotive_consultant,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_consultant""]", -116802,automotive_dealer,vehicle_dealer,vehicle_dealer,"[""shopping"",""vehicle_dealer""]", -306009,automotive_parts_and_accessories,specialty_store,automotive_parts_and_accessories,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories""]", -895567,automotive_repair,auto_repair_service,automotive_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair""]", -74830,automotive_services_and_repair,vehicle_service,automotive_services_and_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair""]", -2560,automotive_storage_facility,storage_facility,automotive_storage_facility,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_storage_facility""]", -366,automotive_wheel_polishing_service,vehicle_service,automotive_wheel_polishing_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_wheel_polishing_service""]", -307,aviation_museum,science_museum,aviation_museum,"[""arts_and_entertainment"",""museum"",""aviation_museum""]", -405,avionics_shop,air_transport_facility_service,avionics_shop,"[""travel_and_transportation"",""aircraft_and_air_transport"",""aircraft_parts_and_supplies"",""avionics_shop""]", -765,awning_supplier,b2b_supplier_distributor,awning_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""awning_supplier""]", -25,axe_throwing,sport_fitness_facility,axe_throwing,"[""sports_and_recreation"",""adventure_sport"",""axe_throwing""]", -250,ayurveda,alternative_medicine,ayurveda,"[""health_care"",""ayurveda""]", -57,azerbaijani_restaurant,restaurant,azerbaijani_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""azerbaijani_restaurant""]", -78,b2b_agriculture_and_food,agricultural_service,b2b_agriculture_and_food,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food""]", -5899,b2b_apparel,b2b_supplier_distributor,b2b_apparel,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_apparel""]", -173,b2b_autos_and_vehicles,b2b_supplier_distributor,b2b_autos_and_vehicles,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_autos_and_vehicles""]", -5946,b2b_cleaning_and_waste_management,b2b_service,b2b_cleaning_and_waste_management,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service_for_business"",""b2b_cleaning_and_waste_management""]", -78,b2b_dairies,farm,b2b_dairy,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_dairy""]", -12967,b2b_electronic_equipment,b2b_supplier_distributor,electronic_equipment_supplier,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""electronic_equipment_supplier""]", -792,b2b_energy_and_mining,b2b_service,b2b_energy_and_mining,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining""]", -566,b2b_equipment_maintenance_and_repair,b2b_supplier_distributor,b2b_equipment_maintenance_and_repair,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_machinery_and_tools"",""b2b_equipment_maintenance_and_repair""]", -12,b2b_farming,farm,b2b_farming,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming""]", -75,b2b_farms,farm,b2b_farm,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""b2b_farm""]", -1142,b2b_food_products,agricultural_service,b2b_food_products,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_food_products""]", -471,b2b_forklift_dealers,vehicle_dealer,forklift_dealer,"[""shopping"",""vehicle_dealer"",""forklift_dealer""]", -473,b2b_furniture_and_housewares,b2b_supplier_distributor,b2b_furniture_and_housewares,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_furniture_and_housewares""]", -135,b2b_hardware,b2b_supplier_distributor,b2b_hardware,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_hardware""]", -16335,b2b_jewelers,b2b_supplier_distributor,b2b_jeweler,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_jeweler""]", -1340,b2b_machinery_and_tools,b2b_supplier_distributor,b2b_machinery_and_tools,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_machinery_and_tools""]", -207,b2b_medical_support_services,b2b_service,b2b_medical_support_service,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service""]", -1009,b2b_oil_and_gas_extraction_and_services,oil_or_gas_facility,oil_and_gas_extraction,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""oil_and_gas"",""oil_and_gas_extraction""]", -1541,b2b_rubber_and_plastics,b2b_supplier_distributor,b2b_rubber_and_plastics,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_rubber_and_plastics""]", -13389,b2b_science_and_technology,b2b_service,b2b_science_and_technology,"[""services_and_business"",""business_to_business"",""b2b_science_and_technology""]", -467,b2b_scientific_equipment,b2b_service,b2b_scientific_equipment,"[""services_and_business"",""business_to_business"",""b2b_science_and_technology"",""b2b_scientific_equipment""]", -338,b2b_sporting_and_recreation_goods,b2b_supplier_distributor,b2b_sporting_and_recreation_goods,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_sporting_and_recreation_goods""]", -100,b2b_storage_and_warehouses,b2b_service,b2b_storage,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""b2b_storage""]", -30564,b2b_textiles,b2b_supplier_distributor,b2b_textiles,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_textiles""]", -79,b2b_tires,b2b_supplier_distributor,b2b_tires,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_autos_and_vehicles"",""b2b_tires""]", -1666,b2b_tractor_dealers,b2b_supplier_distributor,tractor_dealer,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""truck_and_industrial_vehicle_services"",""tractor_dealer""]", -1395,b2b_truck_equipment_parts_and_accessories,b2b_supplier_distributor,truck_parts_and_accessories,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""truck_and_industrial_vehicle_services"",""truck_parts_and_accessories""]", -5467,baby_gear_and_furniture,specialty_store,baby_gear_and_furniture_store,"[""shopping"",""specialty_store"",""baby_gear_and_furniture_store""]", -70,back_shop,retail_location,shopping,"[""shopping""]", -67,backflow_services,home_service,backflow_service,"[""services_and_business"",""home_service"",""plumbing"",""backflow_service""]", -24,background_check_services,human_resource_service,background_check_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""human_resource_service"",""background_check_service""]", -4,backpacking_area,recreational_trail,backpacking_area,"[""sports_and_recreation"",""park"",""backpacking_area""]", -3747,badminton_court,sport_court,badminton_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""badminton_court""]", -968,bagel_restaurant,casual_eatery,bagel_shop,"[""food_and_drink"",""casual_eatery"",""bagel_shop""]", -10312,bagel_shop,casual_eatery,bagel_shop,"[""food_and_drink"",""casual_eatery"",""bagel_shop""]", -1014,bags_luggage_company,specialty_store,bags_luggage_company,"[""services_and_business"",""business"",""bags_luggage_company""]", -6490,bail_bonds_service,bail_bonds_service,bail_bonds_service,"[""services_and_business"",""professional_service"",""bail_bonds_service""]", -535707,bakery,bakery,bakery,"[""food_and_drink"",""casual_eatery"",""bakery""]", -89,balloon_ports,airport,balloon_port,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport"",""balloon_port""]", -371,balloon_services,event_or_party_service,balloon_service,"[""services_and_business"",""professional_service"",""event_planning"",""balloon_service""]", -1521,bangladeshi_restaurant,restaurant,bangladeshi_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""south_asian_restaurant"",""bangladeshi_restaurant""]", -398302,bank_credit_union,financial_service,bank_credit_union,"[""services_and_business"",""financial_service"",""bank_credit_union""]", -415,bank_equipment_service,b2b_service,bank_equipment_service,"[""services_and_business"",""professional_service"",""bank_equipment_service""]", -7873,bankruptcy_law,attorney_or_law_firm,bankruptcy_law,"[""services_and_business"",""professional_service"",""lawyer"",""bankruptcy_law""]", -304559,banks,bank,bank,"[""services_and_business"",""financial_service"",""bank_credit_union"",""bank""]", -89609,baptist_church,christian_place_of_worshop,baptist_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""protestant_place_of_worship"",""baptist_place_of_worshop""]", -730509,bar,bar,bar,"[""food_and_drink"",""bar""]", -74962,bar_and_grill_restaurant,bar_and_grill,bar_and_grill_restaurant,"[""food_and_drink"",""restaurant"",""bar_and_grill_restaurant""]", -3,bar_crawl,social_club,bar_crawl,"[""arts_and_entertainment"",""nightlife_venue"",""bar_crawl""]", -130964,barbecue_restaurant,restaurant,barbecue_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""barbecue_restaurant""]", -387077,barber,barber_shop,barber,"[""lifestyle_services"",""beauty_service"",""barber""]", -364,barre_classes,fitness_studio,barre_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""barre_class""]", -2566,bartender,event_or_party_service,bartender,"[""services_and_business"",""professional_service"",""event_planning"",""bartender""]", -649,bartending_school,specialty_school,bartending_school,"[""education"",""specialty_school"",""bartending_school""]", -18639,baseball_field,sport_field,baseball_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""baseball_field""]", -1401,baseball_stadium,sport_stadium,baseball_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""baseball_stadium""]", -8328,basketball_court,sport_court,basketball_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""basketball_court""]", -863,basketball_stadium,sport_stadium,basketball_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""basketball_stadium""]", -903,basque_restaurant,restaurant,basque_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""iberian_restaurant"",""spanish_restaurant"",""basque_restaurant""]", -279,bathroom_fixture_stores,specialty_store,bathroom_fixture_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""kitchen_and_bath_store"",""bathroom_fixture_store""]", -6114,bathroom_remodeling,remodeling_service,bathroom_remodeling,"[""services_and_business"",""home_service"",""bathroom_remodeling""]", -263,bathtub_and_sink_repairs,home_service,bathtub_and_sink_repair,"[""services_and_business"",""home_service"",""bathtub_and_sink_repair""]", -1,battery_inverter_supplier,b2b_supplier_distributor,battery_inverter_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""battery_inverter_supplier""]", -3232,battery_store,electronics_store,battery_store,"[""shopping"",""specialty_store"",""electronics_store"",""battery_store""]", -2234,batting_cage,sport_fitness_facility,batting_cage,"[""sports_and_recreation"",""sports_and_recreation_venue"",""batting_cage""]", -10,bazaars,specialty_store,bazaar,"[""shopping"",""specialty_store"",""bazaar""]", -176335,beach,beach,beach,"[""geographic_entities"",""beach""]", -922,beach_bar,bar,beach_bar,"[""food_and_drink"",""bar"",""beach_bar""]", -937,beach_equipment_rentals,water_sport_equipment_rental_service,beach_equipment_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""beach_equipment_rental""]", -4349,beach_resort,resort,beach_resort,"[""lodging"",""resort"",""beach_resort""]", -24,beach_volleyball_court,sport_court,beach_volleyball_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""beach_volleyball_court""]", -325,bearing_supplier,b2b_supplier_distributor,bearing_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""bearing_supplier""]", -421208,beauty_and_spa,beauty_salon,beauty_service,"[""lifestyle_services"",""beauty_service""]", -22653,beauty_product_supplier,b2b_supplier_distributor,beauty_product_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""beauty_product_supplier""]", -1393271,beauty_salon,beauty_salon,beauty_salon,"[""lifestyle_services"",""beauty_service"",""beauty_salon""]", -170403,bed_and_breakfast,bed_and_breakfast,bed_and_breakfast,"[""lodging"",""bed_and_breakfast""]", -1656,bedding_and_bath_stores,specialty_store,bedding_and_bath_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""bedding_and_bath_store""]", -25148,beer_bar,bar,beer_bar,"[""food_and_drink"",""bar"",""beer_bar""]", -18277,beer_garden,eating_drinking_location,beer_garden,"[""food_and_drink"",""brewery_winery_distillery"",""beer_garden""]", -25,beer_tours,tour_operator,beer_tour,"[""travel_and_transportation"",""travel"",""tour"",""beer_tour""]", -13617,beer_wine_and_spirits,food_or_beverage_store,beer_wine_spirits_store,"[""shopping"",""food_and_beverage_store"",""beer_wine_spirits_store""]", -135,behavior_analyst,mental_health,behavior_analyst,"[""health_care"",""behavior_analyst""]", -40,belarusian_restaurant,restaurant,belarusian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""belarusian_restaurant""]", -3908,belgian_restaurant,restaurant,belgian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""belgian_restaurant""]", -3,belizean_restaurant,restaurant,belizean_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""belizean_restaurant""]", -20057,betting_center,gaming_venue,betting_center,"[""arts_and_entertainment"",""gaming_venue"",""betting_center""]", -20918,beverage_store,beverage_shop,beverage_shop,"[""food_and_drink"",""beverage_shop""]", -8485,beverage_supplier,b2b_supplier_distributor,beverage_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""beverage_supplier""]", -10,bicycle_path,bicycle_path,bike_path,"[""sports_and_recreation"",""sports_and_recreation_venue"",""bike_path""]", -6,bicycle_sharing_location,transportation_location,bike_sharing_location,"[""travel_and_transportation"",""bikes_and_bike_service"",""bike_sharing_location""]", -93453,bicycle_shop,sporting_goods_store,bike_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""bike_store""]", -19,bike_parking,parking,bike_parking,"[""travel_and_transportation"",""bikes_and_bike_service"",""bike_parking""]", -13535,bike_rentals,bicycle_rental_service,bike_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""bike_rental""]", -12662,bike_repair_maintenance,vehicle_service,bike_repair_maintenance,"[""services_and_business"",""professional_service"",""bike_repair_maintenance""]", -4,bike_sharing,transportation_location,bike_sharing_location,"[""travel_and_transportation"",""bikes_and_bike_service"",""bike_sharing_location""]", -66,bike_tours,tour_operator,bike_tour,"[""travel_and_transportation"",""travel"",""tour"",""bike_tour""]", -636,billing_services,b2b_service,billing_service,"[""services_and_business"",""professional_service"",""billing_service""]", -3038,bingo_hall,bingo_hall,bingo_hall,"[""arts_and_entertainment"",""gaming_venue"",""bingo_hall""]", -7851,biotechnology_company,b2b_service,biotechnology_company,"[""services_and_business"",""business"",""biotechnology_company""]", -173,bird_shop,pet_store,bird_shop,"[""shopping"",""specialty_store"",""pet_store"",""bird_shop""]", -6482,bistro,casual_eatery,bistro,"[""food_and_drink"",""casual_eatery"",""bistro""]", -269,blacksmiths,b2b_service,blacksmith,"[""services_and_business"",""professional_service"",""construction_service"",""blacksmith""]", -8350,blood_and_plasma_donation_center,clinic_or_treatment_center,blood_and_plasma_donation_center,"[""health_care"",""blood_and_plasma_donation_center""]", -245,blow_dry_blow_out_service,hair_salon,blow_dry_blow_out_service,"[""lifestyle_services"",""beauty_service"",""hair_salon"",""blow_dry_blow_out_service""]", -83,blueprinters,building_construction_service,blueprinter,"[""services_and_business"",""professional_service"",""construction_service"",""blueprinter""]", -299,board_of_education_offices,government_office,board_of_education_office,"[""education"",""board_of_education_office""]", -171,boat_builder,b2b_service,boat_builder,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""boat_builder""]", -768,boat_charter,event_or_party_service,boat_charter,"[""services_and_business"",""professional_service"",""event_planning"",""boat_charter""]", -13937,boat_dealer,boat_dealer,boat_dealer,"[""travel_and_transportation"",""watercraft_and_water_transport"",""boat_dealer""]", -5309,boat_parts_and_accessories,specialty_store,boat_parts_store,"[""shopping"",""specialty_store"",""vehicle_parts_store"",""boat_parts_store""]", -863,boat_parts_and_supply_store,specialty_store,boat_parts_store,"[""shopping"",""specialty_store"",""vehicle_parts_store"",""boat_parts_store""]", -16738,boat_rental_and_training,water_sport_equipment_rental_service,boat_rental_and_training,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""boat_rental_and_training""]", -12586,boat_service_and_repair,vehicle_service,boat_service_and_repair,"[""travel_and_transportation"",""watercraft_and_water_transport"",""boat_service_and_repair""]", -487,boat_storage_facility,storage_facility,boat_storage_facility,"[""services_and_business"",""professional_service"",""storage_facility"",""boat_storage_facility""]", -10061,boat_tours,tour_operator,boat_tour,"[""travel_and_transportation"",""travel"",""tour"",""boat_tour""]", -2,boating_places,recreational_location,boating_place,"[""sports_and_recreation"",""water_sport"",""boating_place""]", -1,bobsledding_field,sport_fitness_facility,bobsledding_field,"[""sports_and_recreation"",""snow_sport"",""bobsledding_field""]", -2,bocce_ball_court,sport_court,bocce_ball_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""bocce_ball_court""]", -28,body_contouring,plastic_reconstructive_and_aesthetic_surgery,body_contouring,"[""health_care"",""body_contouring""]", -59,bolivian_restaurant,restaurant,bolivian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""bolivian_restaurant""]", -2596,book_magazine_distribution,print_media_service,book_magazine_distribution,"[""services_and_business"",""media_and_news"",""media_news_company"",""book_magazine_distribution""]", -369,bookbinding,media_service,bookbinding,"[""services_and_business"",""professional_service"",""bookbinding""]", -1851,bookkeeper,accountant_or_bookkeeper,bookkeeper,"[""services_and_business"",""professional_service"",""bookkeeper""]", -1428,bookmakers,media_service,bookbinding,"[""services_and_business"",""professional_service"",""bookbinding""]", -6484,books_mags_music_and_video,specialty_store,books_mags_music_video_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store""]", -147207,bookstore,bookstore,bookstore,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""bookstore""]", -5950,boot_camp,fitness_studio,boot_camp,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""boot_camp""]", -9393,botanical_garden,garden,botanical_garden,"[""geographic_entities"",""garden"",""botanical_garden""]", -17177,bottled_water_company,food_or_beverage_store,bottled_water_company,"[""services_and_business"",""business"",""bottled_water_company""]", -62,boudoir_photography,photography_service,boudoir_photography,"[""services_and_business"",""professional_service"",""event_planning"",""boudoir_photography""]", -335,bounce_house_rental,event_or_party_service,bounce_house_rental,"[""services_and_business"",""professional_service"",""event_planning"",""bounce_house_rental""]", -92772,boutique,fashion_or_apparel_store,fashion_boutique,"[""shopping"",""fashion_and_apparel_store"",""fashion_boutique""]", -18672,bowling_alley,bowling_alley,bowling_alley,"[""sports_and_recreation"",""sports_and_recreation_venue"",""bowling_alley""]", -58,box_lunch_supplier,food_or_beverage_store,box_lunch_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""box_lunch_supplier""]", -12293,boxing_class,sport_fitness_facility,boxing_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""boxing_class""]", -389,boxing_club,sport_fitness_facility,boxing_gym,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""boxing_gym""]", -752,boxing_gym,sport_fitness_facility,boxing_gym,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""boxing_gym""]", -12102,brake_service_and_repair,auto_repair_service,brake_service_and_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""brake_service_and_repair""]", -1628,brasserie,restaurant,brasserie,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""french_restaurant"",""brasserie""]", -191,brazilian_jiu_jitsu_club,martial_arts_club,brazilian_jiu_jitsu_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""brazilian_jiu_jitsu_club""]", -19243,brazilian_restaurant,restaurant,brazilian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""brazilian_restaurant""]", -76387,breakfast_and_brunch_restaurant,breakfast_restaurant,breakfast_and_brunch_restaurant,"[""food_and_drink"",""restaurant"",""breakfast_and_brunch_restaurant""]", -51317,brewery,brewery,brewery,"[""food_and_drink"",""brewery_winery_distillery"",""brewery""]", -200,brewing_supply_store,specialty_store,brewing_supply_store,"[""shopping"",""food_and_beverage_store"",""brewing_supply_store""]", -55703,bridal_shop,clothing_store,bridal_shop,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""bridal_shop""]", -42401,bridge,bridge,bridge,"[""geographic_entities"",""bridge""]", -4673,british_restaurant,restaurant,british_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""british_restaurant""]", -55870,broadcasting_media_production,media_service,broadcasting_media_production,"[""services_and_business"",""media_and_news"",""media_news_company"",""broadcasting_media_production""]", -9955,brokers,financial_service,broker,"[""services_and_business"",""financial_service"",""broker""]", -1,bubble_soccer_field,sport_field,soccer_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""soccer_field""]", -39355,bubble_tea,beverage_shop,bubble_tea_shop,"[""food_and_drink"",""beverage_shop"",""bubble_tea_shop""]", -108397,buddhist_temple,buddhist_place_of_worship,buddhist_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""buddhist_place_of_worship""]", -36253,buffet_restaurant,buffet_restaurant,buffet_restaurant,"[""food_and_drink"",""restaurant"",""buffet_restaurant""]", -13180,builders,building_contractor_service,builder,"[""services_and_business"",""real_estate"",""builder""]", -20896,building_contractor,building_contractor_service,building_contractor,"[""services_and_business"",""home_service"",""contractor"",""building_contractor""]", -390799,building_supply_store,specialty_store,building_supply_store,"[""shopping"",""specialty_store"",""building_supply_store""]", -669,bulgarian_restaurant,restaurant,bulgarian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""bulgarian_restaurant""]", -69,bulk_billing,healthcare_location,bulk_billing,"[""health_care"",""medical_center"",""bulk_billing""]", -1,bungee_jumping_center,sport_fitness_facility,bungee_jumping_center,"[""sports_and_recreation"",""adventure_sport"",""bungee_jumping_center""]", -152854,burger_restaurant,restaurant,burger_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""burger_restaurant""]", -568,burmese_restaurant,restaurant,burmese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""burmese_restaurant""]", -1310,bus_rentals,vehicle_service,bus_rental,"[""services_and_business"",""professional_service"",""bus_rental""]", -4541,bus_service,transportation_location,buses_and public_transit,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit""]", -69627,bus_station,bus_station,bus_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""bus_station""]", -55,bus_ticket_agency,travel_ticket_office,bus_ticket_agency,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""bus_ticket_agency""]", -2656,bus_tours,tour_operator,bus_tour,"[""travel_and_transportation"",""travel"",""tour"",""bus_tour""]", -114874,business,business_location,business,"[""services_and_business"",""business""]", -44383,business_advertising,business_advertising_marketing,business_advertising,"[""services_and_business"",""business_to_business"",""business_advertising""]", -337,business_banking_service,financial_service,business_banking_service,"[""services_and_business"",""financial_service"",""business_banking_service""]", -2070,business_brokers,financial_service,business_broker,"[""services_and_business"",""financial_service"",""broker"",""business_broker""]", -32692,business_consulting,b2b_service,business_consulting,"[""services_and_business"",""professional_service"",""business_consulting""]", -4911,business_equipment_and_supply,b2b_supplier_distributor,business_equipment_and_supply,"[""services_and_business"",""business_to_business"",""business_equipment_and_supply""]", -224,business_financing,financial_service,business_financing,"[""services_and_business"",""financial_service"",""business_financing""]", -3076,business_law,attorney_or_law_firm,business_law,"[""services_and_business"",""professional_service"",""lawyer"",""business_law""]", -67477,business_management_services,business_management_service,business_management_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""business_management_service""]", -298948,business_manufacturing_and_supply,manufacturer,business_manufacturing_and_supply,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply""]", -13917,business_office_supplies_and_stationery,office_supply_store,business_office_supplies_and_stationery,"[""services_and_business"",""business_to_business"",""business_equipment_and_supply"",""business_office_supplies_and_stationery""]", -1143,business_records_storage_and_management,b2b_service,business_records_storage_and_management,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""business_records_storage_and_management""]", -987,business_schools,college_university,business_school,"[""education"",""college_university"",""business_school""]", -1131,business_signage,business_advertising_marketing,business_signage,"[""services_and_business"",""business_to_business"",""business_advertising"",""business_signage""]", -925,business_storage_and_transportation,b2b_service,business_storage_and_transportation,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation""]", -31173,business_to_business,b2b_service,business_to_business,"[""services_and_business"",""business_to_business""]", -13045,business_to_business_services,b2b_service,business_to_business_service,"[""services_and_business"",""business_to_business"",""business_to_business_service""]", -144129,butcher_shop,butcher_shop,butcher_shop,"[""shopping"",""food_and_beverage_store"",""butcher_shop""]", -24,cabaret,performing_arts_venue,cabaret,"[""arts_and_entertainment"",""performing_arts_venue"",""cabaret""]", -38454,cabin,accommodation,cabin,"[""lodging"",""cabin""]", -7141,cabinet_sales_service,home_service,cabinet_sales_service,"[""services_and_business"",""home_service"",""cabinet_sales_service""]", -444,cable_car_service,transportation_location,cable_car_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""cable_car_service""]", -711235,cafe,cafe,cafe,"[""food_and_drink"",""casual_eatery"",""cafe""]", -4235,cafeteria,restaurant,cafeteria,"[""food_and_drink"",""restaurant"",""cafeteria""]", -3541,cajun_and_creole_restaurant,restaurant,cajun_and_creole_restaurant,"[""food_and_drink"",""restaurant"",""north_american_restaurant"",""american_restaurant"",""cajun_and_creole_restaurant""]", -25,calligraphy,media_service,calligraphy,"[""services_and_business"",""professional_service"",""calligraphy""]", -752,cambodian_restaurant,restaurant,cambodian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""cambodian_restaurant""]", -112697,campground,campground,campground,"[""lodging"",""campground""]", -87283,campus_building,place_of_learning,campus_building,"[""education"",""campus_building""]", -720,canadian_restaurant,restaurant,canadian_restaurant,"[""food_and_drink"",""restaurant"",""north_american_restaurant"",""canadian_restaurant""]", -2328,canal,canal,canal,"[""travel_and_transportation"",""watercraft_and_water_transport"",""waterway"",""canal""]", -1611,cancer_treatment_center,clinic_or_treatment_center,cancer_treatment_center,"[""health_care"",""cancer_treatment_center""]", -1431,candle_store,specialty_store,candle_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""candle_store""]", -75344,candy_store,candy_shop,candy_store,"[""food_and_drink"",""casual_eatery"",""candy_store""]", -11399,cannabis_clinic,clinic_or_treatment_center,cannabis_clinic,"[""health_care"",""cannabis_clinic""]", -7604,cannabis_dispensary,specialty_store,cannabis_dispensary,"[""shopping"",""specialty_store"",""cannabis_dispensary""]", -2,cannabis_tour,tour_operator,cannabis_tour,"[""travel_and_transportation"",""travel"",""tour"",""cannabis_tour""]", -6988,canoe_and_kayak_hire_service,water_sport_equipment_rental_service,canoe_and_kayak_hire_service,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""boat_hire_service"",""canoe_and_kayak_hire_service""]", -7,canteen,casual_eatery,canteen,"[""food_and_drink"",""casual_eatery"",""canteen""]", -11,canyon,nature_outdoors,canyon,"[""geographic_entities"",""canyon""]", -359,car_auction,specialty_store,car_auction,"[""shopping"",""specialty_store"",""auction_house"",""car_auction""]", -1692,car_broker,car_dealer,car_broker,"[""services_and_business"",""professional_service"",""car_broker""]", -729,car_buyer,vehicle_service,car_buyer,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""car_buyer""]", -474611,car_dealer,car_dealer,car_dealer,"[""shopping"",""vehicle_dealer"",""car_dealer""]", -3393,car_inspection,vehicle_service,car_inspection,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""car_inspection""]", -124272,car_rental_agency,auto_rental_service,car_rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""vehicle_rental_service"",""car_rental_service""]", -3210,car_sharing,taxi_or_ride_share_service,car_sharing,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""car_sharing""]", -322,car_stereo_installation,vehicle_service,car_stereo_installation,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""car_stereo_installation""]", -10996,car_stereo_store,specialty_store,car_stereo_store,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories"",""car_stereo_store""]", -131011,car_wash,vehicle_service,car_wash,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""car_wash""]", -16961,car_window_tinting,auto_glass_service,car_window_tinting,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_glass_service"",""car_window_tinting""]", -74,cardio_classes,sport_fitness_facility,cardio_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""cardio_class""]", -27796,cardiologist,cardiology,cardiologist,"[""health_care"",""doctor"",""cardiologist""]", -712,cardiovascular_and_thoracic_surgeon,cardiovascular_surgery,cardiovascular_and_thoracic_surgeon,"[""health_care"",""doctor"",""surgeon"",""cardiovascular_and_thoracic_surgeon""]", -3211,cards_and_stationery_store,specialty_store,cards_and_stationery_store,"[""shopping"",""specialty_store"",""cards_and_stationery_store""]", -6559,career_counseling,educational_service,career_counseling,"[""services_and_business"",""professional_service"",""career_counseling""]", -8373,caribbean_restaurant,restaurant,caribbean_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant""]", -14,caricature,event_or_party_service,caricature,"[""services_and_business"",""professional_service"",""event_planning"",""caricature""]", -87433,carpenter,carpentry_service,carpenter,"[""services_and_business"",""home_service"",""carpenter""]", -19902,carpet_cleaning,carpet_cleaning_service,carpet_cleaning,"[""services_and_business"",""home_service"",""carpet_cleaning""]", -839,carpet_installation,home_service,carpet_installation,"[""services_and_business"",""home_service"",""carpet_installation""]", -72780,carpet_store,specialty_store,carpet_store,"[""shopping"",""specialty_store"",""carpet_store""]", -25,cartooning_museum,art_museum,cartooning_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""cartooning_museum""]", -34526,casino,casino,casino,"[""arts_and_entertainment"",""gaming_venue"",""casino""]", -116,casting_molding_and_machining,b2b_supplier_distributor,casting_molding_and_machining,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""casting_molding_and_machining""]", -14099,castle,castle,castle,"[""cultural_and_historic"",""architectural_landmark"",""castle""]", -579,catalan_restaurant,restaurant,catalan_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""iberian_restaurant"",""spanish_restaurant"",""catalan_restaurant""]", -92838,caterer,catering_service,caterer,"[""services_and_business"",""professional_service"",""event_planning"",""caterer""]", -127911,catholic_church,christian_place_of_worshop,roman_catholic_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""roman_catholic_place_of_worshop""]", -4246,cave,nature_outdoors,cave,"[""geographic_entities"",""cave""]", -164,ceiling_and_roofing_repair_and_service,roofing_service,ceiling_and_roofing_repair_and_service,"[""services_and_business"",""home_service"",""ceiling_and_roofing_repair_and_service""]", -949,ceiling_service,home_service,ceiling_service,"[""services_and_business"",""home_service"",""ceiling_and_roofing_repair_and_service"",""ceiling_service""]", -1141,cement_supplier,b2b_supplier_distributor,cement_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""cement_supplier""]", -4583,cemeteries,cemetery,cemetery,"[""services_and_business"",""professional_service"",""cemetery""]", -194787,central_government_office,government_office,government_office,"[""community_and_government"",""government_office""]", -103,ceremonial_clothing,clothing_store,clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store""]", -147,certification_agency,b2b_service,certification_agency,"[""services_and_business"",""professional_service"",""certification_agency""]", -40,challenge_courses_center,sport_fitness_facility,challenge_courses_center,"[""sports_and_recreation"",""adventure_sport"",""challenge_courses_center""]", -13,chamber_of_handicraft,artspace,arts_and_crafts_space,"[""arts_and_entertainment"",""arts_and_crafts_space""]", -282,chambers_of_commerce,government_office,chambers_of_commerce,"[""community_and_government"",""chambers_of_commerce""]", -263,champagne_bar,bar,champagne_bar,"[""food_and_drink"",""bar"",""champagne_bar""]", -65054,charity_organization,charity_organization,charity_organization,"[""community_and_government"",""organization"",""social_service_organization"",""charity_organization""]", -148,charter_school,place_of_learning,charter_school,"[""education"",""school"",""charter_school""]", -10298,check_cashing_payday_loans,loan_provider,check_cashing_payday_loans,"[""services_and_business"",""financial_service"",""check_cashing_payday_loans""]", -21,cheerleading,specialty_school,cheerleading,"[""education"",""specialty_school"",""cheerleading""]", -13822,cheese_shop,food_or_beverage_store,cheese_shop,"[""shopping"",""food_and_beverage_store"",""cheese_shop""]", -6,cheese_tasting_classes,specialty_school,cheese_tasting_class,"[""education"",""tasting_class"",""cheese_tasting_class""]", -980,cheesesteak_restaurant,restaurant,cheesesteak_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""cheesesteak_restaurant""]", -54880,chemical_plant,b2b_supplier_distributor,chemical_plant,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""chemical_plant""]", -92374,chicken_restaurant,chicken_restaurant,chicken_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""chicken_restaurant""]", -5638,chicken_wings_restaurant,chicken_restaurant,chicken_wings_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""chicken_wings_restaurant""]", -27406,child_care_and_day_care,child_care_or_day_care,child_care_and_day_care,"[""services_and_business"",""professional_service"",""child_care_and_day_care""]", -610,child_protection_service,child_protection_service,child_protection_service,"[""community_and_government"",""organization"",""social_service_organization"",""child_protection_service""]", -714,child_psychiatrist,psychiatry,child_psychiatrist,"[""health_care"",""doctor"",""psychiatrist"",""child_psychiatrist""]", -101,childbirth_education,specialty_school,childbirth_education,"[""education"",""specialty_school"",""childbirth_education""]", -18,childproofing,home_service,childproofing,"[""services_and_business"",""home_service"",""childproofing""]", -12,children_hall,civic_organization_office,children_hall,"[""community_and_government"",""children_hall""]", -128798,childrens_clothing_store,clothing_store,childrens_clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""childrens_clothing_store""]", -1367,childrens_hospital,childrens_hospital,childrens_hospital,"[""health_care"",""childrens_hospital""]", -884,childrens_museum,childrens_museum,childrens_museum,"[""arts_and_entertainment"",""museum"",""childrens_museum""]", -263,chilean_restaurant,restaurant,chilean_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""chilean_restaurant""]", -1,chimney_cake_shop,food_or_beverage_store,patisserie_cake_shop,"[""shopping"",""food_and_beverage_store"",""patisserie_cake_shop""]", -204,chimney_service,home_service,chimney_service,"[""services_and_business"",""home_service"",""chimney_service""]", -7096,chimney_sweep,home_service,chimney_sweep,"[""services_and_business"",""home_service"",""chimney_service"",""chimney_sweep""]", -163,chinese_martial_arts_club,martial_arts_club,chinese_martial_arts_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""chinese_martial_arts_club""]", -195010,chinese_restaurant,restaurant,chinese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""chinese_restaurant""]", -106590,chiropractor,alternative_medicine,chiropractor,"[""health_care"",""chiropractor""]", -30104,chocolatier,candy_shop,chocolatier,"[""food_and_drink"",""casual_eatery"",""candy_store"",""chocolatier""]", -2987,choir,music_venue,choir,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue"",""choir""]", -2327,christmas_trees,specialty_store,christmas_tree_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""christmas_tree_store""]", -926424,church_cathedral,christian_place_of_worshop,christian_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop""]", -211,cidery,eating_drinking_location,cidery,"[""food_and_drink"",""brewery_winery_distillery"",""cidery""]", -63,cigar_bar,bar,cigar_bar,"[""food_and_drink"",""bar"",""cigar_bar""]", -65796,cinema,movie_theater,movie_theater,"[""arts_and_entertainment"",""movie_theater""]", -3773,circus,entertainment_location,circus_venue,"[""arts_and_entertainment"",""amusement_attraction"",""circus_venue""]", -58,circus_school,specialty_school,circus_school,"[""education"",""specialty_school"",""circus_school""]", -463,civic_center,civic_center,civic_center,"[""community_and_government"",""civic_center""]", -3143,civil_engineers,engineering_service,civil_engineer,"[""services_and_business"",""professional_service"",""construction_service"",""civil_engineer""]", -65,civil_examinations_academy,educational_service,civil_examinations_academy,"[""education"",""tutoring_center"",""civil_examinations_academy""]", -215,civil_rights_lawyers,attorney_or_law_firm,civil_rights_lawyer,"[""services_and_business"",""professional_service"",""lawyer"",""civil_rights_lawyer""]", -497,civilization_museum,museum,civilization_museum,"[""arts_and_entertainment"",""museum"",""history_museum"",""civilization_museum""]", -1488,cleaning_products_supplier,b2b_supplier_distributor,cleaning_products_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""cleaning_products_supplier""]", -20949,cleaning_services,business_cleaning_service,cleaning_service,"[""services_and_business"",""professional_service"",""cleaning_service""]", -2,climbing_class,sport_fitness_facility,climbing_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""climbing_class""]", -105,climbing_service,sport_fitness_facility,climbing_service,"[""sports_and_recreation"",""adventure_sport"",""climbing_service""]", -12672,clinical_laboratories,b2b_service,clinical_lab,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""clinical_lab""]", -161,clock_repair_service,home_service,clock_repair_service,"[""services_and_business"",""professional_service"",""clock_repair_service""]", -28,closet_remodeling,remodeling_service,closet_remodeling,"[""services_and_business"",""home_service"",""closet_remodeling""]", -12371,clothing_company,clothing_store,clothing_company,"[""services_and_business"",""business"",""clothing_company""]", -5067,clothing_rental,clothing_store,clothing_rental,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""clothing_rental""]", -1023461,clothing_store,clothing_store,clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store""]", -41,clown,event_or_party_service,clown,"[""services_and_business"",""professional_service"",""event_planning"",""clown""]", -2,club_crawl,social_club,club_crawl,"[""arts_and_entertainment"",""nightlife_venue"",""club_crawl""]", -286,coach_bus,transportation_location,coach_bus,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""coach_bus""]", -524,coal_and_coke,utility_energy_infrastructure,coal_and_coke,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""mining"",""coal_and_coke""]", -48529,cocktail_bar,bar,cocktail_bar,"[""food_and_drink"",""bar"",""cocktail_bar""]", -646,coffee_and_tea_supplies,food_or_beverage_store,coffee_and_tea_supplies,"[""shopping"",""food_and_beverage_store"",""coffee_and_tea_supplies""]", -882,coffee_roastery,beverage_shop,coffee_roastery,"[""food_and_drink"",""beverage_shop"",""coffee_roastery""]", -686114,coffee_shop,coffee_shop,coffee_shop,"[""food_and_drink"",""beverage_shop"",""coffee_shop""]", -168,coin_dealers,financial_service,coin_dealer,"[""services_and_business"",""financial_service"",""coin_dealer""]", -3816,collection_agencies,financial_service,collection_agency,"[""services_and_business"",""financial_service"",""collection_agency""]", -82,college_counseling,educational_service,college_counseling,"[""education"",""college_counseling""]", -410717,college_university,college_university,college_university,"[""education"",""college_university""]", -2552,colombian_restaurant,restaurant,colombian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""colombian_restaurant""]", -37,colonics,clinic_or_treatment_center,colonics,"[""health_care"",""colonics""]", -7280,comedy_club,comedy_club,comedy_club,"[""arts_and_entertainment"",""performing_arts_venue"",""comedy_club""]", -6567,comfort_food_restaurant,restaurant,comfort_food_restaurant,"[""food_and_drink"",""restaurant"",""comfort_food_restaurant""]", -9322,comic_books_store,bookstore,comic_books_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""bookstore"",""comic_books_store""]", -88619,commercial_industrial,industrial_commercial_infrastructure,commercial_industrial,"[""services_and_business"",""business_to_business"",""commercial_industrial""]", -1187,commercial_printer,b2b_service,commercial_printer,"[""services_and_business"",""professional_service"",""commercial_printer""]", -35055,commercial_real_estate,b2b_service,commercial_real_estate,"[""services_and_business"",""real_estate"",""commercial_real_estate""]", -6077,commercial_refrigeration,b2b_service,commercial_refrigeration,"[""services_and_business"",""professional_service"",""commercial_refrigeration""]", -3067,commercial_vehicle_dealer,vehicle_dealer,commercial_vehicle_dealer,"[""shopping"",""vehicle_dealer"",""commercial_vehicle_dealer""]", -534,commissioned_artist,media_service,commissioned_artist,"[""services_and_business"",""professional_service"",""commissioned_artist""]", -100184,community_center,community_center,community_center,"[""community_and_government"",""community_center""]", -105,community_gardens,garden,community_garden,"[""geographic_entities"",""garden"",""community_garden""]", -558,community_health_center,clinic_or_treatment_center,community_health_center,"[""health_care"",""community_health_center""]", -1083,community_museum,museum,community_museum,"[""arts_and_entertainment"",""museum"",""history_museum"",""community_museum""]", -703978,community_services_non_profits,social_or_community_service,community_service,"[""community_and_government"",""community_service""]", -25591,computer_coaching,specialty_school,computer_coaching,"[""education"",""specialty_school"",""computer_coaching""]", -29858,computer_hardware_company,technical_service,computer_hardware_company,"[""services_and_business"",""professional_service"",""computer_hardware_company""]", -463,computer_museum,science_museum,computer_museum,"[""arts_and_entertainment"",""museum"",""science_museum"",""computer_museum""]", -105094,computer_store,electronics_store,computer_store,"[""shopping"",""specialty_store"",""electronics_store"",""computer_store""]", -7341,computer_wholesaler,wholesaler,computer_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""computer_wholesaler""]", -3,concept_shop,retail_location,shopping,"[""shopping""]", -31,concierge_medicine,clinic_or_treatment_center,concierge_medicine,"[""health_care"",""concierge_medicine""]", -22546,condominium,housing,condominium,"[""services_and_business"",""real_estate"",""condominium""]", -857,construction_management,building_construction_service,construction_management,"[""services_and_business"",""professional_service"",""construction_service"",""construction_management""]", -318240,construction_services,building_construction_service,construction_service,"[""services_and_business"",""professional_service"",""construction_service""]", -2181,consultant_and_general_service,business_management_service,consultant_and_general_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""consultant_and_general_service""]", -349,contemporary_art_museum,art_museum,contemporary_art_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""contemporary_art_museum""]", -305,contract_law,attorney_or_law_firm,contract_law,"[""services_and_business"",""professional_service"",""lawyer"",""contract_law""]", -413223,contractor,building_contractor_service,contractor,"[""services_and_business"",""home_service"",""contractor""]", -525704,convenience_store,convenience_store,convenience_store,"[""shopping"",""convenience_store""]", -9214,convents_and_monasteries,religious_organization,religious_organization,"[""cultural_and_historic"",""religious_organization""]", -441,cooking_classes,art_craft_hobby_store,cooking_classes,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""cooking_classes""]", -8711,cooking_school,specialty_school,cooking_school,"[""education"",""specialty_school"",""cooking_school""]", -962,copywriting_service,media_service,copywriting_service,"[""services_and_business"",""professional_service"",""copywriting_service""]", -5407,corporate_entertainment_services,b2b_service,corporate_entertainment_service,"[""services_and_business"",""private_establishments_and_corporates"",""corporate_entertainment_service""]", -80,corporate_gift_supplier,b2b_supplier_distributor,corporate_gift_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""corporate_gift_supplier""]", -126888,corporate_office,corporate_or_business_office,corporate_office,"[""services_and_business"",""private_establishments_and_corporates"",""corporate_office""]", -231475,cosmetic_and_beauty_supplies,specialty_store,cosmetic_and_beauty_supply_store,"[""shopping"",""specialty_store"",""cosmetic_and_beauty_supply_store""]", -26375,cosmetic_dentist,dental_care,cosmetic_dentist,"[""health_care"",""dentist"",""cosmetic_dentist""]", -162,cosmetic_products_manufacturer,manufacturer,cosmetic_products_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""cosmetic_products_manufacturer""]", -2436,cosmetic_surgeon,plastic_reconstructive_and_aesthetic_surgery,cosmetic_surgeon,"[""health_care"",""doctor"",""cosmetic_surgeon""]", -8590,cosmetology_school,specialty_school,cosmetology_school,"[""education"",""specialty_school"",""cosmetology_school""]", -69,costa_rican_restaurant,restaurant,costa_rican_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""costa_rican_restaurant""]", -81,costume_museum,art_museum,costume_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""costume_museum""]", -18223,costume_store,art_craft_hobby_store,costume_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""costume_store""]", -37819,cottage,accommodation,cottage,"[""lodging"",""cottage""]", -157,cotton_mill,b2b_supplier_distributor,cotton_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""cotton_mill""]", -154349,counseling_and_mental_health,mental_health,counseling_and_mental_health,"[""health_care"",""counseling_and_mental_health""]", -30151,countertop_installation,home_service,countertop_installation,"[""services_and_business"",""home_service"",""countertop_installation""]", -371,country_club,country_club,country_club,"[""arts_and_entertainment"",""social_club"",""country_club""]", -169,country_dance_hall,entertainment_location,country_dance_hall,"[""arts_and_entertainment"",""rural_attraction"",""country_dance_hall""]", -50,country_house,accommodation,country_house,"[""lodging"",""country_house""]", -57445,courier_and_delivery_services,courier_service,courier_and_delivery_service,"[""services_and_business"",""professional_service"",""courier_and_delivery_service""]", -430,court_reporter,legal_service,court_reporter,"[""services_and_business"",""professional_service"",""legal_service"",""court_reporter""]", -37287,courthouse,government_office,courthouse,"[""community_and_government"",""courthouse""]", -13962,coworking_space,b2b_service,coworking_space,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""coworking_space""]", -572,cpr_classes,specialty_school,cpr_class,"[""education"",""specialty_school"",""cpr_class""]", -1893,craft_shop,art_craft_hobby_store,craft_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""craft_store""]", -1534,crane_services,b2b_service,crane_service,"[""services_and_business"",""professional_service"",""crane_service""]", -8732,credit_and_debt_counseling,financial_service,credit_and_debt_counseling,"[""services_and_business"",""financial_service"",""credit_and_debt_counseling""]", -73911,credit_union,credit_union,credit_union,"[""services_and_business"",""financial_service"",""bank_credit_union"",""credit_union""]", -5841,cremation_services,funeral_service,cremation_service,"[""services_and_business"",""professional_service"",""funeral_service"",""cremation_service""]", -3831,cricket_ground,sport_stadium,cricket_ground,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""cricket_ground""]", -8346,criminal_defense_law,attorney_or_law_firm,criminal_defense_law,"[""services_and_business"",""professional_service"",""lawyer"",""criminal_defense_law""]", -215,crisis_intervention_services,clinic_or_treatment_center,crisis_intervention_service,"[""health_care"",""abuse_and_addiction_treatment"",""crisis_intervention_service""]", -596,crops_production,farm,crops_production,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""crops_production""]", -138,cryotherapy,healthcare_location,cryotherapy,"[""health_care"",""cryotherapy""]", -21,csa_farm,food_or_beverage_store,csa_farm,"[""shopping"",""food_and_beverage_store"",""csa_farm""]", -2875,cuban_restaurant,restaurant,cuban_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""cuban_restaurant""]", -48929,cultural_center,entertainment_location,cultural_center,"[""cultural_and_historic"",""cultural_center""]", -31991,cupcake_shop,casual_eatery,cupcake_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""cupcake_shop""]", -20565,currency_exchange,financial_service,currency_exchange,"[""services_and_business"",""financial_service"",""currency_exchange""]", -2,curry_sausage_restaurant,restaurant,curry_sausage_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""curry_sausage_restaurant""]", -275,custom_cakes_shop,food_or_beverage_store,custom_cakes_shop,"[""shopping"",""food_and_beverage_store"",""patisserie_cake_shop"",""custom_cakes_shop""]", -818,custom_clothing,clothing_store,custom_clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""custom_clothing_store""]", -969,custom_t_shirt_store,clothing_store,custom_t_shirt_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""t_shirt_store"",""custom_t_shirt_store""]", -2401,customized_merchandise,specialty_store,customized_merchandise_store,"[""shopping"",""specialty_store"",""customized_merchandise_store""]", -391,customs_broker,b2b_service,customs_broker,"[""services_and_business"",""professional_service"",""customs_broker""]", -2149,cycling_classes,sport_fitness_facility,cycling_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""cycling_class""]", -1708,czech_restaurant,restaurant,czech_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""czech_restaurant""]", -9009,dairy_farm,farm,dairy_farm,"[""services_and_business"",""agricultural_service"",""farm"",""dairy_farm""]", -1695,dairy_stores,grocery_store,dairy_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store"",""dairy_store""]", -14921,damage_restoration,home_service,damage_restoration,"[""services_and_business"",""home_service"",""damage_restoration""]", -97717,dance_club,dance_club,dance_club,"[""arts_and_entertainment"",""nightlife_venue"",""dance_club""]", -125650,dance_school,specialty_school,dance_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""dance_studio""]", -1654,dance_wear,sporting_goods_store,dancewear_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""sportswear_store"",""dancewear_store""]", -4,danish_restaurant,restaurant,danish_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""scandinavian_restaurant"",""danish_restaurant""]", -3186,data_recovery,technical_service,data_recovery,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair"",""data_recovery""]", -109029,day_care_preschool,child_care_or_day_care,day_care_preschool,"[""services_and_business"",""professional_service"",""child_care_and_day_care"",""day_care_preschool""]", -17300,day_spa,spa,day_spa,"[""lifestyle_services"",""spa"",""day_spa""]", -733,debt_relief_services,financial_service,debt_relief_service,"[""services_and_business"",""financial_service"",""debt_relief_service""]", -1260,deck_and_railing_sales_service,home_service,deck_and_railing_sales_service,"[""services_and_business"",""home_service"",""deck_and_railing_sales_service""]", -89,decorative_arts_museum,art_museum,decorative_arts_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""decorative_arts_museum""]", -66613,delicatessen,deli,delicatessen,"[""food_and_drink"",""casual_eatery"",""delicatessen""]", -1896,demolition_service,home_service,demolition_service,"[""services_and_business"",""home_service"",""demolition_service""]", -217,denim_wear_store,clothing_store,denim_wear_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""denim_wear_store""]", -65,dental_hygienist,dental_hygiene,dental_hygienist,"[""health_care"",""dental_hygienist""]", -1017,dental_laboratories,b2b_service,dental_lab,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""dental_lab""]", -772,dental_supply_store,specialty_store,dental_supply_store,"[""shopping"",""specialty_store"",""medical_supply_store"",""dental_supply_store""]", -578091,dentist,general_dentistry,dentist,"[""health_care"",""dentist""]", -152,dentistry_schools,college_university,dentistry_school,"[""education"",""college_university"",""medical_sciences_school"",""dentistry_school""]", -8720,department_of_motor_vehicles,government_office,department_of_motor_vehicles,"[""community_and_government"",""department_of_motor_vehicles""]", -45,department_of_social_service,government_office,department_of_social_service,"[""community_and_government"",""department_of_social_service""]", -101489,department_store,department_store,department_store,"[""shopping"",""department_store""]", -36893,dermatologist,healthcare_location,dermatologist,"[""health_care"",""doctor"",""dermatologist""]", -35,desert,nature_outdoors,desert,"[""geographic_entities"",""desert""]", -190,design_museum,art_museum,design_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""design_museum""]", -6121,designer_clothing,clothing_store,designer_clothing,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""designer_clothing""]", -109721,desserts,casual_eatery,dessert_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop""]", -22745,diagnostic_imaging,diagnostic_service,diagnostic_imaging,"[""health_care"",""diagnostic_service"",""diagnostic_imaging""]", -26653,diagnostic_services,diagnostic_service,diagnostic_service,"[""health_care"",""diagnostic_service""]", -12429,dialysis_clinic,clinic_or_treatment_center,dialysis_clinic,"[""health_care"",""dialysis_clinic""]", -58,diamond_dealer,specialty_store,diamond_dealer,"[""services_and_business"",""professional_service"",""diamond_dealer""]", -635,dietitian,nutrition_and_dietetics,dietitian,"[""health_care"",""dietitian""]", -487,digitizing_services,media_service,digitizing_service,"[""services_and_business"",""professional_service"",""digitizing_service""]", -5097,dim_sum_restaurant,restaurant,dim_sum_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""chinese_restaurant"",""dim_sum_restaurant""]", -95387,diner,casual_eatery,diner,"[""food_and_drink"",""casual_eatery"",""diner""]", -30,dinner_theater,performing_arts_venue,dinner_theater,"[""arts_and_entertainment"",""performing_arts_venue"",""theatre_venue"",""dinner_theater""]", -151,direct_mail_advertising,business_advertising_marketing,direct_mail_advertising,"[""services_and_business"",""business_to_business"",""business_advertising"",""direct_mail_advertising""]", -2094,disability_law,attorney_or_law_firm,disability_law,"[""services_and_business"",""professional_service"",""lawyer"",""disability_law""]", -17062,disability_services_and_support_organization,civic_organization_office,disability_services_and_support_organization,"[""community_and_government"",""community_service"",""disability_services_and_support_organization""]", -3126,disc_golf_course,sport_field,disc_golf_course,"[""sports_and_recreation"",""sports_and_recreation_venue"",""disc_golf_course""]", -132972,discount_store,discount_store,discount_store,"[""shopping"",""discount_store""]", -448,display_home_center,real_estate_service,display_home_center,"[""services_and_business"",""real_estate"",""display_home_center""]", -9185,distillery,eating_drinking_location,distillery,"[""food_and_drink"",""brewery_winery_distillery"",""distillery""]", -9349,distribution_services,shipping_delivery_service,distribution_service,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""freight_and_cargo_service"",""distribution_service""]", -4018,dive_bar,bar,dive_bar,"[""food_and_drink"",""bar"",""dive_bar""]", -866,dive_shop,sporting_goods_store,dive_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""dive_store""]", -1154,diving_center,sport_fitness_facility,diving_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""diving_center""]", -20418,divorce_and_family_law,attorney_or_law_firm,divorce_and_family_law,"[""services_and_business"",""professional_service"",""lawyer"",""divorce_and_family_law""]", -14,diy_auto_shop,auto_repair_service,diy_auto_shop,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""diy_auto_shop""]", -56,diy_foods_restaurant,restaurant,diy_foods_restaurant,"[""food_and_drink"",""restaurant"",""diy_foods_restaurant""]", -4508,dj_service,dj_service,dj_service,"[""services_and_business"",""professional_service"",""event_planning"",""dj_service""]", -5344,do_it_yourself_store,home_improvement_center,do_it_yourself_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""do_it_yourself_store""]", -411364,doctor,doctors_office,doctor,"[""health_care"",""doctor""]", -13714,dog_park,dog_park,dog_park,"[""sports_and_recreation"",""park"",""dog_park""]", -23573,dog_trainer,animal_training,dog_trainer,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_training"",""dog_trainer""]", -6193,dog_walkers,dog_walker,dog_walker,"[""lifestyle_services"",""pets"",""pet_care_service"",""dog_walker""]", -3,domestic_airports,airport,airport,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport""]", -1046,domestic_business_and_trade_organizations,b2b_service,domestic_business_and_trade_organization,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""domestic_business_and_trade_organization""]", -776,dominican_restaurant,restaurant,dominican_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""dominican_restaurant""]", -384,donation_center,social_or_community_service,donation_center,"[""services_and_business"",""professional_service"",""donation_center""]", -20199,doner_kebab,restaurant,doner_kebab_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""turkish_restaurant"",""doner_kebab_restaurant""]", -25316,donuts,casual_eatery,donut_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""donut_shop""]", -2928,door_sales_service,home_service,door_sales_service,"[""services_and_business"",""home_service"",""door_sales_service""]", -43,doula,healthcare_location,doula,"[""health_care"",""doula""]", -428,drama_school,specialty_school,drama_school,"[""education"",""specialty_school"",""drama_school""]", -85,drinking_water_dispenser,b2b_supplier_distributor,drinking_fountain,"[""geographic_entities"",""fountain"",""drinking_fountain""]", -3482,drive_in_theater,movie_theater,drive_in_theater,"[""arts_and_entertainment"",""movie_theater"",""drive_in_theater""]", -107,drive_thru_bar,bar,drive_thru_bar,"[""food_and_drink"",""bar"",""drive_thru_bar""]", -5618,driving_range,sport_fitness_facility,driving_range,"[""sports_and_recreation"",""sports_and_recreation_venue"",""golf_course"",""driving_range""]", -106388,driving_school,specialty_school,driving_school,"[""education"",""specialty_school"",""driving_school""]", -136,drone_store,specialty_store,drone_store,"[""shopping"",""specialty_store"",""electronics_store"",""drone_store""]", -29076,drugstore,specialty_store,drugstore,"[""shopping"",""specialty_store"",""drugstore""]", -53715,dry_cleaning,dry_cleaning_service,dry_cleaning,"[""services_and_business"",""professional_service"",""laundry_service"",""dry_cleaning""]", -3468,drywall_services,home_service,drywall_service,"[""services_and_business"",""home_service"",""drywall_service""]", -558,dui_law,attorney_or_law_firm,dui_law,"[""services_and_business"",""professional_service"",""lawyer"",""dui_law""]", -34,dui_school,specialty_school,dui_school,"[""education"",""specialty_school"",""dui_school""]", -1377,dumpling_restaurant,restaurant,dumpling_restaurant,"[""food_and_drink"",""restaurant"",""dumpling_restaurant""]", -1743,dumpster_rentals,b2b_service,dumpster_rental,"[""services_and_business"",""professional_service"",""junk_removal_and_hauling"",""dumpster_rental""]", -89,duplication_services,media_service,duplication_service,"[""services_and_business"",""professional_service"",""duplication_service""]", -1182,duty_free_shop,specialty_store,duty_free_store,"[""shopping"",""specialty_store"",""duty_free_store""]", -33651,e_cigarette_store,specialty_store,e_cigarette_store,"[""shopping"",""specialty_store"",""e_cigarette_store""]", -6631,e_commerce_service,software_development,e_commerce_service,"[""services_and_business"",""professional_service"",""e_commerce_service""]", -18959,ear_nose_and_throat,healthcare_location,ear_nose_and_throat,"[""health_care"",""doctor"",""ear_nose_and_throat""]", -4202,eastern_european_restaurant,restaurant,eastern_european_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant""]", -104545,eat_and_drink,eating_drinking_location,food_and_drink,"[""food_and_drink""]", -188,eatertainment,performing_arts_venue,dinner_theater,"[""arts_and_entertainment"",""performing_arts_venue"",""theatre_venue"",""dinner_theater""]", -7,eating_disorder_treatment_centers,clinic_or_treatment_center,eating_disorder_treatment_center,"[""health_care"",""abuse_and_addiction_treatment"",""eating_disorder_treatment_center""]", -802,ecuadorian_restaurant,restaurant,ecuadorian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""ecuadorian_restaurant""]", -87,editorial_services,media_service,editorial_service,"[""services_and_business"",""professional_service"",""editorial_service""]", -481792,education,place_of_learning,education,"[""education""]", -5461,educational_camp,place_of_learning,educational_camp,"[""education"",""educational_camp""]", -13374,educational_research_institute,place_of_learning,educational_research_institute,"[""education"",""educational_research_institute""]", -67537,educational_services,educational_service,educational_service,"[""education"",""educational_service""]", -5466,educational_supply_store,specialty_store,educational_supply_store,"[""shopping"",""specialty_store"",""educational_supply_store""]", -968,egyptian_restaurant,restaurant,egyptian_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""north_african_restaurant"",""egyptian_restaurant""]", -27,elder_care_planning,social_or_community_service,elder_care_planning,"[""services_and_business"",""professional_service"",""elder_care_planning""]", -15986,electric_utility_provider,electric_utility_service,electric_utility_provider,"[""community_and_government"",""public_utility_provider"",""electric_utility_provider""]", -2,electrical_consultant,electrical_service,electrician,"[""services_and_business"",""home_service"",""electrician""]", -8093,electrical_supply_store,specialty_store,electrical_supply_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""electrical_supply_store""]", -4507,electrical_wholesaler,wholesaler,electrical_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""electrical_wholesaler""]", -126946,electrician,electrical_service,electrician,"[""services_and_business"",""home_service"",""electrician""]", -3707,electricity_supplier,electric_utility_service,electric_utility_provider,"[""community_and_government"",""public_utility_provider"",""electric_utility_provider""]", -4434,electronic_parts_supplier,b2b_supplier_distributor,electronic_parts_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""electronic_parts_supplier""]", -263064,electronics,electronics_store,electronics_store,"[""shopping"",""specialty_store"",""electronics_store""]", -2046,electronics_repair_shop,electronic_repiar_service,electronics_repair_shop,"[""services_and_business"",""professional_service"",""electronics_repair_shop""]", -478687,elementary_school,elementary_school,elementary_school,"[""education"",""school"",""elementary_school""]", -8476,elevator_service,b2b_service,elevator_service,"[""services_and_business"",""professional_service"",""elevator_service""]", -19351,embassy,government_office,embassy,"[""community_and_government"",""embassy""]", -1478,embroidery_and_crochet,art_craft_hobby_store,embroidery_and_crochet_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""craft_store"",""embroidery_and_crochet_store""]", -4555,emergency_medicine,healthcare_location,emergency_medicine,"[""health_care"",""doctor"",""emergency_medicine""]", -780,emergency_pet_hospital,animal_hospital,emergency_pet_hospital,"[""lifestyle_services"",""pets"",""veterinary_care"",""emergency_pet_hospital""]", -1410,emergency_roadside_service,emergency_roadside_service,emergency_roadside_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""roadside_assistance"",""emergency_roadside_service""]", -14246,emergency_room,emergency_room,emergency_room,"[""health_care"",""emergency_room""]", -1383,emergency_service,ambulance_ems_service,ambulance_and_ems_service,"[""health_care"",""ambulance_and_ems_service""]", -6681,emissions_inspection,vehicle_service,emissions_inspection,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""emissions_inspection""]", -236,empanadas,restaurant,empanada_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""empanada_restaurant""]", -113326,employment_agencies,human_resource_service,employment_agency,"[""services_and_business"",""professional_service"",""employment_agency""]", -7699,employment_law,attorney_or_law_firm,employment_law,"[""services_and_business"",""professional_service"",""lawyer"",""employment_law""]", -3,ems_training,healthcare_location,ems_training,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""ems_training""]", -6090,endocrinologist,internal_medicine,endocrinologist,"[""health_care"",""doctor"",""endocrinologist""]", -5949,endodontist,dental_care,endodontist,"[""health_care"",""dentist"",""endodontist""]", -30,endoscopist,healthcare_location,endoscopist,"[""health_care"",""doctor"",""endoscopist""]", -33034,energy_company,utility_energy_infrastructure,energy_company,"[""services_and_business"",""business"",""energy_company""]", -30709,energy_equipment_and_solution,b2b_supplier_distributor,energy_equipment_and_solution,"[""services_and_business"",""business_to_business"",""business_equipment_and_supply"",""energy_equipment_and_solution""]", -622,energy_management_and_conservation_consultants,b2b_service,energy_management_and_conservation_consultant,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service"",""energy_management_and_conservation_consultant""]", -5191,engine_repair_service,auto_repair_service,engine_repair_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""engine_repair_service""]", -403,engineering_schools,college_university,engineering_school,"[""education"",""college_university"",""engineering_school""]", -135794,engineering_services,engineering_service,engineering_service,"[""services_and_business"",""professional_service"",""construction_service"",""engineering_service""]", -382,engraving,media_service,engraving,"[""services_and_business"",""professional_service"",""engraving""]", -165,entertainment_law,attorney_or_law_firm,entertainment_law,"[""services_and_business"",""professional_service"",""lawyer"",""entertainment_law""]", -204,environmental_abatement_services,b2b_service,environmental_abatement_service,"[""services_and_business"",""professional_service"",""environmental_abatement_service""]", -11546,environmental_and_ecological_services_for_businesses,b2b_service,environmental_and_ecological_service_for_business,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service_for_business""]", -7063,environmental_conservation_and_ecological_organizations,conservation_organization,environmental_conservation_organization,"[""community_and_government"",""organization"",""environmental_conservation_organization""]", -18690,environmental_conservation_organization,conservation_organization,environmental_conservation_organization,"[""community_and_government"",""organization"",""environmental_conservation_organization""]", -6,environmental_medicine,healthcare_location,environmental_medicine,"[""health_care"",""environmental_medicine""]", -99,environmental_renewable_natural_resource,b2b_service,environmental_renewable_natural_resource,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service_for_business"",""environmental_renewable_natural_resource""]", -2530,environmental_testing,b2b_service,environmental_testing,"[""services_and_business"",""professional_service"",""environmental_testing""]", -2181,episcopal_church,christian_place_of_worshop,anglican_or_episcopal_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""protestant_place_of_worship"",""anglican_or_episcopal_place_of_worshop""]", -26951,equestrian_facility,equestrian_facility,equestrian_facility,"[""sports_and_recreation"",""sports_and_recreation_venue"",""horse_riding"",""equestrian_facility""]", -171,erotic_massage,entertainment_location,erotic_massage_venue,"[""arts_and_entertainment"",""nightlife_venue"",""adult_entertainment_venue"",""erotic_massage_venue""]", -9943,escape_rooms,escape_room,escape_room,"[""arts_and_entertainment"",""gaming_venue"",""escape_room""]", -2817,escrow_services,real_estate_service,escrow_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""escrow_service""]", -609,esports_league,sport_league,esports_league,"[""sports_and_recreation"",""sports_club_and_league"",""esports_league""]", -393,esports_team,sport_team,esports_team,"[""sports_and_recreation"",""sports_club_and_league"",""esports_team""]", -251,estate_liquidation,real_estate_service,estate_liquidation,"[""services_and_business"",""real_estate"",""estate_liquidation""]", -2877,estate_planning_law,attorney_or_law_firm,estate_planning_law,"[""services_and_business"",""professional_service"",""lawyer"",""estate_planning_law""]", -49,esthetician,personal_service,esthetician,"[""lifestyle_services"",""beauty_service"",""skin_care_and_ makeup"",""esthetician""]", -2321,ethical_grocery,grocery_store,ethical_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""ethical_grocery_store""]", -1709,ethiopian_restaurant,restaurant,ethiopian_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""east_african_restaurant"",""ethiopian_restaurant""]", -11982,european_restaurant,restaurant,european_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant""]", -50175,ev_charging_station,ev_charging_station,ev_charging_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""fueling_station"",""ev_charging_station""]", -33490,evangelical_church,christian_place_of_worshop,protestant_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""protestant_place_of_worship""]", -109659,event_photography,photography_service,event_photography,"[""services_and_business"",""professional_service"",""event_planning"",""event_photography""]", -808932,event_planning,event_or_party_service,event_planning,"[""services_and_business"",""professional_service"",""event_planning""]", -11935,event_technology_service,event_or_party_service,event_technology_service,"[""services_and_business"",""professional_service"",""event_planning"",""event_technology_service""]", -14725,excavation_service,home_service,excavation_service,"[""services_and_business"",""home_service"",""excavation_service""]", -643,executive_search_consultants,business_management_service,executive_search_consultants,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""business_management_service"",""executive_search_consultants""]", -26,exhaust_and_muffler_repair,auto_repair_service,exhaust_and_muffler_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""exhaust_and_muffler_repair""]", -226,exhibition_and_trade_center,event_space,exhibition_and_trade_fair_venue,"[""arts_and_entertainment"",""event_venue"",""exhibition_and_trade_fair_venue""]", -844,exporters,import_export_company,exporter,"[""services_and_business"",""business_to_business"",""import_export_service"",""exporter""]", -81,exterior_design,home_service,exterior_design,"[""services_and_business"",""home_service"",""exterior_design""]", -29966,eye_care_clinic,eye_care,eye_care_clinic,"[""health_care"",""eye_care_clinic""]", -454,eyebrow_service,beauty_salon,eyebrow_service,"[""lifestyle_services"",""beauty_service"",""eyebrow_service""]", -1119,eyelash_service,beauty_salon,eyelash_service,"[""lifestyle_services"",""beauty_service"",""eyelash_service""]", -191336,eyewear_and_optician,eyewear_store,eyewear_store,"[""shopping"",""fashion_and_apparel_store"",""eyewear_store""]", -57780,fabric_store,art_craft_hobby_store,fabric_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""fabric_store""]", -285,fabric_wholesaler,wholesaler,fabric_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""fabric_wholesaler""]", -38,face_painting,event_or_party_service,face_painting,"[""services_and_business"",""professional_service"",""event_planning"",""face_painting""]", -13163,fair,fairgrounds,fairgrounds,"[""arts_and_entertainment"",""festival_venue"",""fairgrounds""]", -1078,falafel_restaurant,restaurant,falafel_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""falafel_restaurant""]", -3800,family_counselor,mental_health,family_counselor,"[""health_care"",""counseling_and_mental_health"",""family_counselor""]", -49775,family_practice,family_medicine,family_practice,"[""health_care"",""doctor"",""family_practice""]", -401,family_service_center,family_service,family_service_center,"[""community_and_government"",""family_service_center""]", -254032,farm,farm,farm,"[""services_and_business"",""agricultural_service"",""farm""]", -6249,farm_equipment_and_supply,agricultural_service,farm_equipment_and_supply,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""farm_equipment_and_supply""]", -272,farm_equipment_repair_service,agricultural_service,farm_equipment_repair_service,"[""services_and_business"",""professional_service"",""farm_equipment_repair_service""]", -35,farm_insurance,insurance_agency,farm_insurance,"[""services_and_business"",""financial_service"",""insurance_agency"",""farm_insurance""]", -58107,farmers_market,farmers_market,farmers_market,"[""shopping"",""market"",""farmers_market""]", -1065,farming_equipment_store,specialty_store,farming_equipment_store,"[""shopping"",""specialty_store"",""farming_equipment_store""]", -5400,farming_services,agricultural_service,farming_service,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""farming_service""]", -22,farrier_services,animal_service,farrier_service,"[""lifestyle_services"",""pets"",""equine_service"",""farrier_service""]", -94028,fashion,fashion_or_apparel_store,fashion_and_apparel_store,"[""shopping"",""fashion_and_apparel_store""]", -105763,fashion_accessories_store,fashion_or_apparel_store,fashion_accessories_store,"[""shopping"",""fashion_and_apparel_store"",""fashion_accessories_store""]", -486786,fast_food_restaurant,fast_food_restaurant,fast_food_restaurant,"[""food_and_drink"",""casual_eatery"",""fast_food_restaurant""]", -724,fastener_supplier,b2b_supplier_distributor,fastener_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""fastener_supplier""]", -510,federal_government_offices,government_office,government_office,"[""community_and_government"",""government_office""]", -17050,fence_and_gate_sales_service,home_service,fence_and_gate_sales_service,"[""services_and_business"",""home_service"",""fence_and_gate_sales_service""]", -1608,fencing_club,sport_recreation_club,fencing_club,"[""sports_and_recreation"",""sports_club_and_league"",""fencing_club""]", -45,feng_shui,home_service,feng_shui,"[""services_and_business"",""professional_service"",""feng_shui""]", -8434,ferry_boat_company,ferry_service,ferry_boat_company,"[""services_and_business"",""business"",""ferry_boat_company""]", -352,ferry_service,ferry_service,ferry_service,"[""travel_and_transportation"",""watercraft_and_water_transport"",""ferry_service""]", -6043,fertility,healthcare_location,fertility_clinic,"[""health_care"",""doctor"",""fertility_clinic""]", -511,fertilizer_store,agricultural_service,fertilizer_store,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""farm_equipment_and_supply"",""fertilizer_store""]", -315,festival,festival_venue,festival_venue,"[""arts_and_entertainment"",""festival_venue""]", -25,fidelity_and_surety_bonds,insurance_agency,fidelity_and_surety_bonds,"[""services_and_business"",""financial_service"",""insurance_agency"",""fidelity_and_surety_bonds""]", -10541,filipino_restaurant,restaurant,filipino_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""filipino_restaurant""]", -72,film_festivals_and_organizations,festival_venue,film_festival_venue,"[""arts_and_entertainment"",""festival_venue"",""film_festival_venue""]", -100904,financial_advising,financial_service,financial_advising,"[""services_and_business"",""financial_service"",""financial_advising""]", -334819,financial_service,financial_service,financial_service,"[""services_and_business"",""financial_service""]", -361,fingerprinting_service,b2b_service,fingerprinting_service,"[""services_and_business"",""professional_service"",""fingerprinting_service""]", -5380,fire_and_water_damage_restoration,home_service,fire_and_water_damage_restoration,"[""services_and_business"",""home_service"",""damage_restoration"",""fire_and_water_damage_restoration""]", -86610,fire_department,fire_station,fire_department,"[""community_and_government"",""fire_department""]", -26250,fire_protection_service,home_service,fire_protection_service,"[""services_and_business"",""home_service"",""fire_protection_service""]", -329,firearm_training,specialty_school,firearm_training,"[""education"",""specialty_school"",""firearm_training""]", -8474,fireplace_service,home_service,fireplace_service,"[""services_and_business"",""home_service"",""fireplace_service""]", -419,firewood,home_service,firewood,"[""services_and_business"",""home_service"",""firewood""]", -11548,firework_retailer,specialty_store,firework_store,"[""shopping"",""specialty_store"",""firework_store""]", -2950,first_aid_class,specialty_school,first_aid_class,"[""education"",""specialty_school"",""first_aid_class""]", -18879,fish_and_chips_restaurant,restaurant,fish_and_chips_restaurant,"[""food_and_drink"",""restaurant"",""seafood_restaurant"",""fish_and_chips_restaurant""]", -6004,fish_farm,farm,fish_farm,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""fish_farm_hatchery"",""fish_farm""]", -159,fish_farms_and_hatcheries,farm,fish_farm_hatchery,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""fish_farm_hatchery""]", -135,fish_restaurant,restaurant,fish_restaurant,"[""food_and_drink"",""restaurant"",""seafood_restaurant"",""fish_restaurant""]", -9805,fishing_charter,recreational_location,fishing_charter,"[""sports_and_recreation"",""water_sport"",""fishing"",""fishing_charter""]", -11952,fishing_club,sport_recreation_club,fishing_club,"[""sports_and_recreation"",""sports_club_and_league"",""fishing_club""]", -30775,fishmonger,food_or_beverage_store,fishmonger,"[""shopping"",""food_and_beverage_store"",""fishmonger""]", -270,fitness_equipment_wholesaler,wholesaler,fitness_equipment_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""fitness_equipment_wholesaler""]", -854,fitness_exercise_equipment,sporting_goods_store,fitness_exercise_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""fitness_exercise_store""]", -47912,fitness_trainer,sport_fitness_facility,fitness_trainer,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""fitness_trainer""]", -22,flatbread_restaurant,bakery,flatbread_shop,"[""food_and_drink"",""casual_eatery"",""bakery"",""flatbread_shop""]", -25712,flea_market,second_hand_shop,flea_market,"[""shopping"",""second_hand_store"",""flea_market""]", -8811,flight_school,specialty_school,flight_school,"[""education"",""specialty_school"",""flight_school""]", -35,float_spa,spa,float_spa,"[""health_care"",""float_spa""]", -17468,flooring_contractors,building_contractor_service,flooring_contractor,"[""services_and_business"",""home_service"",""contractor"",""flooring_contractor""]", -6091,flooring_store,specialty_store,flooring_store,"[""shopping"",""specialty_store"",""flooring_store""]", -97,floral_designer,event_or_party_service,floral_designer,"[""services_and_business"",""professional_service"",""event_planning"",""floral_designer""]", -17879,florist,flower_shop,florist,"[""shopping"",""specialty_store"",""flowers_and_gifts_shop"",""florist""]", -90,flour_mill,b2b_supplier_distributor,flour_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""flour_mill""]", -37,flower_markets,flower_shop,flower_market,"[""shopping"",""specialty_store"",""flowers_and_gifts_shop"",""flower_market""]", -441280,flowers_and_gifts_shop,flower_shop,flowers_and_gifts_shop,"[""shopping"",""specialty_store"",""flowers_and_gifts_shop""]", -50,flyboarding_center,sport_fitness_facility,flyboarding_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""flyboarding_center""]", -2,flyboarding_rental,sport_fitness_facility,flyboarding_rental,"[""sports_and_recreation"",""sports_and_recreation_venue"",""flyboarding_rental""]", -156,fmcg_wholesaler,wholesaler,fmcg_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""fmcg_wholesaler""]", -2349,fondue_restaurant,casual_eatery,fondue_restaurant,"[""food_and_drink"",""casual_eatery"",""fondue_restaurant""]", -36552,food,food_or_beverage_store,food_and_beverage_store,"[""shopping"",""food_and_beverage_store""]", -488,food_and_beverage_consultant,b2b_service,food_and_beverage_consultant,"[""services_and_business"",""professional_service"",""food_and_beverage_consultant""]", -643,food_and_beverage_exporter,import_export_company,food_and_beverage_exporter,"[""services_and_business"",""business_to_business"",""import_export_service"",""exporter"",""food_and_beverage_exporter""]", -4893,food_banks,food_bank,food_bank,"[""community_and_government"",""organization"",""social_service_organization"",""food_bank""]", -55871,food_beverage_service_distribution,b2b_supplier_distributor,food_beverage_distributor,"[""services_and_business"",""business"",""food_beverage_distributor""]", -2695,food_consultant,business_management_service,food_consultant,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""consultant_and_general_service"",""food_consultant""]", -2986,food_court,food_court,food_court,"[""food_and_drink"",""casual_eatery"",""food_court""]", -48356,food_delivery_service,food_delivery_service,food_delivery_service,"[""shopping"",""food_and_beverage_store"",""food_delivery_service""]", -624,food_safety_training,specialty_school,food_safety_training,"[""education"",""specialty_school"",""food_safety_training""]", -48403,food_stand,casual_eatery,food_stand,"[""food_and_drink"",""casual_eatery"",""food_stand""]", -770,food_tours,tour_operator,food_tour,"[""travel_and_transportation"",""travel"",""tour"",""food_tour""]", -31396,food_truck,casual_eatery,food_truck,"[""food_and_drink"",""casual_eatery"",""food_truck""]", -405,foot_care,personal_service,foot_care,"[""lifestyle_services"",""beauty_service"",""foot_care""]", -166,football_club,sport_recreation_club,football_club,"[""sports_and_recreation"",""sports_club_and_league"",""football_club""]", -8244,football_stadium,sport_stadium,football_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""football_stadium""]", -69,footwear_wholesaler,wholesaler,footwear_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""footwear_wholesaler""]", -7417,forest,forest,forest,"[""geographic_entities"",""forest""]", -25,forestry_consultants,b2b_service,forestry_consultant,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service"",""forestry_consultant""]", -14311,forestry_service,b2b_service,forestry_service,"[""services_and_business"",""professional_service"",""forestry_service""]", -502,forklift_dealer,vehicle_dealer,forklift_dealer,"[""shopping"",""vehicle_dealer"",""forklift_dealer""]", -1270,formal_wear_store,clothing_store,formal_wear_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""formal_wear_store""]", -1505,fort,fort,fort,"[""cultural_and_historic"",""architectural_landmark"",""fort""]", -60,fortune_telling_service,event_or_party_service,fortune_telling_service,"[""services_and_business"",""professional_service"",""fortune_telling_service""]", -1757,foster_care_services,foster_care_service,foster_care_service,"[""community_and_government"",""organization"",""social_service_organization"",""foster_care_service""]", -489,foundation_repair,home_service,foundation_repair,"[""services_and_business"",""home_service"",""foundation_repair""]", -12061,fountain,public_fountain,fountain,"[""geographic_entities"",""fountain""]", -5709,framing_store,art_craft_hobby_store,framing_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""framing_store""]", -101,fraternal_organization,social_club,fraternal_organization,"[""arts_and_entertainment"",""social_club"",""fraternal_organization""]", -32,free_diving_center,sport_fitness_facility,free_diving_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""diving_center"",""free_diving_center""]", -184324,freight_and_cargo_service,shipping_delivery_service,freight_and_cargo_service,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""freight_and_cargo_service""]", -3287,freight_forwarding_agency,shipping_delivery_service,freight_forwarding_agency,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""freight_and_cargo_service"",""freight_forwarding_agency""]", -63366,french_restaurant,restaurant,french_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""french_restaurant""]", -555,friterie,casual_eatery,friterie,"[""food_and_drink"",""casual_eatery"",""friterie""]", -1643,frozen_foods,food_or_beverage_store,frozen_foods_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store"",""frozen_foods_store""]", -9777,frozen_yoghurt_shop,casual_eatery,frozen_yogurt_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""frozen_yogurt_shop""]", -66007,fruits_and_vegetables,produce_store,produce_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store"",""produce_store""]", -15,fuel_dock,gas_station,fuel_dock,"[""travel_and_transportation"",""automotive_and_ground_transport"",""fueling_station"",""gas_station"",""fuel_dock""]", -118580,funeral_services_and_cemeteries,funeral_service,funeral_service,"[""services_and_business"",""professional_service"",""funeral_service""]", -466,fur_clothing,clothing_store,fur_clothing,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""fur_clothing""]", -1794,furniture_accessory_store,specialty_store,furniture_accessory_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""furniture_accessory_store""]", -30261,furniture_assembly,home_service,furniture_assembly,"[""services_and_business"",""home_service"",""furniture_assembly""]", -10689,furniture_manufacturers,manufacturer,furniture_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""furniture_manufacturer""]", -566,furniture_rental_service,home_service,furniture_rental_service,"[""services_and_business"",""professional_service"",""furniture_rental_service""]", -601,furniture_repair,home_service,furniture_repair,"[""services_and_business"",""professional_service"",""furniture_repair""]", -292,furniture_reupholstery,home_service,furniture_reupholstery,"[""services_and_business"",""professional_service"",""furniture_reupholstery""]", -501268,furniture_store,specialty_store,furniture_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""furniture_store""]", -876,furniture_wholesalers,wholesaler,furniture_wholesaler,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_furniture_and_housewares"",""furniture_wholesaler""]", -14,futsal_field,sport_field,futsal_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""futsal_field""]", -7733,game_publisher,media_service,game_publisher,"[""services_and_business"",""media_and_news"",""media_news_company"",""game_publisher""]", -11,game_truck_rental,event_or_party_service,game_truck_rental,"[""services_and_business"",""professional_service"",""event_planning"",""game_truck_rental""]", -18645,garage_door_service,home_service,garage_door_service,"[""services_and_business"",""home_service"",""garage_door_service""]", -50432,garbage_collection_service,garbage_collection_service,garbage_collection_service,"[""community_and_government"",""public_utility_provider"",""garbage_collection_service""]", -42939,gardener,landscaping_gardening_service,gardener,"[""services_and_business"",""home_service"",""landscaping"",""gardener""]", -652453,gas_station,gas_station,gas_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""fueling_station"",""gas_station""]", -13532,gastroenterologist,internal_medicine,gastroenterologist,"[""health_care"",""doctor"",""gastroenterologist""]", -23524,gastropub,casual_eatery,gastropub,"[""food_and_drink"",""casual_eatery"",""gastropub""]", -41,gay_and_lesbian_services_organization,social_or_community_service,gay_and_lesbian_services_organization,"[""community_and_government"",""organization"",""social_service_organization"",""gay_and_lesbian_services_organization""]", -3933,gay_bar,bar,gay_bar,"[""food_and_drink"",""bar"",""gay_bar""]", -8163,gelato,casual_eatery,gelato,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""gelato_shop""]", -213,gemstone_and_mineral,specialty_store,gemstone_and_mineral_store,"[""shopping"",""specialty_store"",""gemstone_and_mineral_store""]", -680,genealogists,educational_service,genealogist,"[""services_and_business"",""professional_service"",""genealogist""]", -86913,general_dentistry,general_dentistry,general_dentistry,"[""health_care"",""dentist"",""general_dentistry""]", -635,general_festivals,festival_venue,festival_venue,"[""arts_and_entertainment"",""festival_venue""]", -1169,general_litigation,attorney_or_law_firm,general_litigation,"[""services_and_business"",""professional_service"",""lawyer"",""general_litigation""]", -62,generator_installation_repair,b2b_service,generator_installation_repair,"[""services_and_business"",""professional_service"",""generator_installation_repair""]", -94,geneticist,healthcare_location,geneticist,"[""health_care"",""doctor"",""geneticist""]", -4441,gents_tailor,personal_service,tailor,"[""services_and_business"",""professional_service"",""sewing_and_alterations"",""tailor""]", -2,geologic_formation,nature_outdoors,geologic_formation,"[""geographic_entities"",""geologic_formation""]", -3991,geological_services,b2b_service,geological_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service"",""geological_service""]", -1322,georgian_restaurant,restaurant,georgian_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""georgian_restaurant""]", -809,geriatric_medicine,healthcare_location,geriatric_medicine,"[""health_care"",""doctor"",""geriatric_medicine""]", -57,geriatric_psychiatry,psychiatry,geriatric_psychiatry,"[""health_care"",""doctor"",""geriatric_medicine"",""geriatric_psychiatry""]", -26345,german_restaurant,restaurant,german_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""german_restaurant""]", -329,gerontologist,healthcare_location,gerontologist,"[""health_care"",""doctor"",""gerontologist""]", -52184,gift_shop,gift_shop,gift_shop,"[""shopping"",""specialty_store"",""flowers_and_gifts_shop"",""gift_shop""]", -40296,glass_and_mirror_sales_service,home_service,glass_and_mirror_sales_service,"[""services_and_business"",""home_service"",""glass_and_mirror_sales_service""]", -1054,glass_blowing,entertainment_location,glass_blowing_venue,"[""arts_and_entertainment"",""arts_and_crafts_space"",""glass_blowing_venue""]", -5501,glass_manufacturer,manufacturer,glass_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""glass_manufacturer""]", -10,gliderports,airport,gliderport,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport"",""gliderport""]", -1078,gluten_free_restaurant,restaurant,gluten_free_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""gluten_free_restaurant""]", -3806,go_kart_club,sport_recreation_club,go_kart_club,"[""sports_and_recreation"",""sports_club_and_league"",""go_kart_club""]", -556,go_kart_track,sport_fitness_facility,go_kart_track,"[""sports_and_recreation"",""sports_and_recreation_venue"",""race_track"",""go_kart_track""]", -1867,gold_buyer,specialty_store,gold_buyer,"[""services_and_business"",""gold_buyer""]", -79,goldsmith,specialty_store,goldsmith,"[""services_and_business"",""professional_service"",""goldsmith""]", -3030,golf_cart_dealer,vehicle_dealer,golf_cart_dealer,"[""shopping"",""vehicle_dealer"",""golf_cart_dealer""]", -80,golf_cart_rental,event_or_party_service,golf_cart_rental,"[""services_and_business"",""professional_service"",""event_planning"",""golf_cart_rental""]", -2433,golf_club,golf_club,golf_club,"[""sports_and_recreation"",""sports_club_and_league"",""golf_club""]", -43818,golf_course,golf_course,golf_course,"[""sports_and_recreation"",""sports_and_recreation_venue"",""golf_course""]", -2389,golf_equipment,sporting_goods_store,golf_equipment_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""golf_equipment_store""]", -3126,golf_instructor,sport_fitness_facility,golf_instructor,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""golf_instructor""]", -15553,government_services,government_office,government_office,"[""community_and_government"",""government_office""]", -1003,grain_elevators,agricultural_service,grain_elevator,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""farm_equipment_and_supply"",""grain_elevator""]", -1042,grain_production,farm,grain_production,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""crops_production"",""grain_production""]", -10103,granite_supplier,b2b_supplier_distributor,granite_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""granite_supplier""]", -71758,graphic_designer,graphic_design_service,graphic_designer,"[""services_and_business"",""professional_service"",""graphic_designer""]", -50,gravel_professionals,building_construction_service,gravel_professional,"[""services_and_business"",""professional_service"",""construction_service"",""gravel_professional""]", -30658,greek_restaurant,restaurant,greek_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""mediterranean_restaurant"",""greek_restaurant""]", -244,greengrocer,wholesaler,greengrocer,"[""services_and_business"",""business_to_business"",""wholesaler"",""greengrocer""]", -238,greenhouses,greenhouse,greenhouse,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""b2b_farming"",""farm_equipment_and_supply"",""greenhouse""]", -447,grilling_equipment,specialty_store,grilling_equipment_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""grilling_equipment_store""]", -540803,grocery_store,grocery_store,grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store""]", -209,grout_service,home_service,grout_service,"[""services_and_business"",""home_service"",""grout_service""]", -1,guamanian_restaurant,restaurant,guamanian_restaurant,"[""food_and_drink"",""restaurant"",""pacific_rim_restaurant"",""micronesian_restaurant"",""guamanian_restaurant""]", -296,guatemalan_restaurant,restaurant,guatemalan_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""guatemalan_restaurant""]", -5209,guest_house,private_lodging,guest_house,"[""lodging"",""guest_house""]", -516,guitar_store,specialty_store,guitar_store,"[""shopping"",""specialty_store"",""musical_instrument_store"",""guitar_store""]", -16001,gun_and_ammo,specialty_store,gun_and_ammo_store,"[""shopping"",""specialty_store"",""gun_and_ammo_store""]", -9,gunsmith,specialty_store,gunsmith,"[""services_and_business"",""professional_service"",""gunsmith""]", -6289,gutter_service,home_service,gutter_service,"[""services_and_business"",""home_service"",""gutter_service""]", -589904,gym,gym,gym,"[""sports_and_recreation"",""sports_and_recreation_venue"",""gym""]", -16758,gymnastics_center,sport_fitness_facility,gymnastics_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""gymnastics_center""]", -28,gymnastics_club,sport_recreation_club,gymnastics_club,"[""sports_and_recreation"",""sports_club_and_league"",""gymnastics_club""]", -3166,hair_extensions,hair_salon,hair_extensions,"[""lifestyle_services"",""beauty_service"",""hair_replacement"",""hair_extensions""]", -762,hair_loss_center,personal_service,hair_loss_center,"[""lifestyle_services"",""beauty_service"",""hair_replacement"",""hair_loss_center""]", -15233,hair_removal,personal_service,hair_removal,"[""lifestyle_services"",""beauty_service"",""hair_removal""]", -6421,hair_replacement,personal_service,hair_replacement,"[""lifestyle_services"",""beauty_service"",""hair_replacement""]", -553915,hair_salon,hair_salon,hair_salon,"[""lifestyle_services"",""beauty_service"",""hair_salon""]", -11066,hair_stylist,hair_salon,hair_stylist,"[""lifestyle_services"",""beauty_service"",""hair_salon"",""hair_stylist""]", -49470,hair_supply_stores,specialty_store,hair_supply_store,"[""shopping"",""specialty_store"",""cosmetic_and_beauty_supply_store"",""hair_supply_store""]", -349,haitian_restaurant,restaurant,haitian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""haitian_restaurant""]", -7362,halal_restaurant,restaurant,halal_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""halal_restaurant""]", -1635,halfway_house,social_or_community_service,halfway_house,"[""health_care"",""halfway_house""]", -18,halotherapy,healthcare_location,halotherapy,"[""health_care"",""halotherapy""]", -1108,handbag_stores,fashion_or_apparel_store,handbag_store,"[""shopping"",""fashion_and_apparel_store"",""fashion_accessories_store"",""handbag_store""]", -933,handicraft_shop,art_craft_hobby_store,craft_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""craft_store""]", -11042,handyman,handyman_service,handyman,"[""services_and_business"",""home_service"",""handyman""]", -97,hang_gliding_center,sport_fitness_facility,hang_gliding_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""hang_gliding_center""]", -275556,hardware_store,hardware_store,hardware_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""hardware_store""]", -5911,hat_shop,fashion_or_apparel_store,hat_store,"[""shopping"",""fashion_and_apparel_store"",""fashion_accessories_store"",""hat_store""]", -2791,haunted_house,entertainment_location,haunted_house,"[""arts_and_entertainment"",""amusement_attraction"",""haunted_house""]", -3,haute_cuisine_restaurant,restaurant,haute_cuisine_restaurant,"[""food_and_drink"",""restaurant"",""haute_cuisine_restaurant""]", -2649,hawaiian_restaurant,restaurant,hawaiian_restaurant,"[""food_and_drink"",""restaurant"",""pacific_rim_restaurant"",""polynesian_restaurant"",""hawaiian_restaurant""]", -149,hazardous_waste_disposal,b2b_service,hazardous_waste_disposal,"[""services_and_business"",""professional_service"",""hazardous_waste_disposal""]", -322823,health_and_medical,healthcare_location,health_care,"[""health_care""]", -14704,health_and_wellness_club,personal_service,health_and_wellness_club,"[""health_care"",""health_and_wellness_club""]", -1152,health_coach,healthcare_location,health_consultant_coach,"[""health_care"",""health_consultant_coach""]", -3244,health_consultant,healthcare_location,health_consultant_coach,"[""health_care"",""health_consultant_coach""]", -4251,health_department,government_office,health_department,"[""health_care"",""health_department""]", -8287,health_food_restaurant,restaurant,health_food_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""health_food_restaurant""]", -78997,health_food_store,grocery_store,health_food_store,"[""shopping"",""food_and_beverage_store"",""health_food_store""]", -9347,health_insurance_office,insurance_agency,health_insurance_office,"[""health_care"",""health_insurance_office""]", -1726,health_market,specialty_store,health_market,"[""shopping"",""specialty_store"",""health_market""]", -119,health_retreats,accommodation,health_retreat,"[""lodging"",""health_retreat""]", -15327,health_spa,spa,health_spa,"[""lifestyle_services"",""spa"",""health_spa""]", -303,hearing_aid_provider,specialty_store,hearing_aid_store,"[""shopping"",""specialty_store"",""medical_supply_store"",""hearing_aid_store""]", -23410,hearing_aids,specialty_store,hearing_aid_store,"[""shopping"",""specialty_store"",""medical_supply_store"",""hearing_aid_store""]", -1959,heliports,heliport,heliport,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport"",""heliport""]", -3743,hematology,internal_medicine,hematology,"[""health_care"",""doctor"",""internal_medicine"",""hematology""]", -57,henna_artist,event_or_party_service,henna_artist,"[""services_and_business"",""professional_service"",""event_planning"",""henna_artist""]", -61,hepatologist,healthcare_location,hepatologist,"[""health_care"",""doctor"",""hepatologist""]", -957,herb_and_spice_shop,food_or_beverage_store,herb_and_spice_store,"[""shopping"",""food_and_beverage_store"",""herb_and_spice_store""]", -1036,herbal_shop,food_or_beverage_store,herb_and_spice_store,"[""shopping"",""food_and_beverage_store"",""herb_and_spice_store""]", -10,high_gliding_center,sport_fitness_facility,high_gliding_center,"[""sports_and_recreation"",""adventure_sport"",""high_gliding_center""]", -176928,high_school,high_school,high_school,"[""education"",""school"",""high_school""]", -42031,hiking_trail,hiking_trail,hiking_trail,"[""sports_and_recreation"",""trail"",""hiking_trail""]", -2289,himalayan_nepalese_restaurant,restaurant,himalayan_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""south_asian_restaurant"",""himalayan_restaurant""]", -128694,hindu_temple,hindu_place_of_worship,hindu_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""hindu_place_of_worship""]", -530,historical_tours,tour_operator,historical_tour,"[""travel_and_transportation"",""travel"",""tour"",""historical_tour""]", -38421,history_museum,history_museum,history_museum,"[""arts_and_entertainment"",""museum"",""history_museum""]", -27320,hobby_shop,art_craft_hobby_store,hobby_shop,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""hobby_shop""]", -1429,hockey_arena,sport_stadium,hockey_arena,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""hockey_arena""]", -183,hockey_equipment,sporting_goods_store,hockey_equipment_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""hockey_equipment_store""]", -1218,hockey_field,sport_field,hockey_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""hockey_field""]", -964,holding_companies,financial_service,holding_company,"[""services_and_business"",""financial_service"",""holding_company""]", -189,holiday_decor,specialty_store,holiday_decor_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""holiday_decor_store""]", -25,holiday_decorating,home_service,holiday_decorating_service,"[""services_and_business"",""home_service"",""holiday_decorating_service""]", -4,holiday_market,festival_venue,holiday_market,"[""shopping"",""market"",""holiday_market""]", -108,holiday_park,resort,holiday_park,"[""services_and_business"",""real_estate"",""holiday_park""]", -197902,holiday_rental_home,private_lodging,holiday_rental_home,"[""lodging"",""holiday_rental_home""]", -86,holistic_animal_care,animal_service,holistic_animal_care,"[""lifestyle_services"",""pets"",""veterinary_care"",""holistic_animal_care""]", -30858,home_and_garden,specialty_store,home_and_garden_store,"[""shopping"",""specialty_store"",""home_and_garden_store""]", -631,home_and_rental_insurance,insurance_agency,home_and_rental_insurance,"[""services_and_business"",""financial_service"",""insurance_agency"",""home_and_rental_insurance""]", -874,home_automation,home_service,home_automation,"[""services_and_business"",""home_service"",""home_automation""]", -121741,home_cleaning,house_cleaning_service,home_cleaning,"[""services_and_business"",""home_service"",""home_cleaning""]", -10885,home_decor,specialty_store,home_decor_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""home_decor_store""]", -120585,home_developer,real_estate_developer,home_developer,"[""services_and_business"",""real_estate"",""builder"",""home_developer""]", -85,home_energy_auditor,home_service,home_energy_auditor,"[""services_and_business"",""home_service"",""home_energy_auditor""]", -125546,home_goods_store,specialty_store,home_goods_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""home_goods_store""]", -69420,home_health_care,healthcare_location,home_health_care,"[""health_care"",""personal_care_service"",""home_health_care""]", -124118,home_improvement_store,home_improvement_center,home_improvement_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""home_improvement_store""]", -12747,home_inspector,home_service,home_inspector,"[""services_and_business"",""home_service"",""home_inspector""]", -109,home_network_installation,home_service,home_network_installation,"[""services_and_business"",""home_service"",""home_network_installation""]", -1700,home_organization,social_or_community_service,home_organization,"[""community_and_government"",""organization"",""home_organization""]", -33873,home_security,home_service,home_security,"[""services_and_business"",""home_service"",""home_security""]", -160780,home_service,home_service,home_service,"[""services_and_business"",""home_service""]", -3401,home_staging,real_estate_service,home_staging,"[""services_and_business"",""real_estate"",""home_staging""]", -1410,home_theater_systems_stores,electronics_store,home_theater_systems_stores,"[""shopping"",""specialty_store"",""electronics_store"",""home_theater_systems_stores""]", -504,home_window_tinting,home_service,home_window_tinting,"[""services_and_business"",""home_service"",""home_window_tinting""]", -5360,homeless_shelter,homeless_shelter,homeless_shelter,"[""community_and_government"",""organization"",""social_service_organization"",""homeless_shelter""]", -1037,homeopathic_medicine,alternative_medicine,homeopathic_medicine,"[""health_care"",""doctor"",""homeopathic_medicine""]", -271,homeowner_association,home_service,homeowner_association,"[""services_and_business"",""real_estate"",""homeowner_association""]", -590,honduran_restaurant,restaurant,honduran_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""honduran_restaurant""]", -273,honey_farm_shop,food_or_beverage_store,honey_farm_shop,"[""shopping"",""food_and_beverage_store"",""honey_farm_shop""]", -1128,hong_kong_style_cafe,cafe,hong_kong_style_cafe,"[""food_and_drink"",""casual_eatery"",""cafe"",""hong_kong_style_cafe""]", -16383,hookah_bar,bar,hookah_bar,"[""food_and_drink"",""bar"",""hookah_bar""]", -16409,horse_boarding,animal_boarding,horse_boarding,"[""lifestyle_services"",""pets"",""equine_service"",""horse_boarding""]", -490,horse_equipment_shop,specialty_store,horse_equipment_shop,"[""shopping"",""specialty_store"",""horse_equipment_shop""]", -413,horse_racing_track,race_track,horse_racing_track,"[""sports_and_recreation"",""sports_and_recreation_venue"",""race_track"",""horse_racing_track""]", -12380,horse_riding,equestrian_facility,horse_riding,"[""sports_and_recreation"",""sports_and_recreation_venue"",""horse_riding""]", -5353,horse_trainer,animal_training,horse_trainer,"[""lifestyle_services"",""pets"",""equine_service"",""horse_trainer""]", -9209,horseback_riding_service,sport_fitness_facility,horseback_riding_service,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""horseback_riding_service""]", -8390,hospice,healthcare_location,hospice,"[""health_care"",""hospice""]", -558413,hospital,hospital,hospital,"[""health_care"",""hospital""]", -1339,hospital_equipment_and_supplies,b2b_service,hospital_equipment_and_supplies,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""hospital_equipment_and_supplies""]", -1257,hospitalist,healthcare_location,hospitalist,"[""health_care"",""doctor"",""hospitalist""]", -59926,hostel,accommodation,hostel,"[""lodging"",""hostel""]", -1131,hot_air_balloons_tour,tour_operator,hot_air_balloons_tour,"[""travel_and_transportation"",""travel"",""tour"",""hot_air_balloons_tour""]", -11845,hot_dog_restaurant,restaurant,hot_dog_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""hot_dog_restaurant""]", -31,hot_springs,nature_outdoors,hot_springs,"[""geographic_entities"",""hot_springs""]", -4208,hot_tubs_and_pools,specialty_store,hot_tub_and_pool_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""hot_tub_and_pool_store""]", -1302723,hotel,hotel,hotel,"[""lodging"",""hotel""]", -4545,hotel_bar,bar,hotel_bar,"[""food_and_drink"",""bar"",""hotel_bar""]", -2190,hotel_supply_service,b2b_supplier_distributor,hotel_supply_service,"[""services_and_business"",""business"",""hotel_supply_service""]", -414,house_sitting,home_service,house_sitting,"[""services_and_business"",""home_service"",""house_sitting""]", -12,houseboat,accommodation,houseboat,"[""lodging"",""houseboat""]", -5146,housing_authorities,social_or_community_service,housing_authority,"[""community_and_government"",""organization"",""social_service_organization"",""housing_authority""]", -1026,housing_cooperative,social_or_community_service,housing_cooperative,"[""services_and_business"",""real_estate"",""housing_cooperative""]", -4266,human_resource_services,human_resource_service,human_resource_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""human_resource_service""]", -1223,hungarian_restaurant,restaurant,hungarian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""hungarian_restaurant""]", -29123,hunting_and_fishing_supplies,sporting_goods_store,hunting_and_fishing_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""hunting_and_fishing_store""]", -133170,hvac_services,hvac_service,hvac_service,"[""services_and_business"",""home_service"",""hvac_service""]", -8597,hvac_supplier,b2b_supplier_distributor,hvac_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""hvac_supplier""]", -111,hybrid_car_repair,auto_repair_service,hybrid_car_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""hybrid_car_repair""]", -3191,hydraulic_equipment_supplier,b2b_supplier_distributor,hydraulic_equipment_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""hydraulic_equipment_supplier""]", -455,hydraulic_repair_service,b2b_service,hydraulic_repair_service,"[""services_and_business"",""professional_service"",""hydraulic_repair_service""]", -38,hydro_jetting,plumbing_service,hydro_jetting,"[""services_and_business"",""professional_service"",""hydro_jetting""]", -255,hydroponic_gardening,specialty_store,hydroponic_gardening_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""nursery_and_gardening_store"",""hydroponic_gardening_store""]", -25,hydrotherapy,healthcare_location,hydrotherapy,"[""health_care"",""hydrotherapy""]", -1835,hypnosis_hypnotherapy,healthcare_location,hypnotherapy,"[""health_care"",""hypnotherapy""]", -28,iberian_restaurant,restaurant,iberian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""iberian_restaurant""]", -6162,ice_cream_and_frozen_yoghurt,casual_eatery,ice_cream_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""ice_cream_shop""]", -184637,ice_cream_shop,casual_eatery,ice_cream_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""ice_cream_shop""]", -5634,ice_skating_rink,skating_rink,ice_skating_rink,"[""sports_and_recreation"",""sports_and_recreation_venue"",""skating_rink"",""ice_skating_rink""]", -802,ice_supplier,b2b_supplier_distributor,ice_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""ice_supplier""]", -2427,image_consultant,personal_service,image_consultant,"[""lifestyle_services"",""beauty_service"",""image_consultant""]", -195,immigration_and_naturalization,government_office,immigration_and_naturalization,"[""community_and_government"",""immigration_and_naturalization""]", -97,immigration_assistance_services,social_or_community_service,immigration_assistance_service,"[""services_and_business"",""professional_service"",""immigration_assistance_service""]", -11451,immigration_law,attorney_or_law_firm,immigration_law,"[""services_and_business"",""professional_service"",""lawyer"",""immigration_law""]", -76,immunodermatologist,allergy_and_immunology,immunodermatologist,"[""health_care"",""doctor"",""immunodermatologist""]", -726,imported_food,food_or_beverage_store,imported_food_store,"[""shopping"",""food_and_beverage_store"",""imported_food_store""]", -3655,importer_and_exporter,import_export_company,import_export_service,"[""services_and_business"",""business_to_business"",""import_export_service""]", -588,importers,import_export_company,importer,"[""services_and_business"",""business_to_business"",""import_export_service"",""importer""]", -5718,indian_grocery_store,grocery_store,indian_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""indian_grocery_store""]", -109407,indian_restaurant,restaurant,indian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""south_asian_restaurant"",""indian_restaurant""]", -112,indian_sweets_shop,candy_shop,indian_sweets_shop,"[""food_and_drink"",""casual_eatery"",""candy_store"",""indian_sweets_shop""]", -441,indo_chinese_restaurant,restaurant,indo_chinese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""chinese_restaurant"",""indo_chinese_restaurant""]", -56075,indonesian_restaurant,restaurant,indonesian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""indonesian_restaurant""]", -123,indoor_golf_center,sport_fitness_facility,indoor_golf_center,"[""sports_and_recreation"",""sports_club_and_league"",""golf_club"",""indoor_golf_center""]", -109,indoor_landscaping,landscaping_gardening_service,indoor_landscaping,"[""services_and_business"",""professional_service"",""indoor_landscaping""]", -1556,indoor_playcenter,entertainment_location,indoor_playcenter,"[""sports_and_recreation"",""indoor_playcenter""]", -248,industrial_cleaning_services,business_cleaning_service,industrial_cleaning_service,"[""services_and_business"",""professional_service"",""cleaning_service"",""industrial_cleaning_service""]", -76616,industrial_company,industrial_commercial_infrastructure,industrial_company,"[""services_and_business"",""business"",""industrial_company""]", -225396,industrial_equipment,b2b_supplier_distributor,industrial_equipment,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""b2b_machinery_and_tools"",""industrial_equipment""]", -302,industrial_spares_and_products_wholesaler,wholesaler,industrial_spares_and_products_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""industrial_spares_and_products_wholesaler""]", -2728,infectious_disease_specialist,healthcare_location,infectious_disease_specialist,"[""health_care"",""doctor"",""infectious_disease_specialist""]", -106510,information_technology_company,information_technology_service,information_technology_company,"[""services_and_business"",""business"",""information_technology_company""]", -19983,inn,inn,inn,"[""lodging"",""inn""]", -1858,inspection_services,building_inspection_service,inspection_service,"[""services_and_business"",""professional_service"",""construction_service"",""inspection_service""]", -46971,installment_loans,loan_provider,installment_loans,"[""services_and_business"",""financial_service"",""installment_loans""]", -69,instrumentation_engineers,engineering_service,instrumentation_engineer,"[""services_and_business"",""professional_service"",""construction_service"",""instrumentation_engineer""]", -1976,insulation_installation,home_service,insulation_installation,"[""services_and_business"",""home_service"",""insulation_installation""]", -374820,insurance_agency,insurance_agency,insurance_agency,"[""services_and_business"",""financial_service"",""insurance_agency""]", -119512,interior_design,interior_design_service,interior_design,"[""services_and_business"",""home_service"",""interior_design""]", -15,interlock_system,specialty_store,interlock_system,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories"",""interlock_system""]", -35464,internal_medicine,internal_medicine,internal_medicine,"[""health_care"",""doctor"",""internal_medicine""]", -7121,international_business_and_trade_services,b2b_service,international_business_and_trade_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""international_business_and_trade_service""]", -2472,international_grocery_store,grocery_store,international_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""international_grocery_store""]", -807,international_restaurant,restaurant,international_fusion_restaurant,"[""food_and_drink"",""restaurant"",""international_fusion_restaurant""]", -23460,internet_cafe,cafe,internet_cafe,"[""food_and_drink"",""casual_eatery"",""cafe"",""internet_cafe""]", -36618,internet_marketing_service,business_advertising_marketing,internet_marketing_service,"[""services_and_business"",""professional_service"",""internet_marketing_service""]", -42395,internet_service_provider,internet_service_provider,internet_service_provider,"[""services_and_business"",""professional_service"",""internet_service_provider""]", -715,inventory_control_service,b2b_service,inventory_control_service,"[""services_and_business"",""business_to_business"",""commercial_industrial"",""inventory_control_service""]", -26770,investing,financial_service,investing,"[""services_and_business"",""financial_service"",""investing""]", -1812,ip_and_internet_law,attorney_or_law_firm,ip_and_internet_law,"[""services_and_business"",""professional_service"",""lawyer"",""ip_and_internet_law""]", -7325,irish_pub,pub,irish_pub,"[""food_and_drink"",""bar"",""pub"",""irish_pub""]", -280,irish_restaurant,restaurant,irish_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""irish_restaurant""]", -27326,iron_and_steel_industry,b2b_supplier_distributor,metal_fabricator,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""metal_fabricator""]", -139,iron_and_steel_store,wholesaler,iron_and_steel_store,"[""services_and_business"",""business_to_business"",""wholesaler"",""iron_and_steel_store""]", -32,ironworkers,b2b_service,ironworker,"[""services_and_business"",""professional_service"",""construction_service"",""ironworker""]", -1691,irrigation,landscaping_gardening_service,irrigation_service,"[""services_and_business"",""home_service"",""irrigation_service""]", -125,irrigation_companies,landscaping_gardening_service,irrigation_service,"[""services_and_business"",""home_service"",""irrigation_service""]", -3359,island,nature_outdoors,island,"[""geographic_entities"",""island""]", -306,israeli_restaurant,restaurant,israeli_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""israeli_restaurant""]", -1627,it_consultant,technical_service,it_consultant,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair"",""it_consultant""]", -183380,it_service_and_computer_repair,technical_service,it_service_and_computer_repair,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair""]", -3833,it_support_and_service,technical_service,it_service_and_computer_repair,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair""]", -210782,italian_restaurant,restaurant,italian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""mediterranean_restaurant"",""italian_restaurant""]", -50,iv_hydration,healthcare_location,iv_hydration,"[""health_care"",""iv_hydration""]", -8789,jail_and_prison,jail_or_prison,jail_and_prison,"[""community_and_government"",""jail_and_prison""]", -2051,jamaican_restaurant,restaurant,jamaican_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""jamaican_restaurant""]", -21299,janitorial_services,business_cleaning_service,janitorial_service,"[""services_and_business"",""professional_service"",""cleaning_service"",""janitorial_service""]", -347,japanese_confectionery_shop,candy_shop,japanese_confectionery_shop,"[""food_and_drink"",""casual_eatery"",""candy_store"",""japanese_confectionery_shop""]", -30,japanese_grocery_store,grocery_store,japanese_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""japanese_grocery_store""]", -306616,japanese_restaurant,restaurant,japanese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""japanese_restaurant""]", -3210,jazz_and_blues,music_venue,jazz_and_blues_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue"",""jazz_and_blues_venue""]", -2511,jehovahs_witness_kingdom_hall,christian_place_of_worshop,jehovahs_witness_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""restorationist_place_of_worship"",""jehovahs_witness_place_of_worshop""]", -1735,jet_skis_rental,water_sport_equipment_rental_service,jet_skis_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""jet_skis_rental""]", -16505,jewelry_and_watches_manufacturer,manufacturer,jewelry_and_watches_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""jewelry_and_watches_manufacturer""]", -67,jewelry_manufacturer,manufacturer,jewelry_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""jewelry_manufacturer""]", -58,jewelry_repair_service,personal_service,jewelry_repair_service,"[""services_and_business"",""professional_service"",""jewelry_repair_service""]", -291184,jewelry_store,jewelry_store,jewelry_store,"[""shopping"",""fashion_and_apparel_store"",""jewelry_store""]", -66,jewish_restaurant,restaurant,jewish_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""jewish_restaurant""]", -2618,junk_removal_and_hauling,home_service,junk_removal_and_hauling,"[""services_and_business"",""professional_service"",""junk_removal_and_hauling""]", -4275,junkyard,second_hand_shop,junkyard,"[""services_and_business"",""professional_service"",""junkyard""]", -22,juvenile_detention_center,jail_or_prison,juvenile_detention_center,"[""community_and_government"",""jail_and_prison"",""juvenile_detention_center""]", -30027,karaoke,music_venue,karaoke_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue"",""karaoke_venue""]", -28,karaoke_rental,event_or_party_service,karaoke_rental,"[""services_and_business"",""professional_service"",""event_planning"",""karaoke_rental""]", -711,karate_club,martial_arts_club,karate_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""karate_club""]", -79300,key_and_locksmith,locksmith_service,key_and_locksmith,"[""services_and_business"",""home_service"",""key_and_locksmith""]", -949,kickboxing_club,martial_arts_club,kickboxing_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""kickboxing_club""]", -2547,kids_hair_salon,hair_salon,kids_hair_salon,"[""lifestyle_services"",""beauty_service"",""hair_salon"",""kids_hair_salon""]", -9350,kids_recreation_and_party,childrens_party_service,kids_recreation_and_party,"[""services_and_business"",""professional_service"",""event_planning"",""kids_recreation_and_party""]", -1242,kiosk,casual_eatery,kiosk,"[""shopping"",""kiosk""]", -8027,kitchen_and_bath,specialty_store,kitchen_and_bath_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""kitchen_and_bath_store""]", -6,kitchen_incubator,real_estate_service,kitchen_incubator,"[""services_and_business"",""real_estate"",""kitchen_incubator""]", -5073,kitchen_remodeling,remodeling_service,kitchen_remodeling,"[""services_and_business"",""home_service"",""kitchen_remodeling""]", -11413,kitchen_supply_store,specialty_store,kitchen_supply_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""kitchen_and_bath_store"",""kitchen_supply_store""]", -675,kiteboarding,sport_fitness_facility,kiteboarding,"[""sports_and_recreation"",""sports_and_recreation_venue"",""kiteboarding""]", -4,kiteboarding_instruction,sport_fitness_facility,kiteboarding_instruction,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""kiteboarding_instruction""]", -251,knife_sharpening,home_service,knife_sharpening,"[""services_and_business"",""professional_service"",""knife_sharpening""]", -795,knitting_supply,art_craft_hobby_store,knitting_supply_store,"[""shopping"",""specialty_store"",""arts_and_crafts_store"",""craft_store"",""knitting_supply_store""]", -32,kofta_restaurant,restaurant,kofta_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""kofta_restaurant""]", -5,kombucha,beverage_shop,kombucha_bar,"[""food_and_drink"",""beverage_shop"",""kombucha_bar""]", -13945,korean_grocery_store,grocery_store,korean_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""korean_grocery_store""]", -79677,korean_restaurant,restaurant,korean_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""korean_restaurant""]", -21,kosher_grocery_store,grocery_store,kosher_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""kosher_grocery_store""]", -1201,kosher_restaurant,restaurant,kosher_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""kosher_restaurant""]", -75,kurdish_restaurant,restaurant,kurdish_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""kurdish_restaurant""]", -25931,labor_union,labor_union,labor_union,"[""community_and_government"",""organization"",""labor_union""]", -9689,laboratory,b2b_service,laboratory,"[""services_and_business"",""professional_service"",""laboratory""]", -755,laboratory_equipment_supplier,b2b_supplier_distributor,laboratory_equipment_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""laboratory_equipment_supplier""]", -90928,laboratory_testing,diagnostic_service,laboratory_testing,"[""health_care"",""diagnostic_service"",""laboratory_testing""]", -25,lactation_services,healthcare_location,lactation_service,"[""health_care"",""lactation_service""]", -214905,lake,nature_outdoors,lake,"[""geographic_entities"",""lake""]", -25395,land_surveying,real_estate_service,land_surveying,"[""services_and_business"",""real_estate"",""real_estate_service"",""land_surveying""]", -1014974,landmark_and_historical_building,historic_site,architectural_landmark,"[""cultural_and_historic"",""architectural_landmark""]", -7638,landscape_architect,landscaping_gardening_service,landscape_architect,"[""services_and_business"",""home_service"",""landscaping"",""landscape_architect""]", -87274,landscaping,landscaping_gardening_service,landscaping,"[""services_and_business"",""home_service"",""landscaping""]", -88011,language_school,specialty_school,language_school,"[""education"",""specialty_school"",""language_school""]", -10,laotian_restaurant,restaurant,laotian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""laotian_restaurant""]", -173,laser_cutting_service_provider,b2b_service,laser_cutting_service_provider,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""laser_cutting_service_provider""]", -1640,laser_eye_surgery_lasik,eye_care,laser_eye_surgery_lasik,"[""health_care"",""laser_eye_surgery_lasik""]", -18640,laser_hair_removal,personal_service,laser_hair_removal,"[""lifestyle_services"",""beauty_service"",""hair_removal"",""laser_hair_removal""]", -2524,laser_tag,entertainment_location,laser_tag,"[""sports_and_recreation"",""laser_tag""]", -11156,latin_american_restaurant,restaurant,latin_american_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant""]", -104334,laundromat,laundromat,laundromat,"[""services_and_business"",""professional_service"",""laundry_service"",""laundromat""]", -18906,laundry_services,laundry_service,laundry_service,"[""services_and_business"",""professional_service"",""laundry_service""]", -15010,law_enforcement,police_station,law_enforcement,"[""community_and_government"",""law_enforcement""]", -626,law_schools,college_university,law_school,"[""education"",""college_university"",""law_school""]", -14,lawn_bowling_club,sport_recreation_club,lawn_bowling_club,"[""sports_and_recreation"",""sports_club_and_league"",""lawn_bowling_club""]", -127,lawn_mower_repair_service,home_service,lawn_mower_repair_service,"[""services_and_business"",""professional_service"",""lawn_mower_repair_service""]", -1418,lawn_mower_store,specialty_store,lawn_mower_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""lawn_mower_store""]", -3923,lawn_service,landscaping_gardening_service,lawn_service,"[""services_and_business"",""home_service"",""landscaping"",""lawn_service""]", -275303,lawyer,attorney_or_law_firm,lawyer,"[""services_and_business"",""professional_service"",""lawyer""]", -3947,leather_goods,fashion_or_apparel_store,leather_goods_store,"[""shopping"",""specialty_store"",""leather_goods_store""]", -77,leather_products_manufacturer,manufacturer,leather_products_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""leather_products_manufacturer""]", -6770,lebanese_restaurant,restaurant,lebanese_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""lebanese_restaurant""]", -157936,legal_services,legal_service,legal_service,"[""services_and_business"",""professional_service"",""legal_service""]", -152227,library,library,library,"[""community_and_government"",""library""]", -172,lice_treatment,healthcare_location,lice_treatment,"[""health_care"",""lice_treatment""]", -23237,life_coach,educational_service,life_coach,"[""services_and_business"",""professional_service"",""life_coach""]", -10184,life_insurance,insurance_agency,life_insurance,"[""services_and_business"",""financial_service"",""insurance_agency"",""life_insurance""]", -2680,light_rail_and_subway_stations,transportation_location,light_rail_and_subway_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""light_rail_and_subway_station""]", -3867,lighthouse,lighthouse,lighthouse,"[""cultural_and_historic"",""architectural_landmark"",""lighthouse""]", -231,lighting_fixture_manufacturers,manufacturer,lighting_fixture_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""lighting_fixture_manufacturer""]", -394,lighting_fixtures_and_equipment,home_service,lighting_fixtures_and_equipment,"[""services_and_business"",""home_service"",""lighting_fixtures_and_equipment""]", -38794,lighting_store,specialty_store,lighting_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""lighting_store""]", -43,lime_professionals,building_construction_service,lime_professional,"[""services_and_business"",""professional_service"",""construction_service"",""lime_professional""]", -11380,limo_services,taxi_or_ride_share_service,limo_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""limo_service""]", -34755,linen,specialty_store,linen_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""linen_store""]", -45645,lingerie_store,clothing_store,lingerie_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""lingerie_store""]", -5,lingerie_wholesaler,wholesaler,lingerie_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""lingerie_wholesaler""]", -166948,liquor_store,liquor_store,liquor_store,"[""shopping"",""food_and_beverage_store"",""liquor_store""]", -654,live_and_raw_food_restaurant,restaurant,live_and_raw_food_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""live_and_raw_food_restaurant""]", -22838,livestock_breeder,agricultural_service,livestock_breeder,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""livestock_breeder""]", -71,livestock_dealers,agricultural_service,livestock_dealer,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""livestock_dealer""]", -501,livestock_feed_and_supply_store,specialty_store,livestock_feed_and_supply_store,"[""shopping"",""specialty_store"",""livestock_feed_and_supply_store""]", -6721,local_and_state_government_offices,government_office,government_office,"[""community_and_government"",""government_office""]", -66304,lodge,accommodation,lodge,"[""lodging"",""lodge""]", -2385,logging_contractor,b2b_supplier_distributor,logging_contractor,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""wood_and_pulp"",""logging_contractor""]", -314,logging_equipment_and_supplies,b2b_supplier_distributor,logging_equipment_and_supplies,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""wood_and_pulp"",""logging_equipment_and_supplies""]", -14135,logging_services,b2b_supplier_distributor,logging_service,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""wood_and_pulp"",""logging_service""]", -25,lookout,scenic_viewpoint,lookout,"[""geographic_entities"",""lookout""]", -16695,lottery_ticket,specialty_store,lottery_ticket,"[""services_and_business"",""professional_service"",""lottery_ticket""]", -57973,lounge,eating_drinking_location,lounge,"[""food_and_drink"",""lounge""]", -119,low_income_housing,social_or_community_service,low_income_housing,"[""community_and_government"",""low_income_housing""]", -4296,luggage_storage,luggage_storage,luggage_storage,"[""travel_and_transportation"",""travel"",""luggage_storage""]", -23880,luggage_store,specialty_store,luggage_store,"[""shopping"",""specialty_store"",""luggage_store""]", -19350,lumber_store,specialty_store,lumber_store,"[""shopping"",""specialty_store"",""building_supply_store"",""lumber_store""]", -44,macarons,bakery,macaron_shop,"[""food_and_drink"",""casual_eatery"",""bakery"",""macaron_shop""]", -8124,machine_and_tool_rentals,technical_service,machine_and_tool_rental,"[""services_and_business"",""professional_service"",""machine_and_tool_rental""]", -56404,machine_shop,machine_shop,machine_shop,"[""services_and_business"",""professional_service"",""machine_shop""]", -723,magician,event_or_party_service,magician,"[""services_and_business"",""professional_service"",""event_planning"",""magician""]", -468,mailbox_center,shipping_delivery_service,mailbox_center,"[""services_and_business"",""professional_service"",""mailbox_center""]", -1,major_airports,airport,airport,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport""]", -26,makerspace,makerspace,makerspace,"[""arts_and_entertainment"",""science_attraction"",""makerspace""]", -26068,makeup_artist,personal_service,makeup_artist,"[""lifestyle_services"",""beauty_service"",""skin_care_and_ makeup"",""makeup_artist""]", -12503,malaysian_restaurant,restaurant,malaysian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""malaysian_restaurant""]", -232,manufacturers_agents_and_representatives,manufacturer,manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer""]", -195,manufacturing_and_industrial_consultant,business_management_service,manufacturing_and_industrial_consultant,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""consultant_and_general_service"",""manufacturing_and_industrial_consultant""]", -863,marble_and_granite_professionals,building_construction_service,marble_and_granite_professional,"[""services_and_business"",""professional_service"",""construction_service"",""marble_and_granite_professional""]", -1,marching_band,music_venue,music_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue""]", -18149,marina,marina,marina,"[""travel_and_transportation"",""watercraft_and_water_transport"",""waterway"",""marina""]", -2,market_stall,specialty_store,market_stall,"[""shopping"",""market"",""market_stall""]", -128734,marketing_agency,business_advertising_marketing,marketing_agency,"[""services_and_business"",""professional_service"",""marketing_agency""]", -20549,marketing_consultant,business_advertising_marketing,marketing_consultant,"[""services_and_business"",""business_to_business"",""business_advertising"",""marketing_consultant""]", -4203,marriage_or_relationship_counselor,mental_health,marriage_or_relationship_counselor,"[""health_care"",""counseling_and_mental_health"",""marriage_or_relationship_counselor""]", -124692,martial_arts_club,martial_arts_club,martial_arts_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club""]", -23449,masonry_concrete,home_service,masonry_concrete,"[""services_and_business"",""home_service"",""masonry_concrete""]", -3769,masonry_contractors,building_construction_service,masonry_contractor,"[""services_and_business"",""professional_service"",""construction_service"",""masonry_contractor""]", -13109,mass_media,media_service,media_and_news,"[""services_and_business"",""media_and_news""]", -49788,massage,massage_therapy,massage_therapy,"[""health_care"",""massage_therapy""]", -1770,massage_school,specialty_school,massage_school,"[""education"",""specialty_school"",""massage_school""]", -109558,massage_therapy,massage_therapy,massage_therapy,"[""health_care"",""massage_therapy""]", -211,matchmaker,personal_service,matchmaker,"[""services_and_business"",""professional_service"",""matchmaker""]", -6028,maternity_centers,healthcare_location,maternity_center,"[""health_care"",""maternity_center""]", -1950,maternity_wear,clothing_store,maternity_wear,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""maternity_wear""]", -2182,mattress_manufacturing,manufacturer,mattress_manufacturing,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mattress_manufacturing""]", -45543,mattress_store,specialty_store,mattress_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""mattress_store""]", -112,meat_restaurant,restaurant,meat_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant""]", -966,meat_shop,butcher_shop,butcher_shop,"[""shopping"",""food_and_beverage_store"",""butcher_shop""]", -11506,meat_wholesaler,wholesaler,meat_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""meat_wholesaler""]", -1479,mechanical_engineers,engineering_service,mechanical_engineer,"[""services_and_business"",""professional_service"",""construction_service"",""mechanical_engineer""]", -23453,media_agency,media_service,media_agency,"[""services_and_business"",""media_and_news"",""media_news_company"",""media_agency""]", -23,media_critic,media_service,media_critic,"[""services_and_business"",""media_and_news"",""media_critic""]", -19367,media_news_company,media_service,media_news_company,"[""services_and_business"",""media_and_news"",""media_news_company""]", -6668,media_news_website,media_service,media_news_website,"[""services_and_business"",""media_and_news"",""media_news_website""]", -94,media_restoration_service,media_service,media_restoration_service,"[""services_and_business"",""media_and_news"",""media_restoration_service""]", -646,mediator,b2b_service,mediator,"[""services_and_business"",""professional_service"",""mediator""]", -9,medical_cannabis_referral,healthcare_location,medical_cannabis_referral,"[""health_care"",""medical_cannabis_referral""]", -209740,medical_center,healthcare_location,medical_center,"[""health_care"",""medical_center""]", -1305,medical_law,attorney_or_law_firm,medical_law,"[""services_and_business"",""professional_service"",""lawyer"",""medical_law""]", -21703,medical_research_and_development,b2b_service,medical_research_and_development,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""medical_research_and_development""]", -9767,medical_school,specialty_school,medical_school,"[""education"",""specialty_school"",""medical_school""]", -350,medical_sciences_schools,college_university,medical_sciences_school,"[""education"",""college_university"",""medical_sciences_school""]", -52652,medical_service_organizations,healthcare_location,medical_service_organization,"[""health_care"",""medical_service_organization""]", -31662,medical_spa,spa,medical_spa,"[""lifestyle_services"",""spa"",""medical_spa""]", -45834,medical_supply,specialty_store,medical_supply_store,"[""shopping"",""specialty_store"",""medical_supply_store""]", -2361,medical_transportation,healthcare_location,medical_transportation,"[""health_care"",""medical_transportation""]", -8539,meditation_center,mental_health,meditation_center,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""meditation_center""]", -28586,mediterranean_restaurant,restaurant,mediterranean_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""mediterranean_restaurant""]", -395,memorial_park,memorial_site,memorial_park,"[""cultural_and_historic"",""memorial_park""]", -23,memory_care,healthcare_location,memory_care,"[""health_care"",""memory_care""]", -90652,mens_clothing_store,clothing_store,mens_clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""mens_clothing_store""]", -4730,merchandising_service,business_advertising_marketing,merchandising_service,"[""services_and_business"",""professional_service"",""merchandising_service""]", -8,metal_detector_services,technical_service,metal_detector_service,"[""services_and_business"",""professional_service"",""metal_detector_service""]", -69921,metal_fabricator,b2b_supplier_distributor,metal_fabricator,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""metal_fabricator""]", -659,metal_materials_and_experts,b2b_service,metal_material_expert,"[""services_and_business"",""professional_service"",""construction_service"",""metal_material_expert""]", -1661,metal_plating_service,b2b_supplier_distributor,metal_plating_service,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""metal_plating_service""]", -53438,metal_supplier,b2b_supplier_distributor,metal_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""metal_supplier""]", -6368,metals,b2b_supplier_distributor,metals,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals""]", -5213,metro_station,transportation_location,metro_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit"",""metro_station""]", -156,mexican_grocery_store,grocery_store,mexican_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""mexican_grocery_store""]", -207817,mexican_restaurant,restaurant,mexican_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""mexican_restaurant""]", -18543,middle_eastern_restaurant,restaurant,middle_eastern_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant""]", -75604,middle_school,middle_school,middle_school,"[""education"",""school"",""middle_school""]", -841,midwife,healthcare_location,midwife,"[""health_care"",""midwife""]", -33,military_museum,museum,military_museum,"[""arts_and_entertainment"",""museum"",""military_museum""]", -486,military_surplus_store,specialty_store,military_surplus_store,"[""shopping"",""specialty_store"",""military_surplus_store""]", -4073,milk_bar,beverage_shop,milk_bar,"[""food_and_drink"",""beverage_shop"",""milk_bar""]", -206,mills,b2b_supplier_distributor,mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill""]", -5177,miniature_golf_course,sport_fitness_facility,miniature_golf_course,"[""sports_and_recreation"",""sports_and_recreation_venue"",""miniature_golf_course""]", -9074,mining,utility_energy_infrastructure,mining,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""mining""]", -1530,mission,religious_organization,mission,"[""cultural_and_historic"",""architectural_landmark"",""mission""]", -2,misting_system_services,home_service,misting_system_service,"[""services_and_business"",""professional_service"",""misting_system_service""]", -429,mobile_clinic,clinic_or_treatment_center,mobile_clinic,"[""health_care"",""dental_hygienist"",""mobile_clinic""]", -21,mobile_dent_repair,vehicle_service,mobile_dent_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""roadside_assistance"",""mobile_dent_repair""]", -6972,mobile_home_dealer,housing,mobile_home_dealer,"[""services_and_business"",""real_estate"",""mobile_home_dealer""]", -11445,mobile_home_park,housing,mobile_home_park,"[""services_and_business"",""real_estate"",""mobile_home_park""]", -71,mobile_home_repair,home_service,mobile_home_repair,"[""services_and_business"",""home_service"",""mobile_home_repair""]", -10901,mobile_phone_accessories,electronics_store,mobile_phone_accessory_store,"[""shopping"",""specialty_store"",""electronics_store"",""mobile_phone_accessory_store""]", -9264,mobile_phone_repair,electronic_repiar_service,mobile_phone_repair,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair"",""mobile_phone_repair""]", -361582,mobile_phone_store,electronics_store,mobile_phone_store,"[""shopping"",""specialty_store"",""electronics_store"",""mobile_phone_store""]", -3674,mobility_equipment_services,technical_service,mobility_equipment_service,"[""services_and_business"",""professional_service"",""mobility_equipment_service""]", -1004,modern_art_museum,art_museum,modern_art_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""modern_art_museum""]", -5,mohel,event_or_party_service,mohel,"[""services_and_business"",""professional_service"",""event_planning"",""mohel""]", -324,molecular_gastronomy_restaurant,restaurant,molecular_gastronomy_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""molecular_gastronomy_restaurant""]", -116923,money_transfer_services,financial_service,money_transfer_service,"[""services_and_business"",""financial_service"",""money_transfer_service""]", -819,mongolian_restaurant,restaurant,mongolian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""mongolian_restaurant""]", -523,montessori_school,place_of_learning,montessori_school,"[""education"",""school"",""montessori_school""]", -49644,monument,monument,monument,"[""cultural_and_historic"",""monument""]", -2955,moroccan_restaurant,restaurant,moroccan_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""north_african_restaurant"",""moroccan_restaurant""]", -60144,mortgage_broker,loan_provider,mortgage_broker,"[""services_and_business"",""real_estate"",""mortgage_broker""]", -22427,mortgage_lender,loan_provider,mortgage_lender,"[""services_and_business"",""financial_service"",""installment_loans"",""mortgage_lender""]", -247,mortuary_services,funeral_service,mortuary_service,"[""services_and_business"",""professional_service"",""funeral_service"",""mortuary_service""]", -126785,mosque,muslim_place_of_worship,muslim_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""muslim_place_of_worship""]", -30741,motel,motel,motel,"[""lodging"",""hotel"",""motel""]", -1468,motor_freight_trucking,shipping_delivery_service,motor_freight_trucking,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""motor_freight_trucking""]", -114999,motorcycle_dealer,motorcycle_dealer,motorcycle_dealer,"[""shopping"",""vehicle_dealer"",""motorcycle_dealer""]", -92,motorcycle_gear,specialty_store,motorcycle_gear,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories"",""motorcycle_gear""]", -1837,motorcycle_manufacturer,manufacturer,motorcycle_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""motorcycle_manufacturer""]", -2,motorcycle_parking,parking,motorcycle_parking,"[""travel_and_transportation"",""automotive_and_ground_transport"",""parking"",""motorcycle_parking""]", -2069,motorcycle_rentals,vehicle_service,motorcycle_rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""vehicle_rental_service"",""motorcycle_rental_service""]", -91690,motorcycle_repair,auto_repair_service,motorcycle_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""motorcycle_repair""]", -5827,motorsport_vehicle_dealer,vehicle_dealer,motorsport_vehicle_dealer,"[""shopping"",""vehicle_dealer"",""motorsport_vehicle_dealer""]", -23,motorsport_vehicle_repair,auto_repair_service,motorsport_vehicle_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""motorsport_vehicle_repair""]", -9301,motorsports_store,specialty_store,motorsports_store,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories"",""motorsports_store""]", -118903,mountain,mountain,mountain,"[""geographic_entities"",""mountain""]", -78,mountain_bike_parks,park,mountain_bike_park,"[""sports_and_recreation"",""park"",""mountain_bike_park""]", -3424,mountain_bike_trails,recreational_trail,mountain_bike_trail,"[""sports_and_recreation"",""trail"",""mountain_bike_trail""]", -225,mountain_huts,accommodation,mountain_hut,"[""lodging"",""mountain_hut""]", -13805,movers,moving_service,mover,"[""services_and_business"",""home_service"",""mover""]", -4,movie_critic,media_service,movie_critic,"[""services_and_business"",""media_and_news"",""media_critic"",""movie_critic""]", -13846,movie_television_studio,media_service,movie_television_studio,"[""services_and_business"",""media_and_news"",""media_news_company"",""movie_television_studio""]", -112,muay_thai_club,martial_arts_club,muay_thai_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""muay_thai_club""]", -88416,museum,museum,museum,"[""arts_and_entertainment"",""museum""]", -35643,music_and_dvd_store,music_store,music_and_dvd_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""music_and_dvd_store""]", -1,music_critic,media_service,music_critic,"[""services_and_business"",""media_and_news"",""media_critic"",""music_critic""]", -60,music_festivals_and_organizations,festival_venue,music_festival_venue,"[""arts_and_entertainment"",""festival_venue"",""music_festival_venue""]", -55617,music_production,music_production_service,music_production,"[""services_and_business"",""media_and_news"",""media_news_company"",""music_production""]", -410,music_production_services,media_service,music_production_service,"[""services_and_business"",""professional_service"",""music_production_service""]", -70228,music_school,specialty_school,music_school,"[""education"",""specialty_school"",""music_school""]", -54590,music_venue,music_venue,music_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue""]", -41,musical_band_orchestras_and_symphonies,music_venue,band_orchestra_symphony,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue"",""band_orchestra_symphony""]", -340,musical_instrument_services,media_service,musical_instrument_service,"[""services_and_business"",""professional_service"",""musical_instrument_service""]", -42478,musical_instrument_store,specialty_store,musical_instrument_store,"[""shopping"",""specialty_store"",""musical_instrument_store""]", -1369,musician,event_or_party_service,musician,"[""services_and_business"",""professional_service"",""event_planning"",""musician""]", -3,mystic,spiritual_advising,spiritual_advising,"[""arts_and_entertainment"",""spiritual_advising""]", -217210,nail_salon,nail_salon,nail_salon,"[""lifestyle_services"",""beauty_service"",""nail_salon""]", -644,nanny_services,family_service,nanny_service,"[""services_and_business"",""professional_service"",""nanny_service""]", -5,national_museum,museum,national_museum,"[""arts_and_entertainment"",""museum"",""national_museum""]", -26253,national_park,national_park,national_park,"[""sports_and_recreation"",""park"",""national_park""]", -7,national_security_services,government_office,national_security_service,"[""community_and_government"",""national_security_service""]", -4249,natural_gas_supplier,natural_gas_utility_service,natural_gas_utility_provider,"[""community_and_government"",""public_utility_provider"",""natural_gas_utility_provider""]", -4174,natural_hot_springs,nature_outdoors,hot_springs,"[""geographic_entities"",""hot_springs""]", -21348,nature_reserve,nature_reserve,nature_reserve,"[""geographic_entities"",""nature_reserve""]", -142255,naturopathic_holistic,alternative_medicine,naturopathic_holistic,"[""health_care"",""doctor"",""naturopathic_holistic""]", -3970,nephrologist,internal_medicine,nephrologist,"[""health_care"",""doctor"",""nephrologist""]", -15212,neurologist,internal_medicine,neurologist,"[""health_care"",""doctor"",""neurologist""]", -1692,neuropathologist,internal_medicine,neuropathologist,"[""health_care"",""doctor"",""neuropathologist""]", -8,neurotologist,internal_medicine,neurotologist,"[""health_care"",""doctor"",""neurotologist""]", -542,newspaper_advertising,business_advertising_marketing,newspaper_advertising,"[""services_and_business"",""business_to_business"",""business_advertising"",""newspaper_advertising""]", -20403,newspaper_and_magazines_store,bookstore,newspaper_and_magazines_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""newspaper_and_magazines_store""]", -201,nicaraguan_restaurant,restaurant,nicaraguan_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""nicaraguan_restaurant""]", -137,nigerian_restaurant,restaurant,nigerian_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""west_african_restaurant"",""nigerian_restaurant""]", -4308,night_market,specialty_store,night_market,"[""shopping"",""market"",""night_market""]", -57684,non_governmental_association,civic_organization_office,non_governmental_association,"[""community_and_government"",""organization"",""non_governmental_association""]", -44196,noodles_restaurant,restaurant,ramen_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""ramen_restaurant""]", -32212,notary_public,notary_public,notary_public,"[""services_and_business"",""professional_service"",""notary_public""]", -11,nudist_clubs,sport_recreation_club,naturist_club,"[""sports_and_recreation"",""sports_club_and_league"",""naturist_club""]", -23118,nurse_practitioner,healthcare_location,nurse_practitioner,"[""health_care"",""nurse_practitioner""]", -113413,nursery_and_gardening,specialty_store,nursery_and_gardening_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""nursery_and_gardening_store""]", -5730,nursing_school,specialty_school,nursing_school,"[""education"",""specialty_school"",""nursing_school""]", -59443,nutritionist,healthcare_location,nutritionist,"[""health_care"",""nutritionist""]", -2654,observatory,entertainment_location,observatory,"[""arts_and_entertainment"",""science_attraction"",""observatory""]", -59435,obstetrician_and_gynecologist,healthcare_location,obstetrician_and_gynecologist,"[""health_care"",""doctor"",""obstetrician_and_gynecologist""]", -1438,occupational_medicine,healthcare_location,occupational_medicine,"[""health_care"",""occupational_medicine""]", -13669,occupational_safety,b2b_service,occupational_safety,"[""services_and_business"",""business_to_business"",""commercial_industrial"",""occupational_safety""]", -13018,occupational_therapy,healthcare_location,occupational_therapy,"[""health_care"",""occupational_therapy""]", -4097,office_cleaning,business_cleaning_service,office_cleaning,"[""services_and_business"",""professional_service"",""cleaning_service"",""office_cleaning""]", -60784,office_equipment,specialty_store,office_equipment,"[""shopping"",""specialty_store"",""office_equipment""]", -10,office_of_vital_records,government_office,office_of_vital_records,"[""community_and_government"",""office_of_vital_records""]", -216,officiating_services,event_or_party_service,officiating_service,"[""services_and_business"",""professional_service"",""event_planning"",""officiating_service""]", -6476,oil_and_gas,oil_or_gas_facility,oil_and_gas,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""oil_and_gas""]", -126,oil_and_gas_exploration_and_development,oil_or_gas_facility,oil_and_gas_exploration_and_development,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""oil_and_gas"",""oil_and_gas_exploration_and_development""]", -1586,oil_and_gas_field_equipment_and_services,oil_or_gas_facility,oil_and_gas_equipment,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""oil_and_gas"",""oil_and_gas_equipment""]", -18703,oil_change_station,vehicle_service,oil_change_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""oil_change_station""]", -1250,oil_refiners,oil_or_gas_facility,oil_refinery,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""oil_and_gas"",""oil_refinery""]", -116,olive_oil,food_or_beverage_store,olive_oil_store,"[""shopping"",""food_and_beverage_store"",""olive_oil_store""]", -14291,oncologist,internal_medicine,oncologist,"[""health_care"",""doctor"",""oncologist""]", -80162,online_shop,specialty_store,online_shop,"[""shopping"",""online_shop""]", -2053,onsen,personal_service,onsen,"[""lifestyle_services"",""public_bath_house"",""onsen""]", -1066,opera_and_ballet,performing_arts_venue,opera_and_ballet,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue"",""opera_and_ballet""]", -11573,ophthalmologist,eye_care,ophthalmologist,"[""health_care"",""doctor"",""ophthalmologist""]", -683,optical_wholesaler,wholesaler,optical_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""optical_wholesaler""]", -81594,optometrist,eye_care,optometrist,"[""health_care"",""optometrist""]", -12745,oral_surgeon,dental_care,oral_surgeon,"[""health_care"",""dentist"",""oral_surgeon""]", -94,orchard,orchard,orchard,"[""services_and_business"",""agricultural_service"",""farm"",""orchard""]", -6,orchards_production,farm,orchards_production,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""crops_production"",""orchards_production""]", -6,organ_and_tissue_donor_service,healthcare_location,organ_and_tissue_donor_service,"[""health_care"",""organ_and_tissue_donor_service""]", -21195,organic_grocery_store,grocery_store,organic_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""organic_grocery_store""]", -27242,organization,civic_organization_office,organization,"[""community_and_government"",""organization""]", -3,oriental_restaurant,restaurant,asian_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant""]", -29412,orthodontist,orthodontic_care,orthodontist,"[""health_care"",""dentist"",""orthodontist""]", -1101,orthopedic_shoe_store,shoe_store,orthopedic_shoe_store,"[""shopping"",""fashion_and_apparel_store"",""shoe_store"",""orthopedic_shoe_store""]", -42535,orthopedist,healthcare_location,orthopedist,"[""health_care"",""doctor"",""orthopedist""]", -1139,orthotics,healthcare_location,orthotics,"[""health_care"",""orthotics""]", -2082,osteopath,healthcare_location,osteopath,"[""health_care"",""medical_center"",""osteopath""]", -19503,osteopathic_physician,healthcare_location,osteopathic_physician,"[""health_care"",""doctor"",""osteopathic_physician""]", -285,otologist,healthcare_location,otologist,"[""health_care"",""doctor"",""otologist""]", -149,outdoor_advertising,business_advertising_marketing,outdoor_advertising,"[""services_and_business"",""business_to_business"",""business_advertising"",""outdoor_advertising""]", -1547,outdoor_furniture_store,specialty_store,outdoor_furniture_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""outdoor_furniture_store""]", -30564,outdoor_gear,sporting_goods_store,outdoor_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""outdoor_store""]", -35,outdoor_movies,movie_theater,outdoor_movie_space,"[""arts_and_entertainment"",""movie_theater"",""outdoor_movie_space""]", -13282,outlet_store,retail_location,outlet_store,"[""shopping"",""outlet_store""]", -4,oxygen_bar,healthcare_location,oxygen_bar,"[""health_care"",""oxygen_bar""]", -103959,package_locker,shipping_delivery_service,package_locker,"[""services_and_business"",""professional_service"",""package_locker""]", -447,packaging_contractors_and_service,b2b_service,packaging_contractors_and_service,"[""services_and_business"",""professional_service"",""packaging_contractors_and_service""]", -2001,packing_services,moving_service,packing_service,"[""services_and_business"",""home_service"",""packing_service""]", -12995,packing_supply,specialty_store,packing_supply_store,"[""shopping"",""specialty_store"",""packing_supply_store""]", -22,paddle_tennis_club,sport_recreation_club,paddle_tennis_club,"[""sports_and_recreation"",""sports_club_and_league"",""paddle_tennis_club""]", -242,paddleboard_rental,water_sport_equipment_rental_service,paddleboard_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""paddleboard_rental""]", -408,paddleboarding_center,sport_fitness_facility,paddleboarding_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""paddleboarding_center""]", -1,paddleboarding_lessons,sport_fitness_facility,paddleboarding_lessons,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""paddleboarding_lessons""]", -3783,pain_management,healthcare_location,pain_management,"[""health_care"",""doctor"",""pain_management""]", -126,paint_and_sip,entertainment_location,paint_and_sip_venue,"[""arts_and_entertainment"",""arts_and_crafts_space"",""paint_and_sip_venue""]", -19860,paint_store,specialty_store,paint_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""paint_store""]", -166,paint_your_own_pottery,entertainment_location,paint_your_own_pottery_venue,"[""arts_and_entertainment"",""arts_and_crafts_space"",""paint_your_own_pottery_venue""]", -7119,paintball,entertainment_location,paintball,"[""sports_and_recreation"",""paintball""]", -54174,painting,painting_service,painting,"[""services_and_business"",""home_service"",""painting""]", -3131,pakistani_restaurant,restaurant,pakistani_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""south_asian_restaurant"",""pakistani_restaurant""]", -4447,palace,historic_site,palace,"[""cultural_and_historic"",""architectural_landmark"",""palace""]", -3259,pan_asian_restaurant,restaurant,pan_asian_restaurant,"[""food_and_drink"",""restaurant"",""international_fusion_restaurant"",""pan_asian_restaurant""]", -290,panamanian_restaurant,restaurant,panamanian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""panamanian_restaurant""]", -12492,pancake_house,restaurant,pancake_house,"[""food_and_drink"",""restaurant"",""breakfast_and_brunch_restaurant"",""pancake_house""]", -851,paper_mill,b2b_supplier_distributor,paper_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""paper_mill""]", -26,paraguayan_restaurant,restaurant,paraguayan_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""paraguayan_restaurant""]", -438,paralegal_services,paralegal_service,paralegal_service,"[""services_and_business"",""professional_service"",""lawyer"",""paralegal_service""]", -17,parasailing_ride_service,sport_fitness_facility,parasailing_ride_service,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""parasailing_ride_service""]", -49,parenting_classes,specialty_school,parenting_class,"[""education"",""specialty_school"",""parenting_class""]", -512618,park,park,park,"[""sports_and_recreation"",""park""]", -124,park_and_rides,park_and_ride,park_and_ride,"[""travel_and_transportation"",""automotive_and_ground_transport"",""parking"",""park_and_ride""]", -119120,parking,parking,parking,"[""travel_and_transportation"",""automotive_and_ground_transport"",""parking""]", -11053,party_and_event_planning,event_or_party_service,party_and_event_planning,"[""services_and_business"",""professional_service"",""event_planning"",""party_and_event_planning""]", -6,party_bike_rental,event_or_party_service,party_bike_rental,"[""services_and_business"",""professional_service"",""event_planning"",""party_bike_rental""]", -242,party_bus_rental,event_or_party_service,party_bus_rental,"[""services_and_business"",""professional_service"",""event_planning"",""party_bus_rental""]", -16,party_character,event_or_party_service,party_character,"[""services_and_business"",""professional_service"",""event_planning"",""party_character""]", -2691,party_equipment_rental,event_or_party_service,party_equipment_rental,"[""services_and_business"",""professional_service"",""event_planning"",""party_equipment_rental""]", -50942,party_supply,specialty_store,party_supply_store,"[""shopping"",""specialty_store"",""party_supply_store""]", -18698,passport_and_visa_services,passport_visa_service,passport_and_visa_service,"[""travel_and_transportation"",""travel"",""passport_and_visa_service""]", -471,pasta_shop,food_or_beverage_store,pasta_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store"",""pasta_store""]", -892,patent_law,legal_service,patent_law,"[""services_and_business"",""professional_service"",""patent_law""]", -77,paternity_tests_and_services,healthcare_location,paternity_tests_and_service,"[""health_care"",""paternity_tests_and_service""]", -4582,pathologist,healthcare_location,pathologist,"[""health_care"",""doctor"",""pathologist""]", -4659,patio_covers,home_service,patio_covers,"[""services_and_business"",""home_service"",""patio_covers""]", -3537,patisserie_cake_shop,food_or_beverage_store,patisserie_cake_shop,"[""shopping"",""food_and_beverage_store"",""patisserie_cake_shop""]", -6923,paving_contractor,building_contractor_service,paving_contractor,"[""services_and_business"",""home_service"",""contractor"",""paving_contractor""]", -30510,pawn_shop,second_hand_shop,pawn_shop,"[""shopping"",""specialty_store"",""pawn_shop""]", -600,payroll_services,human_resource_service,payroll_service,"[""services_and_business"",""professional_service"",""payroll_service""]", -140,pediatric_anesthesiology,pediatrics,pediatric_anesthesiology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_anesthesiology""]", -1704,pediatric_cardiology,pediatrics,pediatric_cardiology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_cardiology""]", -15690,pediatric_dentist,dental_care,pediatric_dentist,"[""health_care"",""dentist"",""pediatric_dentist""]", -396,pediatric_endocrinology,pediatrics,pediatric_endocrinology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_endocrinology""]", -407,pediatric_gastroenterology,pediatrics,pediatric_gastroenterology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_gastroenterology""]", -20,pediatric_infectious_disease,pediatrics,pediatric_infectious_disease,"[""health_care"",""doctor"",""pediatrician"",""pediatric_infectious_disease""]", -139,pediatric_nephrology,pediatrics,pediatric_nephrology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_nephrology""]", -357,pediatric_neurology,pediatrics,pediatric_neurology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_neurology""]", -327,pediatric_oncology,pediatrics,pediatric_oncology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_oncology""]", -448,pediatric_orthopedic_surgery,pediatrics,pediatric_orthopedic_surgery,"[""health_care"",""doctor"",""pediatrician"",""pediatric_orthopedic_surgery""]", -672,pediatric_pulmonology,pediatrics,pediatric_pulmonology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_pulmonology""]", -85,pediatric_radiology,pediatrics,pediatric_radiology,"[""health_care"",""doctor"",""pediatrician"",""pediatric_radiology""]", -310,pediatric_surgery,pediatrics,pediatric_surgery,"[""health_care"",""doctor"",""pediatrician"",""pediatric_surgery""]", -48327,pediatrician,pediatrics,pediatrician,"[""health_care"",""doctor"",""pediatrician""]", -3,pedicab_service,taxi_or_ride_share_service,pedicab_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""pedicab_service""]", -63,pen_store,specialty_store,pen_store,"[""shopping"",""specialty_store"",""pen_store""]", -241,pension,government_office,pension,"[""community_and_government"",""pension""]", -24809,pentecostal_church,christian_place_of_worshop,pentecostal_place_of_worshop,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""christian_place_of_worshop"",""protestant_place_of_worship"",""pentecostal_place_of_worshop""]", -10189,performing_arts,performing_arts_venue,performing_arts_venue,"[""arts_and_entertainment"",""performing_arts_venue""]", -8109,perfume_store,specialty_store,perfume_store,"[""shopping"",""specialty_store"",""perfume_store""]", -3610,periodontist,dental_care,periodontist,"[""health_care"",""dentist"",""periodontist""]", -602,permanent_makeup,personal_service,permanent_makeup,"[""lifestyle_services"",""beauty_service"",""skin_care_and_ makeup"",""permanent_makeup""]", -2480,persian_iranian_restaurant,restaurant,persian_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""persian_restaurant""]", -708,personal_assistant,personal_service,personal_assistant,"[""services_and_business"",""professional_service"",""personal_assistant""]", -5004,personal_care_service,personal_service,personal_care_service,"[""health_care"",""personal_care_service""]", -897,personal_chef,event_or_party_service,personal_chef,"[""services_and_business"",""professional_service"",""event_planning"",""personal_chef""]", -20232,personal_injury_law,attorney_or_law_firm,personal_injury_law,"[""services_and_business"",""professional_service"",""lawyer"",""personal_injury_law""]", -56,personal_shopper,personal_service,personal_shopper,"[""shopping"",""personal_shopper""]", -9457,peruvian_restaurant,restaurant,peruvian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""peruvian_restaurant""]", -42949,pest_control_service,pest_control_service,pest_control_service,"[""services_and_business"",""professional_service"",""pest_control_service""]", -1122,pet_adoption,animal_adoption,pet_adoption,"[""lifestyle_services"",""pets"",""adoption_and_rescue"",""pet_adoption""]", -16697,pet_boarding,animal_boarding,pet_boarding,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_boarding""]", -24398,pet_breeder,animal_breeding,pet_breeder,"[""lifestyle_services"",""pets"",""pet_breeder""]", -245,pet_cemetery_and_crematorium_services,animal_service,pet_cemetery_and_crematorium_service,"[""lifestyle_services"",""pets"",""pet_cemetery_and_crematorium_service""]", -91208,pet_groomer,pet_grooming,pet_groomer,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_groomer""]", -1337,pet_hospice,animal_service,pet_hospice,"[""lifestyle_services"",""pets"",""veterinary_care"",""pet_hospice""]", -15,pet_insurance,animal_service,pet_insurance,"[""lifestyle_services"",""pets"",""pet_insurance""]", -32,pet_photography,animal_service,pet_photography,"[""lifestyle_services"",""pets"",""pet_photography""]", -86846,pet_services,animal_service,pets,"[""lifestyle_services"",""pets""]", -15759,pet_sitting,pet_sitting,pet_sitting,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_sitting""]", -172052,pet_store,pet_store,pet_store,"[""shopping"",""specialty_store"",""pet_store""]", -1120,pet_training,animal_training,pet_training,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_training""]", -25,pet_transportation,animal_service,pet_transportation,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_transportation""]", -24,pet_waste_removal,animal_service,pet_waste_removal,"[""lifestyle_services"",""pets"",""pet_care_service"",""pet_waste_removal""]", -2801,pets,animal_service,pets,"[""lifestyle_services"",""pets""]", -1998,petting_zoo,zoo,petting_zoo,"[""arts_and_entertainment"",""animal_attraction"",""zoo"",""petting_zoo""]", -22510,pharmaceutical_companies,b2b_service,pharmaceutical_companies,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""pharmaceutical_companies""]", -7424,pharmaceutical_products_wholesaler,wholesaler,pharmaceutical_products_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""pharmaceutical_products_wholesaler""]", -546472,pharmacy,pharmacy,pharmacy,"[""shopping"",""specialty_store"",""pharmacy""]", -43,pharmacy_schools,college_university,pharmacy_school,"[""education"",""college_university"",""medical_sciences_school"",""pharmacy_school""]", -36,phlebologist,healthcare_location,phlebologist,"[""health_care"",""doctor"",""phlebologist""]", -4637,photo_booth_rental,event_or_party_service,photo_booth_rental,"[""services_and_business"",""professional_service"",""event_planning"",""photo_booth_rental""]", -16080,photographer,photography_service,photographer,"[""services_and_business"",""professional_service"",""event_planning"",""photographer""]", -57,photography_classes,specialty_school,photography_class,"[""education"",""specialty_school"",""photography_class""]", -44,photography_museum,art_museum,photography_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""photography_museum""]", -23812,photography_store_and_services,specialty_store,camera_and_photography_store,"[""shopping"",""specialty_store"",""electronics_store"",""camera_and_photography_store""]", -206289,physical_therapy,physical_therapy,physical_therapy,"[""health_care"",""physical_therapy""]", -4335,physician_assistant,healthcare_location,physician_assistant,"[""health_care"",""doctor"",""physician_assistant""]", -134,piadina_restaurant,restaurant,piadina_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""mediterranean_restaurant"",""italian_restaurant"",""piadina_restaurant""]", -172,piano_bar,bar,piano_bar,"[""food_and_drink"",""bar"",""piano_bar""]", -878,piano_services,media_service,piano_service,"[""services_and_business"",""professional_service"",""musical_instrument_service"",""piano_service""]", -220,piano_store,specialty_store,piano_store,"[""shopping"",""specialty_store"",""musical_instrument_store"",""piano_store""]", -58,pick_your_own_farm,farm,pick_your_own_farm,"[""shopping"",""food_and_beverage_store"",""pick_your_own_farm""]", -1034,pie_shop,casual_eatery,pie_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""pie_shop""]", -4897,pier,waterway,pier,"[""geographic_entities"",""pier""]", -1964,piercing,tattoo_or_piercing_salon,piercing,"[""lifestyle_services"",""body_modification"",""tattoo_and_piercing"",""piercing""]", -84,pig_farm,farm,pig_farm,"[""services_and_business"",""agricultural_service"",""farm"",""pig_farm""]", -44963,pilates_studio,fitness_studio,pilates_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""pilates_studio""]", -657,pipe_supplier,b2b_supplier_distributor,pipe_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""pipe_supplier""]", -533,pipeline_transportation,shipping_delivery_service,pipeline_transportation,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""pipeline_transportation""]", -8956,pizza_delivery_service,pizzaria,pizza_delivery_service,"[""shopping"",""food_and_beverage_store"",""food_delivery_service"",""pizza_delivery_service""]", -449458,pizza_restaurant,pizzaria,pizza_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""mediterranean_restaurant"",""italian_restaurant"",""pizza_restaurant""]", -1,placenta_encapsulation_service,healthcare_location,health_care,"[""health_care""]", -1544,planetarium,entertainment_location,planetarium,"[""arts_and_entertainment"",""science_attraction"",""planetarium""]", -483,plasterer,home_service,plasterer,"[""services_and_business"",""home_service"",""plasterer""]", -1788,plastic_company,b2b_supplier_distributor,plastics_company,"[""services_and_business"",""business"",""plastics_company""]", -16348,plastic_fabrication_company,b2b_supplier_distributor,plastics_company,"[""services_and_business"",""business"",""plastics_company""]", -210,plastic_injection_molding_workshop,b2b_supplier_distributor,plastic_injection_molding_workshop,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""plastic_injection_molding_workshop""]", -15330,plastic_manufacturer,manufacturer,plastic_manufacturer,"[""services_and_business"",""business_to_business"",""manufacturer"",""plastic_manufacturer""]", -32261,plastic_surgeon,plastic_reconstructive_and_aesthetic_surgery,plastic_surgeon,"[""health_care"",""doctor"",""plastic_surgeon""]", -44558,playground,playground,playground,"[""sports_and_recreation"",""sports_and_recreation_venue"",""playground""]", -6,playground_equipment_supplier,specialty_store,playground_equipment_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""playground_equipment_supplier""]", -1927,plaza,public_plaza,plaza,"[""geographic_entities"",""plaza""]", -104401,plumbing,plumbing_service,plumbing,"[""services_and_business"",""home_service"",""plumbing""]", -229,plus_size_clothing,clothing_store,plus_size_clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""plus_size_clothing_store""]", -40849,podiatrist,healthcare_location,podiatrist,"[""health_care"",""doctor"",""podiatrist""]", -67,podiatry,healthcare_location,podiatry,"[""health_care"",""podiatry""]", -3670,poke_restaurant,restaurant,poke_restaurant,"[""food_and_drink"",""restaurant"",""pacific_rim_restaurant"",""polynesian_restaurant"",""hawaiian_restaurant"",""poke_restaurant""]", -85964,police_department,police_station,police_department,"[""community_and_government"",""police_department""]", -2861,polish_restaurant,restaurant,polish_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""polish_restaurant""]", -25185,political_organization,political_organization,political_organization,"[""community_and_government"",""organization"",""political_organization""]", -15533,political_party_office,political_organization,political_party_office,"[""community_and_government"",""political_party_office""]", -127,polynesian_restaurant,restaurant,polynesian_restaurant,"[""food_and_drink"",""restaurant"",""pacific_rim_restaurant"",""polynesian_restaurant""]", -372,pool_and_billiards,specialty_store,pool_and_billiards,"[""shopping"",""specialty_store"",""pool_and_billiards""]", -2900,pool_and_hot_tub_services,home_service,pool_and_hot_tub_service,"[""services_and_business"",""home_service"",""pool_and_hot_tub_service""]", -16671,pool_billiards,pool_hall,pool_billiards,"[""sports_and_recreation"",""sports_and_recreation_venue"",""pool_billiards""]", -26497,pool_cleaning,home_service,pool_cleaning,"[""services_and_business"",""home_service"",""pool_cleaning""]", -1358,pool_hall,pool_hall,pool_hall,"[""sports_and_recreation"",""sports_and_recreation_venue"",""pool_billiards"",""pool_hall""]", -4,pop_up_restaurant,restaurant,pop_up_restaurant,"[""food_and_drink"",""restaurant"",""pop_up_restaurant""]", -6706,pop_up_shop,retail_location,pop_up_store,"[""shopping"",""specialty_store"",""pop_up_store""]", -115,popcorn_shop,food_or_beverage_store,popcorn_shop,"[""food_and_drink"",""casual_eatery"",""popcorn_shop""]", -9829,portuguese_restaurant,restaurant,portuguese_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""iberian_restaurant"",""portuguese_restaurant""]", -257464,post_office,post_office,post_office,"[""community_and_government"",""post_office""]", -10,potato_restaurant,restaurant,restaurant,"[""food_and_drink"",""restaurant""]", -3957,poultry_farm,farm,poultry_farm,"[""services_and_business"",""agricultural_service"",""farm"",""poultry_farm""]", -106,poultry_farming,farm,poultry_farming,"[""services_and_business"",""business_to_business"",""b2b_agriculture_and_food"",""poultry_farming""]", -50,poutinerie_restaurant,restaurant,poutinerie_restaurant,"[""food_and_drink"",""restaurant"",""north_american_restaurant"",""canadian_restaurant"",""poutinerie_restaurant""]", -5797,powder_coating_service,b2b_service,powder_coating_service,"[""services_and_business"",""professional_service"",""powder_coating_service""]", -841,power_plants_and_power_plant_service,power_plant,power_plants_and_power_plant_service,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""power_plants_and_power_plant_service""]", -9571,prenatal_perinatal_care,healthcare_location,prenatal_perinatal_care,"[""health_care"",""prenatal_perinatal_care""]", -276654,preschool,preschool,preschool,"[""education"",""school"",""preschool""]", -1982,pressure_washing,home_service,pressure_washing,"[""services_and_business"",""home_service"",""pressure_washing""]", -876,pretzels,bakery,pretzel_shop,"[""food_and_drink"",""casual_eatery"",""bakery"",""pretzel_shop""]", -92,preventive_medicine,healthcare_location,preventive_medicine,"[""health_care"",""doctor"",""preventive_medicine""]", -20385,print_media,print_media_service,print_media,"[""services_and_business"",""media_and_news"",""print_media""]", -24087,printing_equipment_and_supply,b2b_supplier_distributor,printing_equipment_and_supply,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""printing_equipment_and_supply""]", -303503,printing_services,printing_service,printing_service,"[""services_and_business"",""professional_service"",""printing_service""]", -8233,private_association,business_location,private_association,"[""community_and_government"",""organization"",""private_association""]", -234,private_equity_firm,financial_service,private_equity_firm,"[""services_and_business"",""private_establishments_and_corporates"",""private_equity_firm""]", -71,private_establishments_and_corporates,corporate_or_business_office,private_establishments_and_corporates,"[""services_and_business"",""private_establishments_and_corporates""]", -7011,private_investigation,legal_service,private_investigation,"[""services_and_business"",""professional_service"",""private_investigation""]", -135,private_jet_charters,air_transport_facility_service,private_jet_charter,"[""travel_and_transportation"",""aircraft_and_air_transport"",""private_jet_charter""]", -53500,private_school,place_of_learning,private_school,"[""education"",""school"",""private_school""]", -1064,private_tutor,tutoring_service,private_tutor,"[""education"",""private_tutor""]", -4067,process_servers,legal_service,process_server,"[""services_and_business"",""professional_service"",""legal_service"",""process_server""]", -1484,proctologist,healthcare_location,proctologist,"[""health_care"",""doctor"",""proctologist""]", -1329,produce_wholesaler,wholesaler,produce_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""produce_wholesaler""]", -39,product_design,engineering_service,product_design,"[""services_and_business"",""professional_service"",""product_design""]", -1339177,professional_services,service_location,professional_service,"[""services_and_business"",""professional_service""]", -1265,professional_sports_league,pro_sport_league,professional_sports_league,"[""sports_and_recreation"",""sports_club_and_league"",""professional_sports_league""]", -4882,professional_sports_team,pro_sport_team,professional_sports_team,"[""sports_and_recreation"",""sports_club_and_league"",""professional_sports_team""]", -1641,promotional_products_and_services,business_advertising_marketing,promotional_products_and_services,"[""services_and_business"",""business_to_business"",""business_advertising"",""promotional_products_and_services""]", -47450,propane_supplier,b2b_supplier_distributor,propane_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""propane_supplier""]", -128811,property_management,property_management_service,property_management,"[""services_and_business"",""real_estate"",""property_management""]", -9,props,specialty_store,props,"[""shopping"",""specialty_store"",""props""]", -6419,prosthetics,healthcare_location,prosthetics,"[""health_care"",""prosthetics""]", -1811,prosthodontist,healthcare_location,prosthodontist,"[""health_care"",""prosthodontist""]", -14575,psychiatrist,psychiatry,psychiatrist,"[""health_care"",""doctor"",""psychiatrist""]", -14284,psychic,psychic_advising,psychic_advising,"[""arts_and_entertainment"",""spiritual_advising"",""psychic_advising""]", -872,psychic_medium,psychic_advising,psychic_advising,"[""arts_and_entertainment"",""spiritual_advising"",""psychic_advising""]", -26,psychoanalyst,mental_health,psychoanalyst,"[""health_care"",""counseling_and_mental_health"",""psychoanalyst""]", -94218,psychologist,psychology,psychologist,"[""health_care"",""counseling_and_mental_health"",""psychologist""]", -4,psychomotor_therapist,healthcare_location,psychomotor_therapist,"[""health_care"",""psychomotor_therapist""]", -39886,psychotherapist,psychotherapy,psychotherapist,"[""health_care"",""counseling_and_mental_health"",""psychotherapist""]", -174914,pub,pub,pub,"[""food_and_drink"",""bar"",""pub""]", -208,public_adjuster,insurance_agency,public_adjuster,"[""services_and_business"",""professional_service"",""public_adjuster""]", -328801,public_and_government_association,civic_organization_office,public_and_government_association,"[""community_and_government"",""organization"",""public_and_government_association""]", -908,public_bath_houses,personal_service,public_bath_house,"[""lifestyle_services"",""public_bath_house""]", -6707,public_health_clinic,clinic_or_treatment_center,public_health_clinic,"[""health_care"",""public_health_clinic""]", -3552,public_market,retail_location,public_market,"[""shopping"",""market"",""public_market""]", -2,public_phones,public_utility_service,public_phone,"[""community_and_government"",""public_utility_provider"",""public_phone""]", -61284,public_plaza,public_plaza,plaza,"[""geographic_entities"",""plaza""]", -11305,public_relations,business_management_service,public_relations,"[""services_and_business"",""professional_service"",""public_relations""]", -194,public_restrooms,public_toilet,public_restroom,"[""community_and_government"",""public_utility_provider"",""public_restroom""]", -39637,public_school,place_of_learning,public_school,"[""education"",""school"",""public_school""]", -216302,public_service_and_government,civic_organization_office,community_and_government,"[""community_and_government""]", -2053,public_toilet,public_toilet,public_toilet,"[""community_and_government"",""public_toilet""]", -1072,public_transportation,transportation_location,buses_and public_transit,"[""travel_and_transportation"",""automotive_and_ground_transport"",""buses_and public_transit""]", -16896,public_utility_company,public_utility_service,public_utility_provider,"[""community_and_government"",""public_utility_provider""]", -556,publicity_service,business_advertising_marketing,publicity_service,"[""services_and_business"",""business_to_business"",""business_advertising"",""publicity_service""]", -927,puerto_rican_restaurant,restaurant,puerto_rican_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""puerto_rican_restaurant""]", -5008,pulmonologist,internal_medicine,pulmonologist,"[""health_care"",""doctor"",""pulmonologist""]", -96,pumpkin_patch,entertainment_location,pumpkin_patch,"[""arts_and_entertainment"",""rural_attraction"",""pumpkin_patch""]", -22,qi_gong_studio,fitness_studio,qi_gong_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""qi_gong_studio""]", -747,quarries,utility_energy_infrastructure,quarry,"[""services_and_business"",""business_to_business"",""b2b_energy_and_mining"",""mining"",""quarry""]", -407,quay,waterway,quay,"[""geographic_entities"",""quay""]", -20301,race_track,race_track,race_track,"[""sports_and_recreation"",""sports_and_recreation_venue"",""race_track""]", -31,racing_experience,sport_fitness_facility,racing_experience,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""racing_experience""]", -192,racquetball_court,sport_court,racquetball_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""racquetball_court""]", -878,radio_and_television_commercials,business_advertising_marketing,radio_and_television_commercials,"[""services_and_business"",""business_to_business"",""business_advertising"",""radio_and_television_commercials""]", -18555,radio_station,radio_station,radio_station,"[""services_and_business"",""media_and_news"",""media_news_company"",""radio_station""]", -11115,radiologist,healthcare_location,radiologist,"[""health_care"",""doctor"",""radiologist""]", -703,rafting_kayaking_area,recreational_location,rafting_kayaking_area,"[""sports_and_recreation"",""water_sport"",""rafting_kayaking_area""]", -4930,railroad_freight,shipping_delivery_service,railroad_freight,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""railroad_freight""]", -177,railway_service,transportation_location,railway_service,"[""community_and_government"",""railway_service""]", -15,railway_ticket_agent,travel_ticket_office,railway_ticket_agent,"[""travel_and_transportation"",""automotive_and_ground_transport"",""trains_and_rail_transport"",""railway_ticket_agent""]", -592,ranch,ranch,ranch,"[""services_and_business"",""agricultural_service"",""farm"",""ranch""]", -706174,real_estate,real_estate_service,real_estate,"[""services_and_business"",""real_estate""]", -631680,real_estate_agent,real_estate_agency,real_estate_agent,"[""services_and_business"",""real_estate"",""real_estate_agent""]", -8555,real_estate_investment,financial_service,real_estate_investment,"[""services_and_business"",""real_estate"",""real_estate_investment""]", -2741,real_estate_law,attorney_or_law_firm,real_estate_law,"[""services_and_business"",""professional_service"",""lawyer"",""real_estate_law""]", -131,real_estate_photography,real_estate_service,real_estate_photography,"[""services_and_business"",""real_estate"",""real_estate_service"",""real_estate_photography""]", -45560,real_estate_service,real_estate_service,real_estate_service,"[""services_and_business"",""real_estate"",""real_estate_service""]", -5822,record_label,media_service,record_label,"[""services_and_business"",""professional_service"",""record_label""]", -2666,recording_and_rehearsal_studio,media_service,recording_and_rehearsal_studio,"[""services_and_business"",""professional_service"",""recording_and_rehearsal_studio""]", -4383,recreation_vehicle_repair,auto_repair_service,recreation_vehicle_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""recreation_vehicle_repair""]", -14279,recreational_vehicle_dealer,recreational_vehicle_dealer,recreational_vehicle_dealer,"[""shopping"",""vehicle_dealer"",""recreational_vehicle_dealer""]", -45,recreational_vehicle_parts_and_accessories,specialty_store,recreational_vehicle_parts_and_accessories,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_parts_and_accessories"",""recreational_vehicle_parts_and_accessories""]", -29071,recycling_center,recycling_center,recycling_center,"[""services_and_business"",""professional_service"",""recycling_center""]", -423,refinishing_services,home_service,refinishing_service,"[""services_and_business"",""home_service"",""refinishing_service""]", -6616,reflexology,alternative_medicine,reflexology,"[""health_care"",""reflexology""]", -146,registry_office,government_office,registry_office,"[""community_and_government"",""registry_office""]", -4567,rehabilitation_center,clinic_or_treatment_center,rehabilitation_center,"[""health_care"",""rehabilitation_center""]", -352,reiki,alternative_medicine,reiki,"[""health_care"",""reiki""]", -8240,religious_destination,religious_organization,religious_organization,"[""cultural_and_historic"",""religious_organization""]", -392,religious_items,specialty_store,religious_items_store,"[""shopping"",""specialty_store"",""religious_items_store""]", -404341,religious_organization,religious_organization,religious_organization,"[""cultural_and_historic"",""religious_organization""]", -22553,religious_school,place_of_learning,religious_school,"[""education"",""school"",""religious_school""]", -72142,rental_kiosks,specialty_store,rental_kiosk,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""rental_kiosk""]", -51727,rental_service,vehicle_service,rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service""]", -18327,rental_services,property_management_service,rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service""]", -5602,reptile_shop,pet_store,reptile_shop,"[""shopping"",""specialty_store"",""pet_store"",""reptile_shop""]", -1054,research_institute,b2b_service,research_institute,"[""services_and_business"",""business_to_business"",""b2b_science_and_technology"",""research_institute""]", -122956,resort,resort,resort,"[""lodging"",""resort""]", -524,rest_areas,rest_stop,rest_stop,"[""travel_and_transportation"",""road_structures_and_service"",""rest_stop""]", -163,rest_stop,rest_stop,rest_stop,"[""travel_and_transportation"",""road_structures_and_service"",""rest_stop""]", -2011352,restaurant,restaurant,restaurant,"[""food_and_drink"",""restaurant""]", -13922,restaurant_equipment_and_supply,b2b_supplier_distributor,restaurant_equipment_and_supply,"[""services_and_business"",""business_to_business"",""business_equipment_and_supply"",""restaurant_equipment_and_supply""]", -12,restaurant_management,b2b_service,restaurant_management,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""restaurant_management""]", -2623,restaurant_wholesale,wholesaler,restaurant_wholesale,"[""services_and_business"",""business_to_business"",""wholesaler"",""restaurant_wholesale""]", -234826,retail,retail_location,shopping,"[""shopping""]", -39,retaining_wall_supplier,b2b_supplier_distributor,retaining_wall_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""retaining_wall_supplier""]", -154,retina_specialist,eye_care,retina_specialist,"[""health_care"",""doctor"",""ophthalmologist"",""retina_specialist""]", -151939,retirement_home,social_or_community_service,retirement_home,"[""community_and_government"",""retirement_home""]", -3697,rheumatologist,internal_medicine,rheumatologist,"[""health_care"",""doctor"",""rheumatologist""]", -75,rice_mill,b2b_supplier_distributor,rice_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""rice_mill""]", -32,rice_shop,grocery_store,rice_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store"",""rice_store""]", -458,ride_sharing,ride_share_service,ride_sharing,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""ride_sharing""]", -132650,river,nature_outdoors,river,"[""geographic_entities"",""river""]", -960,road_contractor,b2b_service,road_contractor,"[""services_and_business"",""professional_service"",""construction_service"",""road_contractor""]", -102,road_structures_and_services,transportation_location,road_structures_and_service,"[""travel_and_transportation"",""road_structures_and_service""]", -1197,roadside_assistance,vehicle_service,roadside_assistance,"[""travel_and_transportation"",""automotive_and_ground_transport"",""roadside_assistance""]", -633,rock_climbing_gym,sport_fitness_facility,rock_climbing_gym,"[""sports_and_recreation"",""sports_and_recreation_venue"",""rock_climbing_gym""]", -8,rock_climbing_instructor,sport_fitness_facility,rock_climbing_instructor,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""rock_climbing_instructor""]", -6712,rock_climbing_spot,sport_fitness_facility,rock_climbing_spot,"[""sports_and_recreation"",""adventure_sport"",""rock_climbing_spot""]", -1942,rodeo,entertainment_location,rodeo,"[""arts_and_entertainment"",""rural_attraction"",""rodeo""]", -2038,roller_skating_rink,skating_rink,roller_skating_rink,"[""sports_and_recreation"",""sports_and_recreation_venue"",""skating_rink"",""roller_skating_rink""]", -572,romanian_restaurant,restaurant,romanian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""romanian_restaurant""]", -88282,roofing,roofing_service,roofing,"[""services_and_business"",""home_service"",""ceiling_and_roofing_repair_and_service"",""roofing""]", -3,rotisserie_chicken_restaurant,chicken_restaurant,rotisserie_chicken_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""rotisserie_chicken_restaurant""]", -7,rowing_club,sport_recreation_club,rowing_club,"[""sports_and_recreation"",""sports_club_and_league"",""rowing_club""]", -1452,rug_store,specialty_store,rug_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""rug_store""]", -933,rugby_pitch,sport_field,rugby_pitch,"[""sports_and_recreation"",""sports_and_recreation_venue"",""rugby_pitch""]", -292,rugby_stadium,sport_stadium,rugby_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""rugby_stadium""]", -13,ruin,historic_site,ruin,"[""cultural_and_historic"",""architectural_landmark"",""ruin""]", -8,russian_grocery_store,grocery_store,russian_grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store"",""russian_grocery_store""]", -1413,russian_restaurant,restaurant,russian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""russian_restaurant""]", -1,rv_and_boat_storage_facility,storage_facility,rv_and_boat_storage_facility,"[""services_and_business"",""professional_service"",""storage_facility"",""rv_and_boat_storage_facility""]", -24810,rv_park,rv_park,rv_park,"[""lodging"",""rv_park""]", -3826,rv_rentals,vehicle_service,rv_rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""vehicle_rental_service"",""rv_rental_service""]", -651,rv_storage_facility,storage_facility,rv_storage_facility,"[""services_and_business"",""professional_service"",""storage_facility"",""rv_storage_facility""]", -3,ryokan,inn,ryokan,"[""lodging"",""ryokan""]", -364,safe_store,specialty_store,safe_store,"[""shopping"",""specialty_store"",""safe_store""]", -6248,safety_equipment,specialty_store,safety_equipment_store,"[""shopping"",""specialty_store"",""safety_equipment_store""]", -144,sailing_area,recreational_location,sailing_area,"[""sports_and_recreation"",""water_sport"",""sailing_area""]", -230,sailing_club,sport_recreation_club,sailing_club,"[""sports_and_recreation"",""sports_club_and_league"",""sailing_club""]", -17867,sake_bar,bar,sake_bar,"[""food_and_drink"",""bar"",""sake_bar""]", -12696,salad_bar,restaurant,salad_bar,"[""food_and_drink"",""restaurant"",""salad_bar""]", -827,salsa_club,dance_club,salsa_club,"[""arts_and_entertainment"",""nightlife_venue"",""dance_club"",""salsa_club""]", -2030,salvadoran_restaurant,restaurant,salvadoran_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""central_american_restaurant"",""salvadoran_restaurant""]", -630,sand_and_gravel_supplier,b2b_supplier_distributor,sand_and_gravel_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""sand_and_gravel_supplier""]", -9,sand_dune,nature_outdoors,sand_dune,"[""geographic_entities"",""sand_dune""]", -2939,sandblasting_service,b2b_service,sandblasting_service,"[""services_and_business"",""professional_service"",""sandblasting_service""]", -94374,sandwich_shop,sandwich_shop,sandwich_shop,"[""food_and_drink"",""casual_eatery"",""sandwich_shop""]", -34,saree_shop,clothing_store,saree_shop,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""traditional_clothing"",""saree_shop""]", -764,sauna,personal_service,sauna,"[""health_care"",""sauna""]", -1030,saw_mill,b2b_supplier_distributor,sawmill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""sawmill""]", -195,scale_supplier,b2b_supplier_distributor,scale_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""scale_supplier""]", -2068,scandinavian_restaurant,restaurant,scandinavian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""scandinavian_restaurant""]", -1,scavenger_hunts_provider,entertainment_location,scavenger_hunt,"[""arts_and_entertainment"",""gaming_venue"",""scavenger_hunt""]", -17,schnitzel_restaurant,restaurant,schnitzel_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""schnitzel_restaurant""]", -715677,school,place_of_learning,school,"[""education"",""school""]", -168,school_district_offices,civic_organization_office,school_district_office,"[""education"",""school_district_office""]", -166,school_sports_league,school_sport_league,school_sports_league,"[""sports_and_recreation"",""sports_club_and_league"",""school_sports_league""]", -1262,school_sports_team,school_sport_team,school_sports_team,"[""sports_and_recreation"",""sports_club_and_league"",""school_sports_team""]", -3075,science_museum,science_museum,science_museum,"[""arts_and_entertainment"",""museum"",""science_museum""]", -49,science_schools,college_university,science_school,"[""education"",""college_university"",""science_school""]", -156,scientific_laboratories,b2b_service,scientific_lab,"[""services_and_business"",""business_to_business"",""b2b_science_and_technology"",""scientific_lab""]", -261,scooter_dealers,vehicle_dealer,scooter_dealer,"[""shopping"",""vehicle_dealer"",""scooter_dealer""]", -117,scooter_rental,scooter_rental_service,scooter_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""scooter_rental""]", -3,scooter_tours,tour_operator,scooter_tour,"[""travel_and_transportation"",""travel"",""tour"",""scooter_tour""]", -200,scottish_restaurant,restaurant,scottish_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""western_european_restaurant"",""scottish_restaurant""]", -9705,scout_hall,social_or_community_service,scout_hall,"[""community_and_government"",""scout_hall""]", -3460,scrap_metals,b2b_supplier_distributor,scrap_metals,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""scrap_metals""]", -43572,screen_printing_t_shirt_printing,printing_service,screen_printing_t_shirt_printing,"[""services_and_business"",""professional_service"",""screen_printing_t_shirt_printing""]", -11336,scuba_diving_center,sport_fitness_facility,scuba_diving_center,"[""sports_and_recreation"",""sports_and_recreation_venue"",""diving_center"",""scuba_diving_center""]", -1444,scuba_diving_instruction,sport_fitness_facility,scuba_diving_instruction,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""diving_instruction"",""scuba_diving_instruction""]", -3328,sculpture_statue,statue_sculpture,sculpture_statue,"[""arts_and_entertainment"",""arts_and_crafts_space"",""sculpture_statue""]", -2371,seafood_market,food_or_beverage_store,seafood_market,"[""shopping"",""food_and_beverage_store"",""seafood_market""]", -148036,seafood_restaurant,restaurant,seafood_restaurant,"[""food_and_drink"",""restaurant"",""seafood_restaurant""]", -999,seafood_wholesaler,wholesaler,seafood_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""seafood_wholesaler""]", -241,seaplane_bases,airport,seaplane_base,"[""travel_and_transportation"",""aircraft_and_air_transport"",""airport"",""seaplane_base""]", -1021,secretarial_services,business_management_service,secretarial_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""business_management_service"",""secretarial_service""]", -6567,security_services,security_service,security_service,"[""services_and_business"",""professional_service"",""security_service""]", -6171,security_systems,home_service,security_systems,"[""services_and_business"",""home_service"",""security_systems""]", -801,self_catering_accommodation,accommodation,self_catering_accommodation,"[""lodging"",""self_catering_accommodation""]", -188,self_defense_classes,sport_fitness_facility,self_defense_class,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""self_defense_class""]", -68454,self_storage_facility,self_storage_facility,self_storage_facility,"[""services_and_business"",""professional_service"",""storage_facility"",""self_storage_facility""]", -59,senegalese_restaurant,restaurant,senegalese_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""west_african_restaurant"",""senegalese_restaurant""]", -14706,senior_citizen_services,senior_citizen_service,senior_citizen_service,"[""community_and_government"",""organization"",""social_service_organization"",""senior_citizen_service""]", -7550,septic_services,home_service,septic_service,"[""services_and_business"",""professional_service"",""septic_service""]", -6,serbo_croatian_restaurant,restaurant,serbo_croatian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""serbo_croatian_restaurant""]", -8982,service_apartments,accommodation,service_apartment,"[""lodging"",""service_apartment""]", -4202,session_photography,photography_service,session_photography,"[""services_and_business"",""professional_service"",""event_planning"",""session_photography""]", -47918,sewing_and_alterations,clothing_alteration_service,sewing_and_alterations,"[""services_and_business"",""professional_service"",""sewing_and_alterations""]", -1810,sex_therapist,mental_health,sex_therapist,"[""health_care"",""counseling_and_mental_health"",""sex_therapist""]", -2196,shades_and_blinds,home_service,shades_and_blinds,"[""services_and_business"",""home_service"",""shades_and_blinds""]", -342,shared_office_space,real_estate_service,shared_office_space,"[""services_and_business"",""real_estate"",""shared_office_space""]", -3460,shaved_ice_shop,casual_eatery,shaved_ice_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""shaved_ice_shop""]", -1,shaved_snow_shop,casual_eatery,shaved_ice_shop,"[""food_and_drink"",""casual_eatery"",""dessert_shop"",""shaved_ice_shop""]", -261,sheet_metal,b2b_supplier_distributor,sheet_metal,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""sheet_metal""]", -14,shinto_shrines,religious_organization,shinto_shrine,"[""cultural_and_historic"",""religious_organization"",""shrine"",""shinto_shrine""]", -105302,shipping_center,shipping_center,shipping_center,"[""services_and_business"",""professional_service"",""shipping_center""]", -1254,shipping_collection_services,post_office,shipping_collection_service,"[""community_and_government"",""post_office"",""shipping_collection_service""]", -37,shoe_factory,b2b_supplier_distributor,shoe_factory,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""shoe_factory""]", -15348,shoe_repair,personal_service,shoe_repair,"[""services_and_business"",""professional_service"",""shoe_repair""]", -11,shoe_shining_service,personal_service,shoe_shining_service,"[""services_and_business"",""professional_service"",""shoe_shining_service""]", -269768,shoe_store,shoe_store,shoe_store,"[""shopping"",""fashion_and_apparel_store"",""shoe_store""]", -16090,shooting_range,shooting_range,shooting_range,"[""sports_and_recreation"",""sports_and_recreation_venue"",""shooting_range""]", -906252,shopping,retail_location,shopping,"[""shopping""]", -201486,shopping_center,shopping_mall,shopping_center,"[""shopping"",""shopping_center""]", -3,shopping_passage,retail_location,shopping_passage,"[""shopping"",""shopping_passage""]", -7740,shredding_services,media_service,shredding_service,"[""services_and_business"",""professional_service"",""shredding_service""]", -181,shutters,home_service,shutters,"[""services_and_business"",""home_service"",""shutters""]", -723,siding,home_service,siding,"[""services_and_business"",""home_service"",""siding""]", -10556,sightseeing_tour_agency,tour_operator,sightseeing_tour_agency,"[""travel_and_transportation"",""travel"",""tour"",""sightseeing_tour_agency""]", -36644,sign_making,sign_making_service,sign_making,"[""services_and_business"",""professional_service"",""sign_making""]", -4651,sikh_temple,place_of_worship,sikh_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""sikh_place_of_worship""]", -2,silent_disco,event_or_party_service,silent_disco,"[""services_and_business"",""professional_service"",""event_planning"",""silent_disco""]", -490,singaporean_restaurant,restaurant,singaporean_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""singaporean_restaurant""]", -17776,skate_park,skate_park,skate_park,"[""sports_and_recreation"",""sports_and_recreation_venue"",""skate_park""]", -4332,skate_shop,sporting_goods_store,skate_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""skate_store""]", -1187,skating_rink,skating_rink,skating_rink,"[""sports_and_recreation"",""sports_and_recreation_venue"",""skating_rink""]", -2565,ski_and_snowboard_school,specialty_school,ski_and_snowboard_school,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""ski_and_snowboard_school""]", -5125,ski_and_snowboard_shop,sporting_goods_store,ski_and_snowboard_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""ski_and_snowboard_store""]", -22,ski_area,sport_fitness_facility,ski_area,"[""sports_and_recreation"",""snow_sport"",""ski_area""]", -16274,ski_resort,resort,ski_resort,"[""lodging"",""ski_resort""]", -4166,skilled_nursing,healthcare_location,skilled_nursing,"[""health_care"",""skilled_nursing""]", -58244,skin_care,personal_service,skin_care_and_makeup,"[""lifestyle_services"",""beauty_service"",""skin_care_and_makeup""]", -1765,sky_diving,sport_fitness_facility,sky_diving,"[""sports_and_recreation"",""sports_and_recreation_venue"",""sky_diving""]", -130,skylight_installation,home_service,skylight_installation,"[""services_and_business"",""home_service"",""windows_installation"",""skylight_installation""]", -2,skyline,scenic_viewpoint,skyline,"[""geographic_entities"",""skyline""]", -4,skyscraper,industrial_commercial_infrastructure,skyscraper,"[""geographic_entities"",""skyscraper""]", -54,sledding_rental,winter_sport_equipment_rental_service,sledding_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""sledding_rental""]", -1214,sleep_specialist,healthcare_location,sleep_specialist,"[""health_care"",""sleep_specialist""]", -92,slovakian_restaurant,restaurant,slovakian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""slovakian_restaurant""]", -94,smokehouse,food_or_beverage_store,smokehouse,"[""shopping"",""food_and_beverage_store"",""smokehouse""]", -68689,smoothie_juice_bar,juice_bar,smoothie_juice_bar,"[""food_and_drink"",""beverage_shop"",""smoothie_juice_bar""]", -237,snorkeling,recreational_location,snorkeling,"[""sports_and_recreation"",""water_sport"",""snorkeling""]", -3,snorkeling_equipment_rental,water_sport_equipment_rental_service,snorkeling_equipment_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""snorkeling_equipment_rental""]", -260,snow_removal_service,home_service,snow_removal_service,"[""services_and_business"",""professional_service"",""snow_removal_service""]", -3,snowboarding_center,sport_fitness_facility,snowboarding_center,"[""sports_and_recreation"",""snow_sport"",""snowboarding_center""]", -2,snuggle_service,personal_service,snuggle_service,"[""services_and_business"",""professional_service"",""snuggle_service""]", -904,soccer_club,sport_recreation_club,soccer_club,"[""sports_and_recreation"",""sports_club_and_league"",""soccer_club""]", -46456,soccer_field,sport_field,soccer_field,"[""sports_and_recreation"",""sports_and_recreation_venue"",""soccer_field""]", -6625,soccer_stadium,sport_stadium,soccer_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""soccer_stadium""]", -12005,social_and_human_services,social_or_community_service,social_and_human_service,"[""community_and_government"",""organization"",""social_service_organization"",""social_and_human_service""]", -10140,social_club,social_club,social_club,"[""arts_and_entertainment"",""social_club""]", -8421,social_media_agency,media_service,social_media_agency,"[""services_and_business"",""professional_service"",""social_media_agency""]", -1598,social_media_company,media_service,social_media_company,"[""services_and_business"",""media_and_news"",""media_news_company"",""social_media_company""]", -608,social_security_law,attorney_or_law_firm,social_security_law,"[""services_and_business"",""professional_service"",""lawyer"",""social_security_law""]", -620,social_security_services,government_office,social_security_service,"[""community_and_government"",""government_office"",""social_security_service""]", -173614,social_service_organizations,social_or_community_service,social_service_organization,"[""community_and_government"",""organization"",""social_service_organization""]", -615,social_welfare_center,social_or_community_service,social_welfare_center,"[""community_and_government"",""organization"",""social_service_organization"",""social_welfare_center""]", -153680,software_development,software_development,software_development,"[""services_and_business"",""professional_service"",""software_development""]", -24089,solar_installation,home_service,solar_installation,"[""services_and_business"",""home_service"",""solar_installation""]", -13,solar_panel_cleaning,home_service,solar_panel_cleaning,"[""services_and_business"",""home_service"",""solar_panel_cleaning""]", -2,sommelier_service,event_or_party_service,sommelier_service,"[""services_and_business"",""professional_service"",""event_planning"",""sommelier_service""]", -1901,soul_food,restaurant,soul_food,"[""food_and_drink"",""restaurant"",""soul_food""]", -13246,soup_restaurant,restaurant,soup_restaurant,"[""food_and_drink"",""restaurant"",""soup_restaurant""]", -219,south_african_restaurant,restaurant,south_african_restaurant,"[""food_and_drink"",""restaurant"",""african_restaurant"",""southern_african_restaurant"",""south_african_restaurant""]", -6158,southern_restaurant,restaurant,southern_american_restaurant,"[""food_and_drink"",""restaurant"",""north_american_restaurant"",""american_restaurant"",""southern_american_restaurant""]", -13142,souvenir_shop,gift_shop,souvenir_store,"[""shopping"",""specialty_store"",""souvenir_store""]", -25029,spanish_restaurant,restaurant,spanish_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""iberian_restaurant"",""spanish_restaurant""]", -241193,spas,spa,spa,"[""lifestyle_services"",""spa""]", -2344,speakeasy,bar,speakeasy,"[""food_and_drink"",""bar"",""speakeasy""]", -1376,specialty_foods,food_or_beverage_store,specialty_foods_store,"[""shopping"",""food_and_beverage_store"",""specialty_foods_store""]", -21052,specialty_grocery_store,grocery_store,grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store""]", -38170,specialty_school,specialty_school,specialty_school,"[""education"",""specialty_school""]", -15665,speech_therapist,healthcare_location,speech_therapist,"[""health_care"",""speech_therapist""]", -41,speech_training,specialty_school,speech_training,"[""education"",""specialty_school"",""speech_training""]", -12,sperm_clinic,clinic_or_treatment_center,sperm_clinic,"[""health_care"",""sperm_clinic""]", -36,spices_wholesaler,wholesaler,spices_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""spices_wholesaler""]", -44,spine_surgeon,surgery,spine_surgeon,"[""health_care"",""doctor"",""spine_surgeon""]", -183,spiritual_shop,specialty_store,spiritual_items_store,"[""shopping"",""specialty_store"",""spiritual_items_store""]", -285,sport_equipment_rentals,water_sport_equipment_rental_service,sport_equipment_rental,"[""sports_and_recreation"",""sports_and_recreation_rental_and_service"",""sport_equipment_rental""]", -143954,sporting_goods,sporting_goods_store,sporting_goods_store,"[""shopping"",""specialty_store"",""sporting_goods_store""]", -15510,sports_and_fitness_instruction,sport_fitness_facility,sports_and_fitness_instruction,"[""sports_and_recreation"",""sports_and_fitness_instruction""]", -162155,sports_and_recreation_venue,sport_fitness_facility,sports_and_recreation_venue,"[""sports_and_recreation"",""sports_and_recreation_venue""]", -24854,sports_bar,bar,sports_bar,"[""food_and_drink"",""bar"",""sports_bar""]", -236727,sports_club_and_league,sport_recreation_club,sports_club_and_league,"[""sports_and_recreation"",""sports_club_and_league""]", -4921,sports_medicine,sports_medicine,sports_medicine,"[""health_care"",""doctor"",""sports_medicine""]", -134,sports_museum,museum,sports_museum,"[""arts_and_entertainment"",""museum"",""sports_museum""]", -187,sports_psychologist,mental_health,sports_psychologist,"[""health_care"",""counseling_and_mental_health"",""sports_psychologist""]", -654,sports_school,specialty_school,sports_school,"[""education"",""specialty_school"",""sports_school""]", -31826,sports_wear,sporting_goods_store,sportswear_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""sportswear_store""]", -753,spray_tanning,tanning_salon,spray_tanning,"[""lifestyle_services"",""beauty_service"",""tanning_salon"",""spray_tanning""]", -85,spring_supplier,b2b_supplier_distributor,spring_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""spring_supplier""]", -975,squash_court,sport_court,squash_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""squash_court""]", -1025,sri_lankan_restaurant,restaurant,sri_lankan_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""south_asian_restaurant"",""sri_lankan_restaurant""]", -99634,stadium_arena,sport_stadium,stadium_arena,"[""arts_and_entertainment"",""stadium_arena""]", -322,state_museum,museum,state_museum,"[""arts_and_entertainment"",""museum"",""state_museum""]", -1466,state_park,park,state_park,"[""sports_and_recreation"",""park"",""state_park""]", -61811,steakhouse,restaurant,steakhouse,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""steakhouse""]", -1837,steel_fabricators,b2b_supplier_distributor,steel_fabricator,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""metals"",""steel_fabricator""]", -7389,stock_and_bond_brokers,financial_service,stock_and_bond_broker,"[""services_and_business"",""financial_service"",""broker"",""stock_and_bond_broker""]", -25,stocking,clothing_store,clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store""]", -1125,stone_and_masonry,building_construction_service,stone_and_masonry,"[""services_and_business"",""professional_service"",""construction_service"",""stone_and_masonry""]", -955,stone_supplier,b2b_supplier_distributor,stone_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""stone_supplier""]", -98819,storage_facility,storage_facility,storage_facility,"[""services_and_business"",""professional_service"",""storage_facility""]", -121,street_art,street_art,street_art,"[""arts_and_entertainment"",""arts_and_crafts_space"",""street_art""]", -23,street_vendor,casual_eatery,street_vendor,"[""food_and_drink"",""casual_eatery"",""street_vendor""]", -25,stress_management_services,mental_health,stress_management_service,"[""health_care"",""counseling_and_mental_health"",""stress_management_service""]", -1173,strip_club,entertainment_location,strip_club,"[""arts_and_entertainment"",""nightlife_venue"",""adult_entertainment_venue"",""strip_club""]", -7,striptease_dancer,entertainment_location,strip_club,"[""arts_and_entertainment"",""nightlife_venue"",""adult_entertainment_venue"",""strip_club""]", -5114,structural_engineer,home_service,structural_engineer,"[""services_and_business"",""home_service"",""structural_engineer""]", -178721,structure_and_geography,nature_outdoors,geographic_entities,"[""geographic_entities""]", -394,stucco_services,home_service,stucco_service,"[""services_and_business"",""home_service"",""stucco_service""]", -598,student_union,educational_service,student_union,"[""education"",""student_union""]", -76,studio_taping,entertainment_location,studio_taping,"[""services_and_business"",""studio_taping""]", -4,sugar_shack,casual_eatery,sugar_shack,"[""food_and_drink"",""casual_eatery"",""sugar_shack""]", -674,sugaring,personal_service,sugaring,"[""lifestyle_services"",""beauty_service"",""hair_removal"",""sugaring""]", -1,suicide_prevention_services,mental_health,suicide_prevention_service,"[""health_care"",""counseling_and_mental_health"",""suicide_prevention_service""]", -6900,sunglasses_store,eyewear_store,sunglasses_store,"[""shopping"",""fashion_and_apparel_store"",""eyewear_store"",""sunglasses_store""]", -466038,supermarket,grocery_store,grocery_store,"[""shopping"",""food_and_beverage_store"",""grocery_store""]", -85,supernatural_reading,spiritual_advising,spiritual_advising,"[""arts_and_entertainment"",""spiritual_advising""]", -15355,superstore,retail_location,superstore,"[""shopping"",""superstore""]", -1,surf_lifesaving_club,sport_recreation_club,surf_lifesaving_club,"[""sports_and_recreation"",""sports_club_and_league"",""surf_lifesaving_club""]", -6010,surf_shop,sporting_goods_store,surf_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""surf_store""]", -73,surfboard_rental,water_sport_equipment_rental_service,surfboard_rental,"[""sports_and_recreation"",""water_sport"",""surfing"",""surfboard_rental""]", -4607,surfing,recreational_location,surfing,"[""sports_and_recreation"",""water_sport"",""surfing""]", -193,surfing_school,specialty_school,surfing_school,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""surfing_school""]", -30428,surgeon,surgery,surgeon,"[""health_care"",""doctor"",""surgeon""]", -23882,surgical_appliances_and_supplies,b2b_service,surgical_appliances_and_supplies,"[""services_and_business"",""business_to_business"",""b2b_medical_support_service"",""surgical_appliances_and_supplies""]", -8045,surgical_center,surgical_center,surgical_center,"[""health_care"",""surgical_center""]", -107591,sushi_restaurant,restaurant,sushi_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""japanese_restaurant"",""sushi_restaurant""]", -10673,swimming_instructor,swimming_pool,swimming_instructor,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""swimming_instructor""]", -70593,swimming_pool,swimming_pool,swimming_pool,"[""sports_and_recreation"",""sports_and_recreation_venue"",""swimming_pool""]", -5465,swimwear_store,sporting_goods_store,swimwear_store,"[""shopping"",""specialty_store"",""sporting_goods_store"",""swimwear_store""]", -2367,swiss_restaurant,restaurant,swiss_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""central_european_restaurant"",""swiss_restaurant""]", -8325,synagogue,jewish_place_of_worship,jewish_place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship"",""jewish_place_of_worship""]", -1056,syrian_restaurant,restaurant,syrian_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""syrian_restaurant""]", -6296,t_shirt_store,clothing_store,t_shirt_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""t_shirt_store""]", -165,tabac,bar,bar_tabac,"[""food_and_drink"",""bar"",""bar_tabac""]", -473,table_tennis_club,sport_recreation_club,table_tennis_club,"[""sports_and_recreation"",""sports_club_and_league"",""table_tennis_club""]", -104,tabletop_games,specialty_store,tabletop_games_store,"[""shopping"",""specialty_store"",""tabletop_games_store""]", -244,tableware_supplier,specialty_store,tableware_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""tableware_supplier""]", -34023,taco_restaurant,restaurant,taco_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""taco_restaurant""]", -444,taekwondo_club,martial_arts_club,taekwondo_club,"[""sports_and_recreation"",""sports_club_and_league"",""martial_arts_club"",""taekwondo_club""]", -917,tai_chi_studio,fitness_studio,tai_chi_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""tai_chi_studio""]", -8378,taiwanese_restaurant,restaurant,taiwanese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""east_asian_restaurant"",""taiwanese_restaurant""]", -1327,talent_agency,human_resource_service,talent_agency,"[""services_and_business"",""professional_service"",""talent_agency""]", -90,tanning_bed,tanning_salon,tanning_bed,"[""lifestyle_services"",""beauty_service"",""tanning_salon"",""tanning_bed""]", -34385,tanning_salon,tanning_salon,tanning_salon,"[""lifestyle_services"",""beauty_service"",""tanning_salon""]", -35637,tapas_bar,casual_eatery,tapas_bar,"[""food_and_drink"",""casual_eatery"",""tapas_bar""]", -5,tasting_classes,specialty_school,tasting_class,"[""education"",""tasting_class""]", -83,tatar_restaurant,restaurant,tatar_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""russian_restaurant"",""tatar_restaurant""]", -1443,tattoo,tattoo_or_piercing_salon,tattoo,"[""lifestyle_services"",""body_modification"",""tattoo_and_piercing"",""tattoo""]", -183837,tattoo_and_piercing,tattoo_or_piercing_salon,tattoo_and_piercing,"[""lifestyle_services"",""body_modification"",""tattoo_and_piercing""]", -454,tattoo_removal,healthcare_location,tattoo_removal,"[""health_care"",""doctor"",""tattoo_removal""]", -2655,tax_law,attorney_or_law_firm,tax_law,"[""services_and_business"",""professional_service"",""lawyer"",""tax_law""]", -60,tax_office,government_office,tax_office,"[""community_and_government"",""tax_office""]", -41397,tax_services,tax_preparation_service,tax_service,"[""services_and_business"",""financial_service"",""tax_service""]", -52,taxi_rank,taxi_or_ride_share_service,taxi_stand,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""taxi_service"",""taxi_stand""]", -49777,taxi_service,taxi_service,taxi_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""taxi_service""]", -5408,taxidermist,personal_service,taxidermist,"[""services_and_business"",""professional_service"",""taxidermist""]", -61260,tea_room,beverage_shop,tea_room,"[""food_and_drink"",""beverage_shop"",""tea_room""]", -29,tea_wholesaler,wholesaler,tea_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""tea_wholesaler""]", -195,team_building_activity,event_or_party_service,team_building_activity,"[""services_and_business"",""professional_service"",""event_planning"",""team_building_activity""]", -2143,teeth_whitening,personal_service,teeth_whitening,"[""lifestyle_services"",""beauty_service"",""teeth_whitening""]", -32984,telecommunications,telecommunications_service,telecommunications,"[""services_and_business"",""professional_service"",""it_service_and_computer_repair"",""telecommunications""]", -86437,telecommunications_company,telecommunications_service,telecommunications_company,"[""services_and_business"",""business"",""telecommunications_company""]", -2035,telemarketing_services,business_advertising_marketing,telemarketing_service,"[""services_and_business"",""business_to_business"",""business_advertising"",""telemarketing_service""]", -621,telephone_services,technical_service,telephone_service,"[""services_and_business"",""professional_service"",""telephone_service""]", -12471,television_service_providers,home_service,television_service_provider,"[""services_and_business"",""home_service"",""television_service_provider""]", -1495,television_station,television_station,television_station,"[""services_and_business"",""media_and_news"",""media_news_company"",""television_station""]", -4033,temp_agency,human_resource_service,temp_agency,"[""services_and_business"",""professional_service"",""employment_agency"",""temp_agency""]", -1092,temple,place_of_worship,place_of_worship,"[""cultural_and_historic"",""religious_organization"",""place_of_worship""]", -61,tenant_and_eviction_law,legal_service,tenant_and_eviction_law,"[""services_and_business"",""professional_service"",""tenant_and_eviction_law""]", -29148,tennis_court,sport_court,tennis_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""tennis_court""]", -745,tennis_stadium,sport_stadium,tennis_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""tennis_stadium""]", -11,tent_house_supplier,b2b_supplier_distributor,tent_house_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""tent_house_supplier""]", -7884,test_preparation,educational_service,test_preparation,"[""education"",""test_preparation""]", -9494,texmex_restaurant,restaurant,texmex_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""texmex_restaurant""]", -2209,textile_mill,b2b_supplier_distributor,textile_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""textile_mill""]", -78,textile_museum,art_museum,textile_museum,"[""arts_and_entertainment"",""museum"",""art_museum"",""textile_museum""]", -100496,thai_restaurant,restaurant,thai_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""thai_restaurant""]", -1999,theaters_and_performance_venues,performing_arts_venue,performing_arts_venue,"[""arts_and_entertainment"",""performing_arts_venue""]", -62757,theatre,threatre_venue,theatre_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""theatre_venue""]", -11395,theatrical_productions,threatre_venue,theatrical_production,"[""services_and_business"",""media_and_news"",""theatrical_production""]", -17460,theme_restaurant,restaurant,theme_restaurant,"[""food_and_drink"",""restaurant"",""theme_restaurant""]", -2,thread_supplier,b2b_supplier_distributor,thread_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""thread_supplier""]", -1911,threading_service,personal_service,threading_service,"[""lifestyle_services"",""beauty_service"",""hair_removal"",""threading_service""]", -262,threads_and_yarns_wholesaler,wholesaler,threads_and_yarns_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""threads_and_yarns_wholesaler""]", -77962,thrift_store,second_hand_shop,second_hand_store,"[""shopping"",""second_hand_store""]", -579,ticket_sales,entertainment_location,ticket_office_or_booth,"[""arts_and_entertainment"",""ticket_office_or_booth""]", -855,tiki_bar,bar,tiki_bar,"[""food_and_drink"",""bar"",""tiki_bar""]", -4988,tile_store,specialty_store,tile_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""tile_store""]", -4534,tiling,home_service,tiling,"[""services_and_business"",""home_service"",""tiling""]", -134083,tire_dealer_and_repair,auto_repair_service,tire_dealer_and_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""tire_dealer_and_repair""]", -3953,tire_repair_shop,vehicle_service,tire_shop,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""tire_shop""]", -27942,tire_shop,vehicle_service,tire_shop,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""tire_shop""]", -352,tobacco_company,specialty_store,tobacco_company,"[""services_and_business"",""business"",""tobacco_company""]", -70206,tobacco_shop,specialty_store,tobacco_shop,"[""shopping"",""food_and_beverage_store"",""tobacco_shop""]", -45,toll_stations,toll_station,toll_station,"[""travel_and_transportation"",""road_structures_and_service"",""toll_station""]", -481,tools_wholesaler,wholesaler,tools_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""tools_wholesaler""]", -137523,topic_concert_venue,music_venue,music_venue,"[""arts_and_entertainment"",""performing_arts_venue"",""music_venue""]", -41805,topic_publisher,print_media_service,topic_publisher,"[""services_and_business"",""media_and_news"",""media_news_company"",""topic_publisher""]", -124683,tours,tour_operator,tour,"[""travel_and_transportation"",""travel"",""tour""]", -10,tower,communication_tower,tower,"[""cultural_and_historic"",""architectural_landmark"",""tower""]", -15,tower_communication_service,communication_tower,tower_communication_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""tower_communication_service""]", -34285,towing_service,towing_service,towing_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""towing_service""]", -259,town_car_service,taxi_or_ride_share_service,town_car_service,"[""travel_and_transportation"",""automotive_and_ground_transport"",""taxi_and_ride_share"",""town_car_service""]", -90987,town_hall,government_office,town_hall,"[""community_and_government"",""town_hall""]", -10,toxicologist,healthcare_location,toxicologist,"[""health_care"",""doctor"",""toxicologist""]", -71689,toy_store,toy_store,toy_store,"[""shopping"",""specialty_store"",""toy_store""]", -1655,track_stadium,sport_stadium,track_stadium,"[""arts_and_entertainment"",""stadium_arena"",""stadium"",""track_stadium""]", -170,trade_fair,event_space,exhibition_and_trade_fair_venue,"[""arts_and_entertainment"",""event_venue"",""exhibition_and_trade_fair_venue""]", -23,traditional_chinese_medicine,alternative_medicine,traditional_chinese_medicine,"[""health_care"",""traditional_chinese_medicine""]", -1573,traditional_clothing,clothing_store,traditional_clothing,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""traditional_clothing""]", -1342,traffic_school,specialty_school,traffic_school,"[""education"",""specialty_school"",""traffic_school""]", -25,traffic_ticketing_law,attorney_or_law_firm,traffic_ticketing_law,"[""services_and_business"",""professional_service"",""lawyer"",""traffic_ticketing_law""]", -27,trail,recreational_trail,trail,"[""sports_and_recreation"",""trail""]", -7778,trailer_dealer,vehicle_dealer,trailer_dealer,"[""shopping"",""vehicle_dealer"",""trailer_dealer""]", -5515,trailer_rentals,vehicle_service,trailer_rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""vehicle_rental_service"",""trailer_rental_service""]", -152,trailer_repair,auto_repair_service,trailer_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""trailer_repair""]", -115811,train_station,train_station,train_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""trains_and_rail_transport"",""train_station""]", -1357,trains,transportation_location,train,"[""travel_and_transportation"",""automotive_and_ground_transport"",""trains_and_rail_transport"",""train""]", -80,trampoline_park,sport_fitness_facility,trampoline_park,"[""sports_and_recreation"",""sports_and_recreation_venue"",""trampoline_park""]", -185,transcription_services,b2b_service,transcription_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""transcription_service""]", -11723,translating_and_interpreting_services,b2b_service,translating_and_interpreting_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""translating_and_interpreting_service""]", -3592,translation_services,media_service,translation_service,"[""services_and_business"",""professional_service"",""translation_service""]", -2258,transmission_repair,auto_repair_service,transmission_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""transmission_repair""]", -46,transport_interchange,transportation_location,transport_interchange,"[""travel_and_transportation"",""transport_interchange""]", -206648,transportation,transportation_location,travel_and_transportation,"[""travel_and_transportation""]", -106809,travel,travel_service,travel,"[""travel_and_transportation"",""travel""]", -42958,travel_agents,travel_agent,travel_agent,"[""travel_and_transportation"",""travel"",""travel_agent""]", -26145,travel_company,travel_service,travel_company,"[""services_and_business"",""business"",""travel_company""]", -310026,travel_services,travel_service,travel,"[""travel_and_transportation"",""travel""]", -27192,tree_services,landscaping_gardening_service,tree_service,"[""services_and_business"",""home_service"",""landscaping"",""tree_service""]", -44,trinidadian_restaurant,restaurant,trinidadian_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""caribbean_restaurant"",""trinidadian_restaurant""]", -3,trivia_host,event_or_party_service,trivia_host,"[""services_and_business"",""professional_service"",""event_planning"",""trivia_host""]", -7030,trophy_shop,specialty_store,trophy_store,"[""shopping"",""specialty_store"",""trophy_store""]", -14858,truck_dealer,truck_dealer,truck_dealer,"[""shopping"",""vehicle_dealer"",""truck_dealer""]", -10359,truck_dealer_for_businesses,truck_dealer,truck_dealer,"[""shopping"",""vehicle_dealer"",""truck_dealer""]", -7168,truck_gas_station,gas_station,truck_gas_station,"[""travel_and_transportation"",""automotive_and_ground_transport"",""fueling_station"",""gas_station"",""truck_gas_station""]", -49583,truck_rentals,truck_rental_service,truck_rental_service,"[""services_and_business"",""real_estate"",""real_estate_service"",""rental_service"",""vehicle_rental_service"",""truck_rental_service""]", -18315,truck_repair,vehicle_service,truck_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""truck_repair""]", -119,truck_repair_and_services_for_businesses,vehicle_service,truck_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""truck_repair""]", -469,truck_stop,rest_stop,truck_stop,"[""travel_and_transportation"",""road_structures_and_service"",""truck_stop""]", -382,trucks_and_industrial_vehicles,b2b_supplier_distributor,truck_and_industrial_vehicle_services,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""truck_and_industrial_vehicle_services""]", -75626,trusts,financial_service,trusts,"[""services_and_business"",""financial_service"",""trusts""]", -13,tubing_provider,sport_fitness_facility,tubing_provider,"[""sports_and_recreation"",""sports_and_recreation_venue"",""tubing_provider""]", -41,tui_na,alternative_medicine,tui_na,"[""health_care"",""traditional_chinese_medicine"",""tui_na""]", -36996,turkish_restaurant,restaurant,turkish_restaurant,"[""food_and_drink"",""restaurant"",""middle_eastern_restaurant"",""turkish_restaurant""]", -51,turnery,b2b_supplier_distributor,turnery,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""turnery""]", -82936,tutoring_center,tutoring_service,tutoring_center,"[""education"",""tutoring_center""]", -1860,tv_mounting,technical_service,tv_mounting,"[""services_and_business"",""professional_service"",""tv_mounting""]", -99,typing_services,media_service,typing_service,"[""services_and_business"",""professional_service"",""typing_service""]", -953,ukrainian_restaurant,restaurant,ukrainian_restaurant,"[""food_and_drink"",""restaurant"",""european_restaurant"",""eastern_european_restaurant"",""ukrainian_restaurant""]", -49,ultrasound_imaging_center,diagnostic_service,ultrasound_imaging_center,"[""health_care"",""ultrasound_imaging_center""]", -100,undersea_hyperbaric_medicine,healthcare_location,undersea_hyperbaric_medicine,"[""health_care"",""doctor"",""undersea_hyperbaric_medicine""]", -120,unemployment_office,government_office,unemployment_office,"[""community_and_government"",""unemployment_office""]", -15208,uniform_store,clothing_store,uniform_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""uniform_store""]", -1124,university_housing,housing,university_housing,"[""services_and_business"",""real_estate"",""university_housing""]", -6185,urban_farm,farm,urban_farm,"[""services_and_business"",""agricultural_service"",""farm"",""urban_farm""]", -4997,urgent_care_clinic,clinic_or_treatment_center,urgent_care_clinic,"[""health_care"",""urgent_care_clinic""]", -14225,urologist,healthcare_location,urologist,"[""health_care"",""doctor"",""urologist""]", -101,uruguayan_restaurant,restaurant,uruguayan_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""uruguayan_restaurant""]", -968,used_bookstore,bookstore,used_bookstore,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""bookstore"",""used_bookstore""]", -78398,used_car_dealer,car_dealer,used_car_dealer,"[""shopping"",""vehicle_dealer"",""car_dealer"",""used_car_dealer""]", -16664,used_vintage_and_consignment,second_hand_shop,second_hand_clothing_store,"[""shopping"",""second_hand_store"",""second_hand_clothing_store""]", -655,utility_service,public_utility_service,public_utility_provider,"[""community_and_government"",""public_utility_provider""]", -172,uzbek_restaurant,restaurant,uzbek_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""central_asian_restaurant"",""uzbek_restaurant""]", -2392,vacation_rental_agents,property_management_service,vacation_rental_agent,"[""travel_and_transportation"",""travel"",""vacation_rental_agent""]", -357,valet_service,event_or_party_service,valet_service,"[""services_and_business"",""professional_service"",""event_planning"",""valet_service""]", -282,vascular_medicine,internal_medicine,vascular_medicine,"[""health_care"",""doctor"",""vascular_medicine""]", -4663,vegan_restaurant,restaurant,vegan_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""vegan_restaurant""]", -25030,vegetarian_restaurant,restaurant,vegetarian_restaurant,"[""food_and_drink"",""restaurant"",""special_diet_restaurant"",""vegetarian_restaurant""]", -3038,vehicle_shipping,shipping_delivery_service,vehicle_shipping,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""vehicle_shipping""]", -377,vehicle_wrap,vehicle_service,vehicle_wrap,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""vehicle_wrap""]", -10418,vending_machine_supplier,b2b_supplier_distributor,vending_machine_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""vending_machine_supplier""]", -1272,venezuelan_restaurant,restaurant,venezuelan_restaurant,"[""food_and_drink"",""restaurant"",""latin_american_restaurant"",""south_american_restaurant"",""venezuelan_restaurant""]", -26371,venue_and_event_space,event_space,event_venue,"[""arts_and_entertainment"",""event_venue""]", -2,vermouth_bar,bar,vermouth_bar,"[""food_and_drink"",""bar"",""vermouth_bar""]", -871,veterans_organization,social_club,veterans_organization,"[""arts_and_entertainment"",""social_club"",""veterans_organization""]", -203106,veterinarian,veterinarian,veterinarian,"[""lifestyle_services"",""pets"",""veterinary_care"",""veterinarian""]", -8949,video_and_video_game_rentals,specialty_store,video_and_video_game_rental,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""video_and_video_game_rental""]", -3199,video_film_production,media_service,video_film_production,"[""services_and_business"",""professional_service"",""video_film_production""]", -8,video_game_critic,media_service,video_game_critic,"[""services_and_business"",""media_and_news"",""media_critic"",""video_game_critic""]", -30635,video_game_store,electronics_store,video_game_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""video_game_store""]", -2053,videographer,event_or_party_service,videographer,"[""services_and_business"",""professional_service"",""event_planning"",""videographer""]", -36420,vietnamese_restaurant,restaurant,vietnamese_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""southeast_asian_restaurant"",""vietnamese_restaurant""]", -2007,vinyl_record_store,music_store,vinyl_record_store,"[""shopping"",""specialty_store"",""books_mags_music_video_store"",""vinyl_record_store""]", -23,virtual_reality_center,entertainment_location,virtual_reality_center,"[""arts_and_entertainment"",""science_attraction"",""virtual_reality_center""]", -140,visa_agent,passport_visa_service,visa_agent,"[""travel_and_transportation"",""travel"",""passport_and_visa_service"",""visa_agent""]", -1992,visitor_center,visitor_information_center,visitor_center,"[""travel_and_transportation"",""travel"",""visitor_center""]", -46470,vitamins_and_supplements,specialty_store,vitamin_and_supplement_store,"[""shopping"",""food_and_beverage_store"",""vitamin_and_supplement_store""]", -138,vocal_coach,media_service,vocal_coach,"[""services_and_business"",""professional_service"",""musical_instrument_service"",""vocal_coach""]", -34527,vocational_and_technical_school,vocational_technical_school,vocational_and_technical_school,"[""education"",""specialty_school"",""vocational_and_technical_school""]", -32,volleyball_club,sport_recreation_club,volleyball_club,"[""sports_and_recreation"",""sports_club_and_league"",""volleyball_club""]", -2105,volleyball_court,sport_court,volleyball_court,"[""sports_and_recreation"",""sports_and_recreation_venue"",""volleyball_court""]", -405,volunteer_association,social_or_community_service,volunteer_association,"[""community_and_government"",""organization"",""social_service_organization"",""volunteer_association""]", -282,waffle_restaurant,restaurant,waffle_restaurant,"[""food_and_drink"",""restaurant"",""breakfast_and_brunch_restaurant"",""waffle_restaurant""]", -13,waldorf_school,place_of_learning,waldorf_school,"[""education"",""school"",""waldorf_school""]", -11234,walk_in_clinic,clinic_or_treatment_center,walk_in_clinic,"[""health_care"",""medical_center"",""walk_in_clinic""]", -75,walking_tours,tour_operator,walking_tour,"[""travel_and_transportation"",""travel"",""tour"",""walking_tour""]", -36,wallpaper_installers,home_service,wallpaper_installer,"[""services_and_business"",""home_service"",""wallpaper_installer""]", -225,wallpaper_store,specialty_store,wallpaper_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""wallpaper_store""]", -56,warehouse_rental_services_and_yards,warehouse,warehouse_rental_service_yard,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""b2b_storage"",""warehouse_rental_service_yard""]", -11539,warehouses,warehouse,warehouse,"[""services_and_business"",""business_to_business"",""business_storage_and_transportation"",""b2b_storage"",""warehouse""]", -96,washer_and_dryer_repair_service,applicance_repair_service,washer_and_dryer_repair_service,"[""services_and_business"",""home_service"",""washer_and_dryer_repair_service""]", -123,watch_repair_service,personal_service,watch_repair_service,"[""services_and_business"",""professional_service"",""watch_repair_service""]", -3977,watch_store,jewelry_store,watch_store,"[""shopping"",""fashion_and_apparel_store"",""jewelry_store"",""watch_store""]", -58,water_delivery,home_service,water_delivery,"[""services_and_business"",""professional_service"",""water_delivery""]", -1353,water_heater_installation_repair,applicance_repair_service,water_heater_installation_repair,"[""services_and_business"",""home_service"",""water_heater_installation_repair""]", -13956,water_park,park,water_park,"[""sports_and_recreation"",""park"",""water_park""]", -1149,water_purification_services,home_service,water_purification_service,"[""services_and_business"",""home_service"",""water_purification_service""]", -464,water_softening_equipment_supplier,b2b_supplier_distributor,water_softening_equipment_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""water_softening_equipment_supplier""]", -47,water_store,food_or_beverage_store,water_store,"[""shopping"",""food_and_beverage_store"",""water_store""]", -14473,water_supplier,water_utility_service,water_utility_provider,"[""community_and_government"",""public_utility_provider"",""water_utility_provider""]", -2,water_taxi,water_taxi_service,water_taxi,"[""travel_and_transportation"",""watercraft_and_water_transport"",""water_taxi""]", -25906,water_treatment_equipment_and_services,b2b_service,water_treatment_equipment_and_service,"[""services_and_business"",""business_to_business"",""business_to_business_service"",""environmental_and_ecological_service_for_business"",""water_treatment_equipment_and_service""]", -7670,waterfall,nature_outdoors,waterfall,"[""geographic_entities"",""waterfall""]", -1083,waterproofing,home_service,waterproofing,"[""services_and_business"",""home_service"",""waterproofing""]", -11589,waxing,personal_service,waxing,"[""lifestyle_services"",""beauty_service"",""hair_removal"",""waxing""]", -20,weather_forecast_services,media_service,weather_forecast_service,"[""services_and_business"",""media_and_news"",""media_news_company"",""weather_forecast_service""]", -229,weather_station,media_service,weather_station,"[""community_and_government"",""weather_station""]", -25,weaving_mill,b2b_supplier_distributor,weaving_mill,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""mill"",""weaving_mill""]", -81516,web_designer,web_design_service,web_designer,"[""services_and_business"",""professional_service"",""web_designer""]", -1026,web_hosting_service,internet_service_provider,web_hosting_service,"[""services_and_business"",""professional_service"",""internet_service_provider"",""web_hosting_service""]", -1339,wedding_chapel,event_or_party_service,wedding_chapel,"[""services_and_business"",""professional_service"",""event_planning"",""wedding_chapel""]", -38237,wedding_planning,wedding_service,wedding_planning,"[""services_and_business"",""professional_service"",""event_planning"",""wedding_planning""]", -19787,weight_loss_center,clinic_or_treatment_center,weight_loss_center,"[""health_care"",""weight_loss_center""]", -1161,welders,b2b_service,welder,"[""services_and_business"",""professional_service"",""construction_service"",""welder""]", -4269,welding_supply_store,specialty_store,welding_supply_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""hardware_store"",""welding_supply_store""]", -8277,well_drilling,home_service,well_drilling,"[""services_and_business"",""professional_service"",""well_drilling""]", -1714,wellness_program,clinic_or_treatment_center,wellness_program,"[""health_care"",""wellness_program""]", -48,whale_watching_tours,tour_operator,whale_watching_tour,"[""travel_and_transportation"",""travel"",""tour"",""whale_watching_tour""]", -2715,wheel_and_rim_repair,auto_repair_service,wheel_and_rim_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""automotive_repair"",""wheel_and_rim_repair""]", -1659,whiskey_bar,bar,whiskey_bar,"[""food_and_drink"",""bar"",""whiskey_bar""]", -405,wholesale_florist,wholesaler,wholesale_florist,"[""services_and_business"",""business_to_business"",""wholesaler"",""wholesale_florist""]", -8445,wholesale_grocer,wholesaler,wholesale_grocer,"[""services_and_business"",""business_to_business"",""wholesaler"",""wholesale_grocer""]", -138974,wholesale_store,warehouse_club,wholesale_store,"[""shopping"",""wholesale_store""]", -15098,wholesaler,wholesaler,wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler""]", -4968,wig_store,fashion_or_apparel_store,wig_store,"[""shopping"",""specialty_store"",""cosmetic_and_beauty_supply_store"",""wig_store""]", -1,wild_game_meats_restaurant,restaurant,wild_game_meats_restaurant,"[""food_and_drink"",""restaurant"",""meat_restaurant"",""wild_game_meats_restaurant""]", -227,wildlife_control,home_service,wildlife_control,"[""services_and_business"",""professional_service"",""wildlife_control""]", -253,wildlife_hunting_range,sport_fitness_facility,wildlife_hunting_range,"[""sports_and_recreation"",""sports_and_recreation_venue"",""wildlife_hunting_range""]", -10400,wildlife_sanctuary,wildlife_sanctuary,wildlife_sanctuary,"[""arts_and_entertainment"",""animal_attraction"",""wildlife_sanctuary""]", -4872,wills_trusts_and_probate,will_trust_probate_service,wills_trusts_and_probate,"[""services_and_business"",""professional_service"",""lawyer"",""wills_trusts_and_probate""]", -70,wind_energy,utility_energy_infrastructure,wind_energy,"[""services_and_business"",""professional_service"",""construction_service"",""wind_energy""]", -5021,window_supplier,b2b_supplier_distributor,window_supplier,"[""services_and_business"",""business_to_business"",""supplier_distributor"",""window_supplier""]", -2640,window_treatment_store,specialty_store,window_treatment_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""window_treatment_store""]", -1626,window_washing,home_service,window_washing,"[""services_and_business"",""home_service"",""window_washing""]", -35205,windows_installation,home_service,windows_installation,"[""services_and_business"",""home_service"",""windows_installation""]", -2653,windshield_installation_and_repair,auto_glass_service,windshield_installation_and_repair,"[""travel_and_transportation"",""automotive_and_ground_transport"",""automotive"",""automotive_services_and_repair"",""auto_glass_service"",""windshield_installation_and_repair""]", -37529,wine_bar,bar,wine_bar,"[""food_and_drink"",""bar"",""wine_bar""]", -9,wine_tasting_classes,specialty_school,wine_tasting_class,"[""education"",""tasting_class"",""wine_tasting_class""]", -172,wine_tasting_room,winery,wine_tasting_room,"[""food_and_drink"",""brewery_winery_distillery"",""winery"",""wine_tasting_room""]", -123,wine_tours,tour_operator,wine_tour,"[""travel_and_transportation"",""travel"",""tour"",""wine_tour""]", -6134,wine_wholesaler,wholesaler,wine_wholesaler,"[""services_and_business"",""business_to_business"",""wholesaler"",""wine_wholesaler""]", -80889,winery,winery,winery,"[""food_and_drink"",""brewery_winery_distillery"",""winery""]", -7,wok_restaurant,restaurant,wok_restaurant,"[""food_and_drink"",""restaurant"",""asian_restaurant"",""wok_restaurant""]", -298105,womens_clothing_store,clothing_store,womens_clothing_store,"[""shopping"",""fashion_and_apparel_store"",""clothing_store"",""womens_clothing_store""]", -7557,womens_health_clinic,clinic_or_treatment_center,womens_health_clinic,"[""health_care"",""womens_health_clinic""]", -8022,wood_and_pulp,b2b_supplier_distributor,wood_and_pulp,"[""services_and_business"",""business_to_business"",""business_manufacturing_and_supply"",""wood_and_pulp""]", -3425,woodworking_supply_store,specialty_store,woodworking_supply_store,"[""shopping"",""specialty_store"",""home_and_garden_store"",""woodworking_supply_store""]", -151,workers_compensation_law,attorney_or_law_firm,workers_compensation_law,"[""services_and_business"",""professional_service"",""lawyer"",""workers_compensation_law""]", -2,wrap_restaurant,restaurant,wrap_restaurant,"[""food_and_drink"",""restaurant"",""wrap_restaurant""]", -2569,writing_service,media_service,writing_service,"[""services_and_business"",""professional_service"",""writing_service""]", -123,yoga_instructor,fitness_studio,yoga_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""yoga_studio""]", -79896,yoga_studio,fitness_studio,yoga_studio,"[""sports_and_recreation"",""sports_and_fitness_instruction"",""yoga_studio""]", -50168,youth_organizations,youth_organization,youth_organization,"[""community_and_government"",""organization"",""social_service_organization"",""youth_organization""]", -30,ziplining_center,sport_fitness_facility,ziplining_center,"[""sports_and_recreation"",""adventure_sport"",""ziplining_center""]", -10672,zoo,zoo,zoo,"[""arts_and_entertainment"",""animal_attraction"",""zoo""]", \ No newline at end of file diff --git a/docs/guides/places/csv/2026-02-15-categories-hierarchies.csv b/docs/guides/places/csv/2026-02-15-categories-hierarchies.csv deleted file mode 100644 index 136ce0205..000000000 --- a/docs/guides/places/csv/2026-02-15-categories-hierarchies.csv +++ /dev/null @@ -1,2355 +0,0 @@ -Group (L0),Level,Is Basic,New Primary Hierarchy,New Primary Category,New Display Name,Basic Level Category,Old Primary Hierarchy,Old Primary Category,Added,Renamed,Removed,Redirect To -arts_and_entertainment,0,FALSE,arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,,arts_and_entertainment,arts_and_entertainment,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,amusement_attraction,arts_and_entertainment > amusement_attraction,amusement_attraction,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,amusement_park,arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,amusement_attraction,arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,amusement_attraction,arts_and_entertainment > amusement_attraction > carousel,carousel,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,amusement_attraction,arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,amusement_attraction,arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,animal_attraction,arts_and_entertainment > animal_attraction,animal_attraction,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,aquarium,arts_and_entertainment > animal_attraction > aquarium,aquarium,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,animal_attraction,arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,zoo,arts_and_entertainment > animal_attraction > zoo,zoo,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,zoo,arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,zoo,arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,art_gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,Paint and Sip Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,Paint Your Own Pottery Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,street_art,arts_and_entertainment > arts_and_crafts_space > street_art,street_art,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > event_venue,event_venue,Event Venue,event_venue,arts_and_entertainment > event_venue,event_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,event_venue,arts_and_entertainment > event_venue > auditorium,auditorium,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,event_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > festival_venue,festival_venue,Festival Venue,festival_venue,arts_and_entertainment > festival_venue,festival_venue,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,festival_venue,arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,festival_venue,arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,gaming_venue,arts_and_entertainment > gaming_venue,gaming_venue,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,arcade,arts_and_entertainment > gaming_venue > arcade,arcade,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,gaming_venue,arts_and_entertainment > gaming_venue > betting_center,betting_center,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,gaming_venue,arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > gaming_venue > casino,casino,Casino,casino,arts_and_entertainment > gaming_venue > casino,casino,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,gaming_venue,arts_and_entertainment > gaming_venue > escape_room,escape_room,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,gaming_venue,arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > movie_theater,movie_theater,Movie Theater,movie_theater,arts_and_entertainment > movie_theater,movie_theater,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive In Theater,movie_theater,arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,movie_theater,arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > museum,museum,Museum,museum,arts_and_entertainment > museum,museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > art_museum,art_museum,Art Museum,museum,arts_and_entertainment > museum > art_museum,art_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,museum,arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,museum,arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,museum,arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,museum,arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,museum,arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,museum,arts_and_entertainment > museum > art_museum > design_museum,design_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,museum,arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,museum,arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,museum,arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,museum,arts_and_entertainment > museum > aviation_museum,aviation_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,museum,arts_and_entertainment > museum > childrens_museum,childrens_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > history_museum,history_museum,History Museum,museum,arts_and_entertainment > museum > history_museum,history_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,museum,arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,museum,arts_and_entertainment > museum > history_museum > community_museum,community_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > military_museum,military_museum,Military Museum,museum,arts_and_entertainment > museum > military_museum,military_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > national_museum,national_museum,National Museum,museum,arts_and_entertainment > museum > national_museum,national_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > science_museum,science_museum,Science Museum,museum,arts_and_entertainment > museum > science_museum,science_museum,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,museum,arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,museum,arts_and_entertainment > museum > sports_museum,sports_museum,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > state_museum,state_museum,State Museum,museum,arts_and_entertainment > museum > state_museum,state_museum,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,nightlife_venue,arts_and_entertainment > nightlife_venue,nightlife_venue,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,nightlife_venue,arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,nightlife_venue,arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,dance_club,arts_and_entertainment > nightlife_venue > dance_club,dance_club,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,dance_club,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,performing_arts_venue,arts_and_entertainment > performing_arts_venue,performing_arts_venue,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,performing_arts_venue,arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,performing_arts_venue,arts_and_entertainment > performing_arts_venue > cabaret,cabaret,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,comedy_club,arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,performing_arts_venue,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,rural_attraction,arts_and_entertainment > rural_attraction,rural_attraction,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,rural_attraction,arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,rural_attraction,arts_and_entertainment > rural_attraction > corn_maze,corn_maze,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,rural_attraction,arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,rural_attraction,arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,rodeo,arts_and_entertainment > rural_attraction > rodeo,rodeo,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > science_attraction,science_attraction,Science Attraction,science_attraction,arts_and_entertainment > science_attraction,science_attraction,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,makerspace,arts_and_entertainment > science_attraction > makerspace,makerspace,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > science_attraction > observatory,observatory,Observatory,science_attraction,arts_and_entertainment > science_attraction > observatory,observatory,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,planetarium,arts_and_entertainment > science_attraction > planetarium,planetarium,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,science_attraction,arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,science_attraction,arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > social_club,social_club,Social Club,social_club,arts_and_entertainment > social_club,social_club,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > social_club > country_club,country_club,Country Club,country_club,arts_and_entertainment > social_club > country_club,country_club,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,social_club,arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,social_club,arts_and_entertainment > social_club > veterans_organization,veterans_organization,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,spiritual_advising,arts_and_entertainment > spiritual_advising,spiritual_advising,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,astrological_advising,arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,stadium_arena,arts_and_entertainment > stadium_arena,stadium_arena,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > stadium_arena > arena,arena,Arena,stadium_arena,arts_and_entertainment > stadium_arena > arena,arena,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium,stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,stadium_arena,arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,stadium_arena,arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,ticket_office_or_booth,arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,,,, -community_and_government,0,FALSE,community_and_government,community_and_government,Community and Government,,community_and_government,community_and_government,,,, -community_and_government,1,FALSE,community_and_government > armed_forces_branch,armed_forces_branch,Armed Forces Branch,military_site,community_and_government > armed_forces_branch,armed_forces_branch,,,TRUE,military_site -community_and_government,1,FALSE,community_and_government > children_hall,children_hall,Children Hall,social_or_community_service,community_and_government > children_hall,children_hall,,,TRUE,youth_organization -community_and_government,1,TRUE,community_and_government > civic_organization,civic_organization,Civic Organization,civic_organization,community_and_government > organization,organization,,TRUE,, -community_and_government,2,FALSE,community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,civic_organization,community_and_government > organization > social_service_organization > charity_organization,charity_organization,,,, -community_and_government,2,TRUE,community_and_government > civic_organization > civic_center,civic_center,Civic Center,civic_center,community_and_government > civic_center,civic_center,,,, -community_and_government,2,TRUE,community_and_government > civic_organization > labor_union,labor_union,Labor Union,labor_union,community_and_government > organization > labor_union,labor_union,,,, -community_and_government,2,FALSE,community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,civic_organization,community_and_government > organization > non_governmental_association,non_governmental_association,,,, -community_and_government,2,TRUE,community_and_government > civic_organization > political_organization,political_organization,Political Organization,political_organization,community_and_government > organization > political_organization,political_organization,,,, -community_and_government,3,FALSE,community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,political_organization,community_and_government > political_party_office,political_party_office,,,, -community_and_government,1,FALSE,community_and_government > community_service,community_service,Community Service,social_or_community_service,community_and_government > community_service,community_service,,,TRUE,social_or_community_service -community_and_government,1,TRUE,community_and_government > government_office,government_office,Government Office,government_office,community_and_government > government_office,government_office,,,, -community_and_government,2,FALSE,community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,government_office,community_and_government > chambers_of_commerce,chambers_of_commerce,,,, -community_and_government,2,TRUE,community_and_government > government_office > courthouse,courthouse,Courthouse,courthouse,community_and_government > courthouse,courthouse,,,, -community_and_government,2,TRUE,community_and_government > government_office > embassy,embassy,Embassy,embassy,community_and_government > embassy,embassy,,,, -community_and_government,2,TRUE,community_and_government > government_office > government_department,government_department,Government Department,government_department,,,TRUE,,, -community_and_government,3,FALSE,community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,government_department,community_and_government > department_of_motor_vehicles,department_of_motor_vehicles,,,, -community_and_government,3,FALSE,community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,government_department,community_and_government > department_of_social_service,department_of_social_service,,,, -community_and_government,3,FALSE,community_and_government > government_office > government_department > health_department,health_department,Health Department,government_department,health_care > health_department,health_department,,,, -community_and_government,2,FALSE,community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,government_office,community_and_government > immigration_and_naturalization,immigration_and_naturalization,,,, -community_and_government,2,FALSE,community_and_government > government_office > national_security_service,national_security_service,National Security Service,government_office,community_and_government > national_security_service,national_security_service,,,, -community_and_government,2,FALSE,community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,government_office,community_and_government > office_of_vital_records,office_of_vital_records,,,, -community_and_government,2,FALSE,community_and_government > government_office > pension_office,pension_office,Pension Office,government_office,community_and_government > pension,pension,,TRUE,, -community_and_government,2,FALSE,community_and_government > government_office > registry_office,registry_office,Registry Office,government_office,community_and_government > registry_office,registry_office,,,, -community_and_government,2,FALSE,community_and_government > government_office > social_security_service,social_security_service,Social Security Service,government_office,community_and_government > government_office > social_security_service,social_security_service,,,, -community_and_government,2,FALSE,community_and_government > government_office > tax_office,tax_office,Tax Office,government_office,community_and_government > tax_office,tax_office,,,, -community_and_government,2,FALSE,community_and_government > government_office > town_hall,town_hall,Town Hall,government_office,community_and_government > town_hall,town_hall,,,, -community_and_government,2,FALSE,community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,government_office,community_and_government > unemployment_office,unemployment_office,,,, -community_and_government,1,TRUE,community_and_government > military_site,military_site,Military Site,military_site,,,TRUE,,, -community_and_government,2,TRUE,community_and_government > military_site > military_base,military_base,Military Base,military_base,,,TRUE,,, -community_and_government,2,TRUE,community_and_government > military_site > military_office,military_office,Military Office,military_office,,,TRUE,,, -community_and_government,1,FALSE,community_and_government > public_and_government_association,public_and_government_association,Public and Government Association,government_office,community_and_government > organization > public_and_government_association,public_and_government_association,,,TRUE,government_office -community_and_government,1,TRUE,community_and_government > public_facility,public_facility,Public Facility,public_facility,,,TRUE,,, -community_and_government,2,TRUE,community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,public_fountain,geographic_entities > fountain,fountain,,TRUE,, -community_and_government,3,FALSE,community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,public_fountain,geographic_entities > fountain > drinking_fountain,drinking_fountain,,,, -community_and_government,2,TRUE,community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,public_pathway,,,TRUE,,, -community_and_government,2,FALSE,community_and_government > public_facility > public_phone,public_phone,Public Phone,public_facility,community_and_government > public_utility_provider > public_phone,public_phone,,,, -community_and_government,2,TRUE,community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,public_plaza,geographic_entities > plaza,plaza,,TRUE,, -community_and_government,2,TRUE,community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,public_restroom,community_and_government > public_utility_provider > public_restroom,public_restroom,,,, -community_and_government,2,FALSE,community_and_government > public_facility > public_toilet,public_toilet,Public Toilet,public_restroom,community_and_government > public_toilet,public_toilet,,,TRUE,public_restroom -community_and_government,1,TRUE,community_and_government > public_safety_service,public_safety_service,Public Safety Service,public_safety_service,,,TRUE,,, -community_and_government,2,TRUE,community_and_government > public_safety_service > fire_station,fire_station,Fire Station,fire_station,community_and_government > fire_department,fire_department,,TRUE,, -community_and_government,2,TRUE,community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,jail_or_prison,community_and_government > jail_and_prison,jail_and_prison,,TRUE,, -community_and_government,3,FALSE,community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,jail_or_prison,community_and_government > jail_and_prison > juvenile_detention_center,juvenile_detention_center,,,, -community_and_government,2,FALSE,community_and_government > public_safety_service > law_enforcement,law_enforcement,Law Enforcement,police_station,community_and_government > law_enforcement,law_enforcement,,,TRUE,police_station -community_and_government,2,TRUE,community_and_government > public_safety_service > police_station,police_station,Police Station,police_station,community_and_government > police_department,police_department,,TRUE,, -community_and_government,1,TRUE,community_and_government > public_utility,public_utility,Public Utility,public_utility,community_and_government > public_utility_provider,public_utility_provider,,TRUE,, -community_and_government,2,TRUE,community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,electric_utility_provider,community_and_government > public_utility_provider > electric_utility_provider,electric_utility_provider,,,, -community_and_government,2,FALSE,community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,public_utility,community_and_government > public_utility_provider > garbage_collection_service,garbage_collection_service,,,, -community_and_government,2,TRUE,community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,natural_gas_utility_provider,community_and_government > public_utility_provider > natural_gas_utility_provider,natural_gas_utility_provider,,,, -community_and_government,2,TRUE,community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,water_utility_provider,community_and_government > public_utility_provider > water_utility_provider,water_utility_provider,,,, -community_and_government,1,TRUE,community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,social_or_community_service,community_and_government > organization > social_service_organization,social_service_organization,,TRUE,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,social_or_community_service,community_and_government > organization > social_service_organization > child_protection_service,child_protection_service,,,, -community_and_government,2,TRUE,community_and_government > social_or_community_service > community_center,community_center,Community Center,community_center,community_and_government > community_center,community_center,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > disability_services_and_support_organization,disability_services_and_support_organization,Disability Services and Support Organization,social_or_community_service,community_and_government > community_center > disability_services_and_support_organization,disability_services_and_support_organization,,,, -community_and_government,2,TRUE,community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,food_bank,community_and_government > organization > social_service_organization > food_bank,food_bank,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,social_or_community_service,community_and_government > organization > social_service_organization > foster_care_service,foster_care_service,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,Gay and Lesbian Services Organization,social_or_community_service,community_and_government > organization > social_service_organization > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,social_or_community_service,community_and_government > organization > social_service_organization > homeless_shelter,homeless_shelter,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,social_or_community_service,community_and_government > organization > social_service_organization > housing_authority,housing_authority,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,social_or_community_service,community_and_government > scout_hall,scout_hall,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,social_or_community_service,community_and_government > organization > social_service_organization > senior_citizen_service,senior_citizen_service,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > social_and_human_service,social_and_human_service,Social and Human Service,social_or_community_service,community_and_government > organization > social_service_organization > social_and_human_service,social_and_human_service,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,social_or_community_service,community_and_government > organization > social_service_organization > social_welfare_center,social_welfare_center,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,social_or_community_service,community_and_government > organization > social_service_organization > volunteer_association,volunteer_association,,,, -community_and_government,2,TRUE,community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,youth_organization,community_and_government > organization > social_service_organization > youth_organization,youth_organization,,,, -cultural_and_historic,0,FALSE,cultural_and_historic,cultural_and_historic,Cultural and Historic,,cultural_and_historic,cultural_and_historic,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > cultural_center,cultural_center,Cultural Center,cultural_center,cultural_and_historic > cultural_center,cultural_center,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > historic_site,historic_site,Historic Site,historic_site,cultural_and_historic > architectural_landmark,architectural_landmark,,TRUE,, -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > castle,castle,Castle,castle,cultural_and_historic > architectural_landmark > castle,castle,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > fort,fort,Fort,fort,cultural_and_historic > architectural_landmark > fort,fort,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,historic_site,cultural_and_historic > architectural_landmark > mission,mission,,TRUE,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,historic_site,cultural_and_historic > architectural_landmark > tower,tower,,TRUE,, -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,lighthouse,cultural_and_historic > architectural_landmark > lighthouse,lighthouse,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > palace,palace,Palace,historic_site,cultural_and_historic > architectural_landmark > palace,palace,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > ruin,ruin,Ruin,historic_site,cultural_and_historic > architectural_landmark > ruin,ruin,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > memorial_site,memorial_site,Memorial Site,memorial_site,,,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,cemetery,services_and_business > professional_service > cemetery,cemetery,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,memorial_site,cultural_and_historic > memorial_park,memorial_park,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > memorial_site > monument,monument,Monument,monument,cultural_and_historic > monument,monument,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,place_of_worship,cultural_and_historic > religious_organization > place_of_worship,place_of_worship,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,mahayana_buddhist_place_of_worship,Mahayana Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,mahayana_buddhist_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,nichiren_buddhist_place_of_worship,Nichiren Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,nichiren_buddhist_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,pure_land_buddhist_place_of_worship,Pure Land Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,pure_land_buddhist_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,zen_buddhist_place_of_worship,Zen Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,zen_buddhist_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,theravada_buddhist_place_of_worship,Theravada Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,theravada_buddhist_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,vajrayana_buddhist_place_of_worship,Vajrayana Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,vajrayana_buddhist_place_of_worship,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop,christian_place_of_worshop,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > church_of_the_east_place_of_worship,church_of_the_east_place_of_worship,Church of The East Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > church_of_the_east_place_of_worship,church_of_the_east_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship,eastern_orthodox_place_of_worship,Eastern Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship,eastern_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,antiochan_orthodox_place_of_worship,Antiochan Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,antiochan_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,bulgarian_orthodox_place_of_worship,Bulgarian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,bulgarian_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,georgian_orthodox_place_of_worship,Georgian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,georgian_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,greek_orthodox_place_of_worship,Greek Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,greek_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,romanian_orthodox_place_of_worship,Romanian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,romanian_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,russian_orthodox_place_of_worship,Russian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,russian_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,serbian_orthodox_place_of_worship,Serbian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,serbian_orthodox_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship,oriental_orthodox_place_of_worship,Oriental Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship,oriental_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,armenian_apostolic_place_of_worship,Armenian Apostolic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,armenian_apostolic_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,coptic_orthodox_place_of_worship,Coptic Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,coptic_orthodox_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,eritrean_orthodox_tewahedo_place_of_worship,Eritrean Orthodox Tewahedo Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,eritrean_orthodox_tewahedo_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,ethiopian_orthodox_tewahedo_place_of_worship,Ethiopian Orthodox Tewahedo Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,ethiopian_orthodox_tewahedo_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,malankara_orthodox_syrian_place_of_worship,Malankara Orthodox Syrian Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,malankara_orthodox_syrian_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,syriac_orthodox_place_of_worship,Syriac Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,syriac_orthodox_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship,protestant_place_of_worship,Protestant Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship,protestant_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > adventist_place_of_worship,adventist_place_of_worship,Adventist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > adventist_place_of_worshop,adventist_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anabaptist_place_of_worship,anabaptist_place_of_worship,Anabaptist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anabaptist_place_of_worshop,anabaptist_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anglican_or_episcopal_place_of_worship,anglican_or_episcopal_place_of_worship,Anglican or Episcopal Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anglican_or_episcopal_place_of_worshop,anglican_or_episcopal_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > baptist_place_of_worship,baptist_place_of_worship,Baptist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > baptist_place_of_worshop,baptist_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > lutheran_place_of_worship,lutheran_place_of_worship,Lutheran Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > lutheran_place_of_worshop,lutheran_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > methodist_place_of_worship,methodist_place_of_worship,Methodist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > methodist_place_of_worshop,methodist_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > pentecostal_place_of_worship,pentecostal_place_of_worship,Pentecostal Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > pentecostal_place_of_worshop,pentecostal_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > reformed_or_calvinist_place_of_worship,reformed_or_calvinist_place_of_worship,Reformed or Calvinist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > reformed_or_calvanist_place_of_worshop,reformed_or_calvanist_place_of_worshop,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship,restorationist_place_of_worship,Restorationist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship,restorationist_place_of_worship,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > jehovahs_witness_place_of_worship,jehovahs_witness_place_of_worship,Jehovahs Witness Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > jehovahs_witness_place_of_worshop,jehovahs_witness_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > mormon_place_of_worship,mormon_place_of_worship,Mormon Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > mormon_place_of_worship,mormon_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship,roman_catholic_place_of_worship,Roman Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop,roman_catholic_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > eastern_catholic_place_of_worship,eastern_catholic_place_of_worship,Eastern Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > eastern_catholic_place_of_worshop,eastern_catholic_place_of_worshop,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > western_catholic_place_of_worship,western_catholic_place_of_worship,Western Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > western_catholic_place_of_worshop,western_catholic_place_of_worshop,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,shaiva_hindu_place_of_worship,Shaiva Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,shaiva_hindu_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,shakta_hindu_place_of_worship,Shakta Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,shakta_hindu_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,smarta_hindu_place_of_worship,Smarta Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,smarta_hindu_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,vaishnava_hindu_place_of_worship,Vaishnava Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,vaishnava_hindu_place_of_worship,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,conservative_jewish_place_of_worship,Conservative Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,conservative_jewish_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,orthodox_jewish_place_of_worship,Orthodox Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,orthodox_jewish_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,reconstructionist_jewish_place_of_worship,Reconstructionist Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,reconstructionist_jewish_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,reform_jewish_place_of_worship,Reform Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,reform_jewish_place_of_worship,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,ibadi_muslim_place_of_worship,Ibadi Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,ibadi_muslim_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,shia_muslim_place_of_worship,Shia Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,shia_muslim_place_of_worship,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,sunni_muslim_place_of_worship,Sunni Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,sunni_muslim_place_of_worship,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,place_of_worship,cultural_and_historic > religious_organization > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,religious_landmark,cultural_and_historic > religious_organization > religious_landmark,religious_landmark,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site,pilgrimage_site,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,Christian Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,Hindu Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_landmark > shrine,shrine,Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine,shrine,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > catholic_shrine,catholic_shrine,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > shinto_shrine,shinto_shrine,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > sufi_shrine,sufi_shrine,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > religious_organization,religious_organization,Religious Organization,religious_organization,cultural_and_historic > religious_organization,religious_organization,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > convent,convent,Convent,religious_organization,cultural_and_historic > religious_organization > convent,convent,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > monastery,monastery,Monastery,religious_organization,cultural_and_historic > religious_organization > monastery,monastery,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > seminary,seminary,Seminary,religious_organization,cultural_and_historic > religious_organization > seminary,seminary,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center,Religious Retreat or Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center,religious_retreat_or_center,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > hindu_ashram,hindu_ashram,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > zen_center,zen_center,,,, -education,0,FALSE,education,education,Education,,education,education,,,, -education,1,TRUE,education > education_office,education_office,Education Office,education_office,,,,,, -education,2,FALSE,education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,government_office,education > board_of_education_office,board_of_education_office,,,, -education,2,TRUE,education > education_office > school_district_office,school_district_office,School District Office,school_district_office,education > school_district_office,school_district_office,,,, -education,1,TRUE,education > educational_facility,educational_facility,Educational Facility,educational_facility,,,,,, -education,2,TRUE,education > educational_facility > campus,campus,Campus,campus,,,,,, -education,2,TRUE,education > educational_facility > campus_building,campus_building,Campus Building,campus_building,education > campus_building,campus_building,,,, -education,3,FALSE,education > educational_facility > campus_building > student_union,student_union,Student Union,campus_building,education > student_union,student_union,,,, -education,2,FALSE,education > educational_facility > educational_camp,educational_camp,Educational Camp,educational_facility,education > educational_camp,educational_camp,,,, -education,1,TRUE,education > educational_service,educational_service,Educational Service,educational_service,education > educational_service,educational_service,,,, -education,2,FALSE,education > educational_service > after_school_program,after_school_program,After School Program,educational_service,services_and_business > professional_service > after_school_program,after_school_program,,,, -education,2,FALSE,education > educational_service > archaeological_service,archaeological_service,Archaeological Service,educational_service,education > educational_service > archaeological_service,archaeological_service,,,, -education,2,FALSE,education > educational_service > college_counseling,college_counseling,College Counseling,educational_service,education > college_counseling,college_counseling,,,, -education,2,FALSE,education > educational_service > test_preparation,test_preparation,Test Preparation,educational_service,education > test_preparation,test_preparation,,,, -education,2,TRUE,education > educational_service > tutoring_service,tutoring_service,Tutoring Service,tutoring_service,education > tutoring_center,tutoring_center,,TRUE,, -education,3,FALSE,education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,tutoring_service,education > private_tutor,private_tutor,,,, -education,1,TRUE,education > library,library,Library,library,community_and_government > library,library,,,, -education,1,TRUE,education > place_of_learning,place_of_learning,Place of Learning,place_of_learning,,,TRUE,,, -education,2,TRUE,education > place_of_learning > academy,academy,Academy,academy,,,,,, -education,3,FALSE,education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,academy,education > tutoring_center > civil_examinations_academy,civil_examinations_academy,,,, -education,2,FALSE,education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,place_of_learning,education > adult_education,adult_education,,TRUE,, -education,2,TRUE,education > place_of_learning > class_venue,class_venue,Class Venue,class_venue,,,,,, -education,3,FALSE,education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,class_venue,education > tasting_class,tasting_class,,,, -education,4,FALSE,education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,class_venue,education > tasting_class > cheese_tasting_class,cheese_tasting_class,,,, -education,4,FALSE,education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,class_venue,education > tasting_class > wine_tasting_class,wine_tasting_class,,,, -education,2,TRUE,education > place_of_learning > college_university,college_university,College University,college_university,education > college_university,college_university,,,, -education,3,FALSE,education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,college_university,education > college_university > architecture_school,architecture_school,,,, -education,3,FALSE,education > place_of_learning > college_university > business_school,business_school,Business School,college_university,education > college_university > business_school,business_school,,,, -education,3,FALSE,education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,college_university,education > college_university > engineering_school,engineering_school,,,, -education,3,FALSE,education > place_of_learning > college_university > law_school,law_school,Law School,college_university,education > college_university > law_school,law_school,,,, -education,3,FALSE,education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,college_university,education > college_university > medical_sciences_school,medical_sciences_school,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,college_university,education > college_university > medical_sciences_school > dentistry_school,dentistry_school,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,college_university,education > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,college_university,education > college_university > medical_sciences_school > veterinary_school,veterinary_school,,,, -education,3,FALSE,education > place_of_learning > college_university > science_school,science_school,Science School,college_university,education > college_university > science_school,science_school,,,, -education,2,FALSE,education > place_of_learning > school,school,School,place_of_learning,education > school,school,,,, -education,3,FALSE,education > place_of_learning > school > charter_school,charter_school,Charter School,place_of_learning,education > school > charter_school,charter_school,,,, -education,3,TRUE,education > place_of_learning > school > elementary_school,elementary_school,Elementary School,elementary_school,education > school > elementary_school,elementary_school,,,, -education,3,TRUE,education > place_of_learning > school > high_school,high_school,High School,high_school,education > school > high_school,high_school,,,, -education,3,TRUE,education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,kindergarten,,,,,, -education,3,TRUE,education > place_of_learning > school > middle_school,middle_school,Middle School,middle_school,education > school > middle_school,middle_school,,,, -education,3,FALSE,education > place_of_learning > school > montessori_school,montessori_school,Montessori School,place_of_learning,education > school > montessori_school,montessori_school,,,, -education,3,TRUE,education > place_of_learning > school > preschool,preschool,Preschool,preschool,education > school > preschool,preschool,,,, -education,3,FALSE,education > place_of_learning > school > private_school,private_school,Private School,place_of_learning,education > school > private_school,private_school,,,, -education,3,FALSE,education > place_of_learning > school > public_school,public_school,Public School,place_of_learning,education > school > public_school,public_school,,,, -education,3,FALSE,education > place_of_learning > school > religious_school,religious_school,Religious School,place_of_learning,education > school > religious_school,religious_school,,,, -education,3,FALSE,education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,place_of_learning,education > school > waldorf_school,waldorf_school,,,, -education,2,TRUE,education > place_of_learning > specialty_school,specialty_school,Specialty School,specialty_school,education > specialty_school,specialty_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > art_school,art_school,Art School,specialty_school,education > specialty_school > art_school,art_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,specialty_school,education > specialty_school > bartending_school,bartending_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,specialty_school,education > specialty_school > cheerleading,cheerleading,,,, -education,3,FALSE,education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,specialty_school,education > specialty_school > childbirth_education,childbirth_education,,,, -education,3,FALSE,education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,specialty_school,education > specialty_school > circus_school,circus_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,specialty_school,education > specialty_school > computer_coaching,computer_coaching,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,specialty_school,education > specialty_school > cooking_school,cooking_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,specialty_school,education > specialty_school > cosmetology_school,cosmetology_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,specialty_school,education > specialty_school > cpr_class,cpr_class,,,, -education,3,FALSE,education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,specialty_school,education > specialty_school > drama_school,drama_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,specialty_school,education > specialty_school > driving_school,driving_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,specialty_school,education > specialty_school > dui_school,dui_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,specialty_school,education > specialty_school > firearm_training,firearm_training,,,, -education,3,FALSE,education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,specialty_school,education > specialty_school > first_aid_class,first_aid_class,,,, -education,3,FALSE,education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,specialty_school,education > specialty_school > flight_school,flight_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,specialty_school,education > specialty_school > food_safety_training,food_safety_training,,,, -education,3,FALSE,education > place_of_learning > specialty_school > language_school,language_school,Language School,specialty_school,education > specialty_school > language_school,language_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,specialty_school,education > specialty_school > massage_school,massage_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,specialty_school,education > specialty_school > medical_school,medical_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > music_school,music_school,Music School,specialty_school,education > specialty_school > music_school,music_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,specialty_school,education > specialty_school > nursing_school,nursing_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,specialty_school,education > specialty_school > parenting_class,parenting_class,,,, -education,3,FALSE,education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,specialty_school,education > specialty_school > photography_class,photography_class,,,, -education,3,FALSE,education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,specialty_school,education > specialty_school > speech_training,speech_training,,,, -education,3,FALSE,education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,specialty_school,education > specialty_school > sports_school,sports_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,specialty_school,education > specialty_school > traffic_school,traffic_school,,,, -education,3,FALSE,education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,specialty_school,education > specialty_school > vocational_and_technical_school,vocational_and_technical_school,,,, -education,1,TRUE,education > research_institute,research_institute,Research Institute,research_institute,services_and_business > business_to_business > b2b_science_and_technology > research_institute,research_institute,,,, -education,2,FALSE,education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,research_institute,education > educational_research_institute,educational_research_institute,,,, -education,2,FALSE,education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,research_institute,services_and_business > business_to_business > b2b_medical_support_service > medical_research_and_development,medical_research_and_development,,TRUE,, -food_and_drink,0,FALSE,food_and_drink,food_and_drink,Food and Drink,,food_and_drink,food_and_drink,,,, -food_and_drink,1,TRUE,food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,alcoholic_beverage_venue,,,TRUE,,, -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,bar,food_and_drink > bar,bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,bar,food_and_drink > bar > bar_tabac,bar_tabac,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,bar,food_and_drink > bar > beach_bar,beach_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,bar,food_and_drink > bar > beer_bar,beer_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,bar,food_and_drink > bar > champagne_bar,champagne_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,bar,food_and_drink > bar > cigar_bar,cigar_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,bar,food_and_drink > bar > cocktail_bar,cocktail_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,bar,food_and_drink > bar > dive_bar,dive_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,bar,food_and_drink > bar > drive_thru_bar,drive_thru_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,bar,food_and_drink > bar > gay_bar,gay_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,bar,food_and_drink > bar > hookah_bar,hookah_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,bar,food_and_drink > bar > hotel_bar,hotel_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,bar,food_and_drink > bar > piano_bar,piano_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,bar,food_and_drink > bar > pub,pub,,,, -food_and_drink,4,FALSE,food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,bar,food_and_drink > bar > pub > irish_pub,irish_pub,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,bar,food_and_drink > bar > sake_bar,sake_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,bar,food_and_drink > bar > speakeasy,speakeasy,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,bar,food_and_drink > bar > sports_bar,sports_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,bar,food_and_drink > bar > tiki_bar,tiki_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,bar,food_and_drink > bar > vermouth_bar,vermouth_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,bar,food_and_drink > bar > whiskey_bar,whiskey_bar,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,bar,food_and_drink > bar > wine_bar,wine_bar,,,, -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery > beer_garden,beer_garden,,,, -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,brewery,food_and_drink > brewery_winery_distillery > brewery,brewery,,,, -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > brewery_winery_distillery,brewery_winery_distillery,Brewery Winery Distillery,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery,brewery_winery_distillery,,,TRUE,alcoholic_beverage_venue -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery > cidery,cidery,,,, -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,distillery,food_and_drink > brewery_winery_distillery > distillery,distillery,,,, -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,lounge,food_and_drink > lounge,lounge,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,lounge,food_and_drink > lounge > airport_lounge,airport_lounge,,,, -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,winery,food_and_drink > brewery_winery_distillery > winery,winery,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,winery,food_and_drink > brewery_winery_distillery > winery > wine_tasting_room,wine_tasting_room,,,, -food_and_drink,1,TRUE,food_and_drink > casual_eatery,casual_eatery,Casual Eatery,casual_eatery,food_and_drink > casual_eatery,casual_eatery,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,casual_eatery,food_and_drink > casual_eatery > bagel_shop,bagel_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bakery,bakery,Bakery,casual_eatery,food_and_drink > casual_eatery > bakery,bakery,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,casual_eatery,food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,casual_eatery,food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,casual_eatery,food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,casual_eatery,food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bistro,bistro,Bistro,casual_eatery,food_and_drink > casual_eatery > bistro,bistro,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > cafe,cafe,Cafe,cafe,food_and_drink > casual_eatery > cafe,cafe,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,,,, -food_and_drink,4,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,,,, -food_and_drink,4,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,cafe,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,cafe,food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,casual_eatery,food_and_drink > casual_eatery > candy_store,candy_store,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,casual_eatery,food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,casual_eatery,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,casual_eatery,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > canteen,canteen,Canteen,casual_eatery,food_and_drink > casual_eatery > canteen,canteen,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,casual_eatery,food_and_drink > casual_eatery > delicatessen,delicatessen,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop,dessert_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > diner,diner,Diner,casual_eatery,food_and_drink > casual_eatery > diner,diner,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,fast_food_restaurant,food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,casual_eatery,food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > food_court,food_court,Food Court,food_court,food_and_drink > casual_eatery > food_court,food_court,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > food_stand,food_stand,Food Stand,casual_eatery,food_and_drink > casual_eatery > food_stand,food_stand,,,TRUE,food_truck_stand -food_and_drink,2,TRUE,food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,food_truck_stand,food_and_drink > casual_eatery > food_truck,food_truck,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > friterie,friterie,Friterie,casual_eatery,food_and_drink > casual_eatery > friterie,friterie,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,casual_eatery,food_and_drink > casual_eatery > gastropub,gastropub,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,casual_eatery,food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,casual_eatery,food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,casual_eatery,food_and_drink > casual_eatery > sugar_shack,sugar_shack,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,casual_eatery,food_and_drink > casual_eatery > tapas_bar,tapas_bar,,,, -food_and_drink,1,TRUE,food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,non_alcoholic_beverage_venue,food_and_drink > beverage_shop,beverage_shop,,,, -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > bubble_tea_shop,bubble_tea_shop,,,, -food_and_drink,2,TRUE,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,coffee_shop,food_and_drink > beverage_shop > coffee_shop,coffee_shop,,,, -food_and_drink,3,FALSE,food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,coffee_shop,food_and_drink > beverage_shop > coffee_roastery,coffee_roastery,,,, -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > kombucha_bar,kombucha_bar,,,, -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > milk_bar,milk_bar,,,, -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > milkshake_bar,milkshake_bar,,,, -food_and_drink,2,TRUE,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,smoothie_juice_bar,food_and_drink > beverage_shop > smoothie_juice_bar,smoothie_juice_bar,,,, -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > tea_room,tea_room,,,, -food_and_drink,1,TRUE,food_and_drink > restaurant,restaurant,Restaurant,restaurant,food_and_drink > restaurant,restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant,african_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant,asian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,Hyderabadi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,North Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,restaurant,food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,restaurant,food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,restaurant,food_and_drink > restaurant > cafeteria,cafeteria,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,restaurant,food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,restaurant,food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,restaurant,food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant,european_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,restaurant,food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant,meat_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,restaurant,food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,restaurant,food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,restaurant,food_and_drink > restaurant > salad_bar,salad_bar,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > soul_food,soul_food,Soul Food,restaurant,food_and_drink > restaurant > soul_food,soul_food,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,restaurant,food_and_drink > restaurant > soup_restaurant,soup_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,restaurant,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,Live and Raw Food Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > supper_club,supper_club,Supper Club,restaurant,food_and_drink > restaurant > supper_club,supper_club,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,restaurant,food_and_drink > restaurant > theme_restaurant,theme_restaurant,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,restaurant,food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,,,, -geographic_entities,0,FALSE,geographic_entities,geographic_entities,Geographic Entities,,geographic_entities,geographic_entities,,,, -geographic_entities,1,TRUE,geographic_entities > built_feature,built_feature,Built Feature,built_feature,,,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > bridge,bridge,Bridge,bridge,geographic_entities > bridge,bridge,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > building,building,Building,building,,,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,building,geographic_entities > skyscraper,skyscraper,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > dam,dam,Dam,dam,geographic_entities > dam,dam,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > dam > weir,weir,Weir,dam,geographic_entities > weir,weir,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > dock,dock,Dock,dock,,,TRUE,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > garden,garden,Garden,garden,geographic_entities > garden,garden,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,garden,geographic_entities > garden > botanical_garden,botanical_garden,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,garden,geographic_entities > garden > community_garden,community_garden,,,, -geographic_entities,2,FALSE,geographic_entities > built_feature > lookout,lookout,Lookout,built_feature,geographic_entities > lookout,lookout,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > marina,marina,Marina,marina,travel_and_transportation > watercraft_and_water_transport > waterway > marina,marina,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > pier,pier,Pier,pier,geographic_entities > pier,pier,,,, -geographic_entities,2,FALSE,geographic_entities > built_feature > quay,quay,Quay,built_feature,geographic_entities > quay,quay,,,, -geographic_entities,1,TRUE,geographic_entities > land_feature,land_feature,Land Feature,land_feature,,,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > beach,beach,Beach,beach,geographic_entities > beach,beach,,,, -geographic_entities,3,FALSE,geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,beach,geographic_entities > beach > beach_combing_area,beach_combing_area,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > canyon,canyon,Canyon,canyon,geographic_entities > canyon,canyon,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > cave,cave,Cave,land_feature,geographic_entities > cave,cave,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > crater,crater,Crater,land_feature,geographic_entities > crater,crater,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > desert,desert,Desert,land_feature,geographic_entities > desert,desert,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > forest,forest,Forest,forest,geographic_entities > forest,forest,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,land_feature,geographic_entities > geologic_formation,geologic_formation,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > hill,hill,Hill,hill,,,TRUE,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > island,island,Island,island,geographic_entities > island,island,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > mountain,mountain,Mountain,mountain,geographic_entities > mountain,mountain,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,nature_reserve,geographic_entities > nature_reserve,nature_reserve,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,land_feature,geographic_entities > sand_dune,sand_dune,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > valley,valley,Valley,valley,,,TRUE,,, -geographic_entities,1,TRUE,geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,scenic_viewpoint,,,TRUE,,, -geographic_entities,2,FALSE,geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,scenic_viewpoint,geographic_entities > skyline,skyline,,,, -geographic_entities,2,FALSE,geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,scenic_viewpoint,geographic_entities > stargazing_area,stargazing_area,,,, -geographic_entities,1,TRUE,geographic_entities > water_feature,water_feature,Water Feature,water_feature,,,TRUE,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > canal,canal,Canal,canal,travel_and_transportation > watercraft_and_water_transport > waterway > canal,canal,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,hot_springs,geographic_entities > hot_springs,hot_springs,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > lake,lake,Lake,lake,geographic_entities > lake,lake,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > ocean,ocean,Ocean,ocean,,,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > river,river,River,river,geographic_entities > river,river,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > sea,sea,Sea,sea,,,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > waterfall,waterfall,Waterfall,waterfall,geographic_entities > waterfall,waterfall,,,, -health_care,0,FALSE,health_care,health_care,Health Care,,health_care,health_care,,,, -health_care,1,FALSE,health_care > doctor,doctor,Doctor,outpatient_care_facility,health_care > doctor,doctor,,,TRUE,n/a -health_care,2,FALSE,health_care > doctor > emergency_medicine,emergency_medicine,Emergency Medicine,emergency_or_urgent_care_facility,health_care > doctor > emergency_medicine,emergency_medicine,,,TRUE,emergency_or_urgent_care_facility -health_care,2,FALSE,health_care > doctor > hospitalist,hospitalist,Hospitalist,hospital,health_care > doctor > hospitalist,hospitalist,,,TRUE,hospital -health_care,1,TRUE,health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,emergency_or_urgent_care_facility,,,,,, -health_care,2,FALSE,health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,ambulance_or_ems_service,Ambulance or EMS Service,emergency_or_urgent_care_facility,health_care > ambulance_and_ems_service,ambulance_and_ems_service,,,, -health_care,2,TRUE,health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,emergency_department,health_care > emergency_room,emergency_room,,,, -health_care,2,FALSE,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,urgent_care_center,health_care > urgent_care_clinic,urgent_care_clinic,,,, -health_care,2,TRUE,health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk In Clinic,walk_in_clinic,health_care > medical_center > walk_in_clinic,walk_in_clinic,,,, -health_care,1,TRUE,health_care > hospital,hospital,Hospital,hospital,health_care > hospital,hospital,,,, -health_care,2,TRUE,health_care > hospital > general_hospital,general_hospital,General Hospital,general_hospital,,,TRUE,,, -health_care,2,TRUE,health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,specialty_hospital,,,TRUE,,, -health_care,3,FALSE,health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,specialty_hospital,health_care > childrens_hospital,childrens_hospital,,,, -health_care,3,FALSE,health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,specialty_hospital,,,TRUE,,, -health_care,3,FALSE,health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,specialty_hospital,,,TRUE,,, -health_care,3,FALSE,health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,specialty_hospital,,,TRUE,,, -health_care,3,FALSE,health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,specialty_hospital,,,TRUE,,, -health_care,1,FALSE,health_care > medical_center,medical_center,Medical Center,outpatient_care_facility,health_care > medical_center,medical_center,,,TRUE,outpatient_care_facility -health_care,1,TRUE,health_care > medical_service,medical_service,Medical Service,medical_service,,,TRUE,,, -health_care,2,FALSE,health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,medical_service,health_care > blood_and_plasma_donation_center,blood_and_plasma_donation_center,,,, -health_care,2,FALSE,health_care > medical_service > ems_training,ems_training,EMS Training,medical_service,sports_and_recreation > sports_and_fitness_instruction > ems_training,ems_training,,,, -health_care,2,FALSE,health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,medical_service,health_care > health_insurance_office,health_insurance_office,,,, -health_care,2,FALSE,health_care > medical_service > home_health_care,home_health_care,Home Health Care,medical_service,health_care > personal_care_service > home_health_care,home_health_care,,,, -health_care,2,FALSE,health_care > medical_service > hospice,hospice,Hospice,medical_service,health_care > hospice,hospice,,,, -health_care,2,FALSE,health_care > medical_service > medical_billing,medical_billing,Medical Billing,medical_service,health_care > medical_center > bulk_billing,bulk_billing,,TRUE,, -health_care,2,FALSE,health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,medical_service,,,TRUE,,, -health_care,3,FALSE,health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,medical_service,health_care > cannabis_clinic,cannabis_clinic,,,, -health_care,3,FALSE,health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,medical_service,health_care > cannabis_collective,cannabis_collective,,,, -health_care,3,FALSE,health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,medical_service,health_care > medical_cannabis_referral,medical_cannabis_referral,,,, -health_care,2,FALSE,health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,medical_service,health_care > medical_service_organization,medical_service_organization,,,, -health_care,2,FALSE,health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,medical_service,health_care > medical_transportation,medical_transportation,,,, -health_care,2,FALSE,health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,medical_service,health_care > sperm_clinic,sperm_clinic,,,, -health_care,1,TRUE,health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,outpatient_care_facility,,,TRUE,,, -health_care,2,TRUE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health,counseling_and_mental_health,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service,behavioral_or_crisis_service,Behavioral or Crisis Service,behavioral_or_mental_health_clinic,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > behavior_analysis,behavior_analysis,Behavior Analysis,behavioral_or_mental_health_clinic,health_care > behavior_analyst,behavior_analyst,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,crisis_intervention_service,Crisis Intervention Service,behavioral_or_mental_health_clinic,health_care > abuse_and_addiction_treatment > crisis_intervention_service,crisis_intervention_service,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,stress_management_service,Stress Management Service,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > stress_management_service,stress_management_service,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,suicide_prevention_service,Suicide Prevention Service,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > suicide_prevention_service,suicide_prevention_service,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,behavioral_or_mental_health_clinic,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > family_counselor,family_counselor,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,marriage_or_relationship_counseling,Marriage or Relationship Counseling,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > marriage_or_relationship_counselor,marriage_or_relationship_counselor,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sex_therapist,sex_therapist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service,psychiatry_or_psychology_service,Psychiatry or Psychology Service,behavioral_or_mental_health_clinic,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > psychiatrist,psychiatrist,,TRUE,, -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,child_psychiatry,Child Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > psychiatrist > child_psychiatrist,child_psychiatrist,,TRUE,, -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,geriatric_psychiatry,Geriatric Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > geriatric_medicine > geriatric_psychiatry,geriatric_psychiatry,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychoanalyst,psychoanalyst,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychologist,psychologist,,,, -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,sports_psychology,Sports Psychology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sports_psychologist,sports_psychologist,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychotherapist,psychotherapist,,TRUE,, -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > art_therapy,art_therapy,Art Therapy,behavioral_or_mental_health_clinic,,,TRUE,,, -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > hypnotherapy,hypnotherapy,Hypnotherapy,behavioral_or_mental_health_clinic,health_care > hypnotherapy,hypnotherapy,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sophrologist,sophrologist,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,complementary_and_alternative_medicine,health_care > alternative_medicine,alternative_medicine,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,complementary_and_alternative_medicine,health_care > acupuncture,acupuncture,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,complementary_and_alternative_medicine,lifestyle_services > aromatherapy,aromatherapy,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,complementary_and_alternative_medicine,health_care > ayurveda,ayurveda,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,complementary_and_alternative_medicine,health_care > chiropractor,chiropractor,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,complementary_and_alternative_medicine,health_care > doctor > homeopathic_medicine,homeopathic_medicine,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,complementary_and_alternative_medicine,health_care > doctor > naturopathic_holistic,naturopathic_holistic,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,complementary_and_alternative_medicine,health_care > reflexology,reflexology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,complementary_and_alternative_medicine,health_care > reiki,reiki,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,complementary_and_alternative_medicine,health_care > traditional_chinese_medicine,traditional_chinese_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,complementary_and_alternative_medicine,health_care > traditional_chinese_medicine > tui_na,tui_na,,,, -health_care,2,TRUE,health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,dental_clinic,health_care > dentist,dentist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,dental_clinic,health_care > dentist > cosmetic_dentist,cosmetic_dentist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,dental_clinic,health_care > dental_hygienist,dental_hygienist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,dental_clinic,health_care > dentist > endodontist,endodontist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,dental_clinic,health_care > dentist > general_dentistry,general_dentistry,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,dental_clinic,health_care > dentist > orthodontist,orthodontist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,dental_clinic,health_care > dentist > pediatric_dentist,pediatric_dentist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,dental_clinic,health_care > dentist > periodontist,periodontist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,dental_clinic,health_care > prosthodontist,prosthodontist,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,diagnostics_imaging_or_lab_service,,,TRUE,,, -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,diagnostics_imaging_or_lab_service,health_care > diagnostic_service > diagnostic_imaging,diagnostic_imaging,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,ultrasound_imaging,Ultrasound Imaging,diagnostics_imaging_or_lab_service,health_care > ultrasound_imaging_center,ultrasound_imaging_center,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,diagnostics_imaging_or_lab_service,health_care > diagnostic_service,diagnostic_service,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,diagnostics_imaging_or_lab_service,health_care > diagnostic_service > laboratory_testing,laboratory_testing,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,paternity_testing,Paternity Testing,diagnostics_imaging_or_lab_service,health_care > paternity_tests_and_service,paternity_tests_and_service,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,diagnostics_imaging_or_lab_service,health_care > doctor > pathologist,pathologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,diagnostics_imaging_or_lab_service,health_care > doctor > radiologist,radiologist,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,pediatric_clinic,health_care > doctor > pediatrician,pediatrician,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,pediatric_clinic,,,TRUE,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_anesthesiology,pediatric_anesthesiology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_cardiology,pediatric_cardiology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_endocrinology,pediatric_endocrinology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_gastroenterology,pediatric_gastroenterology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,pediatric_clinic,health_care > doctor > pediatrician > pediatric_infectious_disease,pediatric_infectious_disease,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_nephrology,pediatric_nephrology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_neurology,pediatric_neurology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_oncology,pediatric_oncology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_pulmonology,pediatric_pulmonology,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_radiology,pediatric_radiology,,,, -health_care,2,TRUE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,physical_medicine_and_rehabilitation,,,TRUE,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,physical_medicine_and_rehabilitation,health_care > animal_assisted_therapy,animal_assisted_therapy,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,physical_medicine_and_rehabilitation,health_care > occupational_therapy,occupational_therapy,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,physical_medicine_and_rehabilitation,health_care > orthotics,orthotics,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,physical_medicine_and_rehabilitation,health_care > physical_therapy,physical_therapy,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,physical_medicine_and_rehabilitation,health_care > prosthetics,prosthetics,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,physical_medicine_and_rehabilitation,health_care > psychomotor_therapist,psychomotor_therapist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,physical_medicine_and_rehabilitation,health_care > rehabilitation_center,rehabilitation_center,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,Addiction Rehabilitation Center,physical_medicine_and_rehabilitation,health_care > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,physical_medicine_and_rehabilitation,health_care > speech_therapist,speech_therapist,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > primary_care_or_general_clinic,primary_care_or_general_clinic,Primary Care or General Clinic,primary_care_or_general_clinic,,,TRUE,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > community_health_center,community_health_center,Community Health Center,primary_care_or_general_clinic,health_care > community_health_center,community_health_center,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,primary_care_or_general_clinic,health_care > concierge_medicine,concierge_medicine,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,primary_care_or_general_clinic,health_care > doctor > family_practice,family_practice,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,primary_care_or_general_clinic,health_care > dental_hygienist > mobile_clinic,mobile_clinic,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,public_health_clinic,Public Health Clinic,primary_care_or_general_clinic,health_care > public_health_clinic,public_health_clinic,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,primary_care_or_general_clinic,health_care > dental_hygienist > storefront_clinic,storefront_clinic,,,, -health_care,2,TRUE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,reproductive_perinatal_and womens_care,health_care > womens_health_clinic,womens_health_clinic,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,reproductive_perinatal_and womens_care,health_care > doula,doula,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,reproductive_perinatal_and womens_care,health_care > lactation_service,lactation_service,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,reproductive_perinatal_and womens_care,health_care > maternity_center,maternity_center,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,reproductive_perinatal_and womens_care,health_care > midwife,midwife,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,obstetrics_and_gynecology,Obstetrics and Gynecology,reproductive_perinatal_and womens_care,health_care > doctor > obstetrician_and_gynecologist,obstetrician_and_gynecologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,prenatal_and_perinatal_care,Prenatal and Perinatal Care,reproductive_perinatal_and womens_care,health_care > prenatal_perinatal_care,prenatal_perinatal_care,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,specialized_health_care,,,TRUE,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine,cardiovascular_and_vascular_medicine,Cardiovascular and Vascular Medicine,specialized_health_care,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,specialized_health_care,health_care > doctor > cardiologist,cardiologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,specialized_health_care,health_care > doctor > phlebologist,phlebologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,specialized_health_care,health_care > doctor > vascular_medicine,vascular_medicine,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,ear_nose_and_throat,Ear Nose and Throat,specialized_health_care,health_care > doctor > ear_nose_and_throat,ear_nose_and_throat,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,specialized_health_care,health_care > doctor > audiologist,audiologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,specialized_health_care,,,TRUE,,, -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,specialized_health_care,health_care > doctor > neurotologist,neurotologist,,TRUE,, -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,specialized_health_care,health_care > doctor > otologist,otologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,specialized_health_care,health_care > doctor > endocrinologist,endocrinologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,specialized_health_care,health_care > doctor > gastroenterologist,gastroenterologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,specialized_health_care,health_care > doctor > endoscopist,endoscopist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,specialized_health_care,health_care > doctor > hepatologist,hepatologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,specialized_health_care,health_care > doctor > proctologist,proctologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,specialized_health_care,health_care > doctor > geneticist,geneticist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,specialized_health_care,health_care > doctor > gerontologist,gerontologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,specialized_health_care,health_care > doctor > geriatric_medicine,geriatric_medicine,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,specialized_health_care,health_care > doctor > internal_medicine,internal_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,specialized_health_care,health_care > doctor > allergist,allergist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,specialized_health_care,health_care > doctor > infectious_disease_specialist,infectious_disease_specialist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,specialized_health_care,health_care > doctor > tropical_medicine,tropical_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,specialized_health_care,health_care > doctor > oncologist,oncologist,,,, -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,specialized_health_care,health_care > doctor > internal_medicine > hematology,hematology,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,specialized_health_care,health_care > doctor > rheumatologist,rheumatologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > lice_treatment,lice_treatment,Lice Treatment,specialized_health_care,health_care > lice_treatment,lice_treatment,,,TRUE,specialized_health_care -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,specialized_health_care,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,specialized_health_care,health_care > aesthetician,aesthetician,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,specialized_health_care,health_care > body_contouring,body_contouring,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,specialized_health_care,health_care > doctor > dermatologist,dermatologist,,TRUE,, -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,specialized_health_care,health_care > doctor > immunodermatologist,immunodermatologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,specialized_health_care,health_care > doctor > tattoo_removal,tattoo_removal,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,specialized_health_care,,,TRUE,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,specialized_health_care,health_care > doctor > orthopedist,orthopedist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,specialized_health_care,health_care > podiatry,podiatry,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,specialized_health_care,health_care > doctor > nephrologist,nephrologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,specialized_health_care,health_care > doctor > neurologist,neurologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,specialized_health_care,health_care > doctor > neuropathologist,neuropathologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,specialized_health_care,health_care > skilled_nursing,skilled_nursing,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > nursing > nurse_practitioner,nurse_practitioner,Nurse Practitioner,specialized_health_care,health_care > nurse_practitioner,nurse_practitioner,,,TRUE,nursing -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > osteopath,osteopath,Osteopath,specialized_health_care,health_care > medical_center > osteopath,osteopath,,,TRUE,osteopathic_medicine -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,specialized_health_care,health_care > doctor > osteopathic_physician,osteopathic_physician,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,specialized_health_care,health_care > doctor > pain_management,pain_management,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,specialized_health_care,health_care > doctor > anesthesiologist,anesthesiologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > physician_assistant,physician_assistant,Physician Assistant,specialized_health_care,health_care > doctor > physician_assistant,physician_assistant,,,TRUE,specialized_health_care -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > podiatrist,podiatrist,Podiatrist,specialized_health_care,health_care > doctor > podiatrist,podiatrist,,,TRUE,podiatry -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,specialized_health_care,health_care > doctor > preventive_medicine,preventive_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,specialized_health_care,health_care > environmental_medicine,environmental_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,specialized_health_care,health_care > doctor > undersea_hyperbaric_medicine,undersea_hyperbaric_medicine,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,specialized_health_care,health_care > occupational_medicine,occupational_medicine,,,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,specialized_health_care,health_care > doctor > toxicologist,toxicologist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,specialized_health_care,health_care > doctor > pulmonologist,pulmonologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,specialized_health_care,health_care > sleep_specialist,sleep_specialist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,specialized_health_care,health_care > doctor > sports_medicine,sports_medicine,,,, -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,specialized_health_care,health_care > doctor > urologist,urologist,,TRUE,, -health_care,2,TRUE,health_care > outpatient_care_facility > vision_or_eye_care_clinic,vision_or_eye_care_clinic,Vision or Eye Care Clinic,vision_or_eye_care_clinic,health_care > eye_care_clinic,eye_care_clinic,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,vision_or_eye_care_clinic,health_care > doctor > ophthalmologist,ophthalmologist,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,refractive_surgery_or_lasik,Refractive Surgery or Lasik,vision_or_eye_care_clinic,health_care > laser_eye_surgery_lasik,laser_eye_surgery_lasik,,TRUE,, -health_care,4,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,vision_or_eye_care_clinic,health_care > doctor > ophthalmologist > retina_specialist,retina_specialist,,TRUE,, -health_care,3,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,vision_or_eye_care_clinic,health_care > optometrist,optometrist,,TRUE,, -health_care,1,TRUE,health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,specialized_medical_facility,,,TRUE,,, -health_care,2,FALSE,health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,specialized_medical_facility,health_care > abortion_clinic,abortion_clinic,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center,specialized_medical_facility,health_care > abuse_and_addiction_treatment,abuse_and_addiction_treatment,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center > alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,Alcohol and Drug Treatment Center,specialized_medical_facility,health_care > alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,specialized_medical_facility,health_care > cancer_treatment_center,cancer_treatment_center,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,specialized_medical_facility,health_care > dialysis_clinic,dialysis_clinic,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,specialized_medical_facility,health_care > abuse_and_addiction_treatment > eating_disorder_treatment_center,eating_disorder_treatment_center,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,specialized_medical_facility,health_care > doctor > fertility_clinic,fertility_clinic,,,, -health_care,2,FALSE,health_care > specialized_medical_facility > organ_and_tissue_donor_service,organ_and_tissue_donor_service,Organ and Tissue Donor Service,specialized_medical_facility,health_care > organ_and_tissue_donor_service,organ_and_tissue_donor_service,,,, -health_care,2,TRUE,health_care > specialized_medical_facility > surgery,surgery,Surgery,surgery,health_care > doctor > surgeon,surgeon,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,surgery,health_care > doctor > surgeon > cardiovascular_and_thoracic_surgeon,cardiovascular_and_thoracic_surgeon,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,surgery,health_care > dentist > oral_surgeon,oral_surgeon,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,surgery,,,TRUE,,, -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,surgery,health_care > doctor > pediatrician > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,,,, -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,surgery,health_care > doctor > spine_surgeon,spine_surgeon,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,surgery,health_care > doctor > pediatrician > pediatric_surgery,pediatric_surgery,,,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,surgery,health_care > doctor > plastic_surgeon,plastic_surgeon,,TRUE,, -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,surgery,health_care > doctor > cosmetic_surgeon,cosmetic_surgeon,,TRUE,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,surgery,health_care > surgical_center,surgical_center,,TRUE,, -lifestyle_services,0,FALSE,lifestyle_services,lifestyle_services,Lifestyle Services,,lifestyle_services,lifestyle_services,,,, -lifestyle_services,1,TRUE,lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,animal_or_pet_service,,,TRUE,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue,adoption_and_rescue,,TRUE,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_rescue_service,animal_rescue_service,Animal Rescue Service,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > animal_rescue_service,animal_rescue_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > animal_shelter,animal_shelter,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > pet_adoption,pet_adoption,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,animal_or_pet_service,lifestyle_services > pets > equine_service,equine_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,animal_or_pet_service,lifestyle_services > pets > equine_service > farrier_service,farrier_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,animal_or_pet_service,lifestyle_services > pets > equine_service > horse_boarding,horse_boarding,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,animal_or_pet_service,lifestyle_services > pets > equine_service > horse_trainer,horse_trainer,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,animal_or_pet_service,lifestyle_services > pets > pet_breeder,pet_breeder,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,animal_or_pet_service,lifestyle_services > pets > pet_care_service,pet_care_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,animal_or_pet_service,lifestyle_services > pets > pet_care_service > aquarium_service,aquarium_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,animal_or_pet_service,lifestyle_services > pets > pet_care_service > dog_walker,dog_walker,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_boarding,pet_boarding,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_groomer,pet_groomer,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_sitting,pet_sitting,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_training,pet_training,,,, -lifestyle_services,4,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_training > dog_trainer,dog_trainer,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_transportation,pet_transportation,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_waste_removal,pet_waste_removal,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service,animal_or_pet_service,lifestyle_services > pets > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,animal_or_pet_service,lifestyle_services > pets > pet_insurance,pet_insurance,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,animal_or_pet_service,lifestyle_services > pets > pet_photography,pet_photography,,,, -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pets,pets,Pets,animal_or_pet_service,lifestyle_services > pets,pets,,,TRUE,animal_or_pet_service -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,animal_or_pet_service,lifestyle_services > pets > veterinary_care,veterinary_care,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,animal_or_pet_service,lifestyle_services > pets > veterinary_care > animal_hospital,animal_hospital,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,animal_or_pet_service,lifestyle_services > pets > veterinary_care > animal_physical_therapy,animal_physical_therapy,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,animal_or_pet_service,lifestyle_services > pets > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,animal_or_pet_service,lifestyle_services > pets > veterinary_care > holistic_animal_care,holistic_animal_care,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,animal_or_pet_service,lifestyle_services > pets > veterinary_care > pet_hospice,pet_hospice,,,, -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,animal_or_pet_service,lifestyle_services > pets > veterinary_care > veterinarian,veterinarian,,,, -lifestyle_services,1,TRUE,lifestyle_services > food_service,food_service,Food Service,food_service,,,,,, -lifestyle_services,2,FALSE,lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,food_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > food_consultant,food_consultant,,,, -lifestyle_services,2,FALSE,lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,food_service,shopping > food_and_beverage_store > food_delivery_service,food_delivery_service,,,, -lifestyle_services,1,FALSE,lifestyle_services > personal_care_service,personal_care_service,Personal Care Service,personal_or_beauty_service,health_care > personal_care_service,personal_care_service,,,TRUE,personal_or_beauty_service -lifestyle_services,1,TRUE,lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,personal_or_beauty_service,lifestyle_services > beauty_service,beauty_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,personal_or_beauty_service,lifestyle_services > beauty_service > acne_treatment,acne_treatment,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > barber,barber,Barber,personal_or_beauty_service,lifestyle_services > beauty_service > barber,barber,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,personal_or_beauty_service,lifestyle_services > beauty_service > barber > mens_grooming_salon,mens_grooming_salon,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,personal_or_beauty_service,lifestyle_services > beauty_service > beauty_salon,beauty_salon,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,personal_or_beauty_service,lifestyle_services > beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,personal_or_beauty_service,lifestyle_services > body_modification,body_modification,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,personal_or_beauty_service,lifestyle_services > body_modification > body_art,body_art,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,personal_or_beauty_service,lifestyle_services > body_modification > mehndi_henna,mehndi_henna,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,personal_or_beauty_service,lifestyle_services > body_modification > scalp_micropigmentation,scalp_micropigmentation,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing,tattoo_and_piercing,,,, -lifestyle_services,4,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing > piercing,piercing,,,, -lifestyle_services,4,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing > tattoo,tattoo,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,personal_or_beauty_service,lifestyle_services > beauty_service > eyebrow_service,eyebrow_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,personal_or_beauty_service,lifestyle_services > beauty_service > eyelash_service,eyelash_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,personal_or_beauty_service,lifestyle_services > beauty_service > foot_care,foot_care,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal,hair_removal,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > sugaring,sugaring,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > threading_service,threading_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > waxing,waxing,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement,hair_replacement,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > hair_extensions,hair_extensions,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > hair_loss_center,hair_loss_center,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon,hair_salon,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,Blow Dry Blow Out Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > hair_color_bar,hair_color_bar,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > hair_stylist,hair_stylist,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,personal_or_beauty_service,lifestyle_services > beauty_service > image_consultant,image_consultant,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,personal_or_beauty_service,services_and_business > professional_service > life_coach,life_coach,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,personal_or_beauty_service,services_and_business > professional_service > matchmaker,matchmaker,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,personal_or_beauty_service,lifestyle_services > beauty_service > nail_salon,nail_salon,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup,skin_care_and_makeup,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > esthetician,esthetician,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon,tanning_salon,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon > spray_tanning,spray_tanning,,,, -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon > tanning_bed,tanning_bed,,,, -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,personal_or_beauty_service,lifestyle_services > beauty_service > teeth_whitening,teeth_whitening,,,, -lifestyle_services,1,TRUE,lifestyle_services > wellness_service,wellness_service,Wellness Service,wellness_service,health_care > wellness_program,wellness_program,,TRUE,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,wellness_service,health_care > colonics,colonics,,TRUE,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,wellness_service,health_care > cryotherapy,cryotherapy,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > dietitian,dietitian,Dietitian,wellness_service,health_care > dietitian,dietitian,,,TRUE,nutrition_service -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,wellness_service,health_care > halotherapy,halotherapy,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,wellness_service,health_care > health_and_wellness_club,health_and_wellness_club,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,wellness_service,health_care > health_consultant_coach,health_consultant_coach,,TRUE,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,wellness_service,health_care > hydrotherapy,hydrotherapy,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,wellness_service,health_care > iv_hydration,iv_hydration,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,wellness_service,health_care > massage_therapy,massage_therapy,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,wellness_service,sports_and_recreation > sports_and_fitness_instruction > meditation_center,meditation_center,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,wellness_service,health_care > nutritionist,nutritionist,,TRUE,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,wellness_service,health_care > oxygen_bar,oxygen_bar,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,wellness_service,lifestyle_services > public_bath_house,public_bath_house,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,wellness_service,lifestyle_services > public_bath_house > onsen,onsen,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,wellness_service,lifestyle_services > public_bath_house > turkish_bath,turkish_bath,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > sauna,sauna,Sauna,wellness_service,health_care > sauna,sauna,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > spa,spa,Spa,wellness_service,lifestyle_services > spa,spa,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,wellness_service,lifestyle_services > spa > day_spa,day_spa,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,wellness_service,health_care > float_spa,float_spa,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,wellness_service,lifestyle_services > spa > health_spa,health_spa,,,, -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,wellness_service,lifestyle_services > spa > medical_spa,medical_spa,,,, -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,wellness_service,health_care > weight_loss_center,weight_loss_center,,,, -lodging,0,TRUE,lodging,lodging,Lodging,lodging,lodging,lodging,,,, -lodging,1,TRUE,lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,bed_and_breakfast,lodging > bed_and_breakfast,bed_and_breakfast,,,, -lodging,1,FALSE,lodging > cabin,cabin,Cabin,lodging,lodging > cabin,cabin,,,, -lodging,1,TRUE,lodging > campground,campground,Campground,campground,lodging > campground,campground,,,, -lodging,1,FALSE,lodging > cottage,cottage,Cottage,lodging,lodging > cottage,cottage,,,, -lodging,1,FALSE,lodging > country_house,country_house,Country House,lodging,lodging > country_house,country_house,,,, -lodging,1,FALSE,lodging > holiday_park,holiday_park,Holiday Park,lodging,services_and_business > real_estate > holiday_park,holiday_park,,,, -lodging,1,FALSE,lodging > hostel,hostel,Hostel,lodging,lodging > hostel,hostel,,,, -lodging,1,TRUE,lodging > hotel,hotel,Hotel,hotel,lodging > hotel,hotel,,,, -lodging,2,FALSE,lodging > hotel > motel,motel,Motel,hotel,lodging > hotel > motel,motel,,,, -lodging,1,FALSE,lodging > houseboat,houseboat,Houseboat,lodging,lodging > houseboat,houseboat,,,, -lodging,1,TRUE,lodging > inn,inn,Inn,inn,lodging > inn,inn,,,, -lodging,1,FALSE,lodging > lodge,lodge,Lodge,lodging,lodging > lodge,lodge,,,, -lodging,1,FALSE,lodging > mountain_hut,mountain_hut,Mountain Hut,lodging,lodging > mountain_hut,mountain_hut,,,, -lodging,1,TRUE,lodging > private_lodging,private_lodging,Private Lodging,private_lodging,,,TRUE,,, -lodging,2,FALSE,lodging > private_lodging > guest_house,guest_house,Guest House,private_lodging,lodging > guest_house,guest_house,,,, -lodging,2,FALSE,lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,private_lodging,lodging > holiday_rental_home,holiday_rental_home,,,, -lodging,1,TRUE,lodging > resort,resort,Resort,resort,lodging > resort,resort,,,, -lodging,2,FALSE,lodging > resort > beach_resort,beach_resort,Beach Resort,resort,lodging > resort > beach_resort,beach_resort,,,, -lodging,2,FALSE,lodging > resort > ski_resort,ski_resort,Ski Resort,resort,lodging > ski_resort,ski_resort,,,, -lodging,1,FALSE,lodging > retreat,retreat,Retreat,lodging,,,TRUE,,, -lodging,2,FALSE,lodging > retreat > health_retreat,health_retreat,Health Retreat,lodging,lodging > health_retreat,health_retreat,,,, -lodging,1,TRUE,lodging > rv_park,rv_park,RV Park,rv_park,lodging > rv_park,rv_park,,,, -lodging,1,FALSE,lodging > ryokan,ryokan,Ryokan,inn,lodging > ryokan,ryokan,,,, -lodging,1,FALSE,lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,lodging,lodging > self_catering_accommodation,self_catering_accommodation,,,, -lodging,1,FALSE,lodging > service_apartment,service_apartment,Service Apartment,lodging,lodging > service_apartment,service_apartment,,,, -services_and_business,2,FALSE,arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,gaming_venue,services_and_business > professional_service > lottery_ticket,lottery_ticket,,TRUE,, -services_and_business,2,FALSE,arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,spiritual_advising,services_and_business > professional_service > fortune_telling_service,fortune_telling_service,,TRUE,, -services_and_business,2,FALSE,community_and_government > public_utility > septic_service,septic_service,Septic Service,public_utility,services_and_business > professional_service > septic_service,septic_service,,,, -services_and_business,2,FALSE,lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,personal_or_beauty_service,services_and_business > professional_service > shoe_repair,shoe_repair,,,, -services_and_business,2,FALSE,lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,personal_or_beauty_service,services_and_business > professional_service > shoe_shining_service,shoe_shining_service,,,, -services_and_business,2,FALSE,lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,wellness_service,services_and_business > professional_service > snuggle_service,snuggle_service,,,, -services_and_business,0,FALSE,services_and_business,services_and_business,Services and Business,,services_and_business,services_and_business,,,, -services_and_business,1,TRUE,services_and_business > agricultural_service,agricultural_service,Agricultural Service,agricultural_service,services_and_business > agricultural_service,agricultural_service,,,, -services_and_business,2,FALSE,services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,agricultural_service,community_and_government > organization > agriculture_association,agriculture_association,,,, -services_and_business,2,TRUE,services_and_business > agricultural_service > farm,farm,Farm,farm,services_and_business > agricultural_service > farm,farm,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,farm,services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > orchard,orchard,Orchard,farm,services_and_business > agricultural_service > farm > orchard,orchard,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,farm,services_and_business > agricultural_service > farm > pig_farm,pig_farm,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,farm,services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > ranch,ranch,Ranch,farm,services_and_business > agricultural_service > farm > ranch,ranch,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,farm,services_and_business > agricultural_service > farm > urban_farm,urban_farm,,,, -services_and_business,2,FALSE,services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,agricultural_service,services_and_business > professional_service > farm_equipment_repair_service,farm_equipment_repair_service,,,, -services_and_business,1,TRUE,services_and_business > b2b_service,b2b_service,B2B Service,b2b_service,services_and_business > business_to_business > business_to_business_service,business_to_business_service,,TRUE,, -services_and_business,2,FALSE,services_and_business > b2b_service > agricultural_production,agricultural_production,Agricultural Production,b2b_service,services_and_business > business_to_business > business_to_business_service > agricultural_production,agricultural_production,,,TRUE,b2b_agricultural_service -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_agriculture_service,b2b_agricultural_service,B2B Agricultural Service,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food,b2b_agriculture_and_food,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > agricultural_cooperative,agricultural_cooperative,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > agriculture,agriculture,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > apiary_beekeeper,apiary_beekeeper,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_dairy,b2b_dairy,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming,b2b_farming,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farm,b2b_farm,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,Farm Equipment and Supply,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,,,, -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,,,, -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,,,, -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farming_service,farming_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_food_products,b2b_food_products,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production,crops_production,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > grain_production,grain_production,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > orchards_production,orchards_production,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery,fish_farm_hatchery,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery > fish_farm,fish_farm,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_breeder,livestock_breeder,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_dealer,livestock_dealer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > poultry_farming,poultry_farming,,,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining,b2b_energy_and_mining,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining,mining,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_coal_and_coke,b2b_coal_and_coke,B2B Coal and Coke,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining > coal_and_coke,coal_and_coke,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,b2b_quarry,B2B Quarry,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining > quarry,quarry,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,b2b_oil_and_gas,B2B Oil and Gas,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas,oil_and_gas,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_equipment,b2b_oil_and_gas_equipment,B2B Oil and Gas Equipment,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_equipment,oil_and_gas_equipment,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_exploration_and_development,b2b_oil_and_gas_exploration_and_development,B2B Oil and Gas Exploration and Development,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_exploration_and_development,oil_and_gas_exploration_and_development,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_extraction,b2b_oil_and_gas_extraction,B2B Oil and Gas Extraction,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_extraction,oil_and_gas_extraction,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,b2b_oil_refinery,B2B Oil Refinery,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_refinery,oil_refinery,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_power_plants_and_power_plant_service,b2b_power_plants_and_power_plant_service,B2B Power Plants and Power Plant Service,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > power_plants_and_power_plant_service,power_plants_and_power_plant_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,energy_management_service,Energy Management Service,b2b_energy_and_utility_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > energy_management_and_conservation_consultant,energy_management_and_conservation_consultant,,TRUE,, -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,b2b_service,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > water_treatment_equipment_and_service,water_treatment_equipment_and_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > geological_service,geological_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor,logging_contractor,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_equipment_and_supplies,logging_equipment_and_supplies,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_service,logging_service,,,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,b2b_industrial_and_machine_service,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > automation_service,automation_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,B2B Equipment Maintenance and Repair,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,casting_molding_service,Casting Molding Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > casting_molding_and_machining,casting_molding_and_machining,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > chemical_plant,chemical_plant,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,inventory_control_service,Inventory Control Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > inventory_control_service,inventory_control_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,laser_cutting_service,Laser Cutting Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_to_business_service > laser_cutting_service_provider,laser_cutting_service_provider,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,metal_plating_service,Metal Plating Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_plating_service,metal_plating_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > occupational_safety,occupational_safety,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,plastic_injection_molding_service,Plastic Injection Molding Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > plastic_injection_molding_workshop,plastic_injection_molding_workshop,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > scrap_metals,scrap_metals,Scrap Metals,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > metals > scrap_metals,scrap_metals,,,TRUE,b2b_industrial_and_machine_service -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > turnery,turnery,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,b2b_service,services_and_business > business_to_business > business_to_business_service > audio_visual_production_and_design,audio_visual_production_and_design,,TRUE,, -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,b2b_service,services_and_business > business_to_business > b2b_medical_support_service,b2b_medical_support_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > clinical_lab,clinical_lab,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > dental_lab,dental_lab,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_hospital_equipment_and_supplies,b2b_hospital_equipment_and_supplies,B2B Hospital Equipment and Supplies,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > hospital_equipment_and_supplies,hospital_equipment_and_supplies,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_surgical_appliances_and_supplies,b2b_surgical_appliances_and_supplies,B2B Surgical Appliances and Supplies,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > surgical_appliances_and_supplies,surgical_appliances_and_supplies,,TRUE,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,b2b_office_and_professional_service,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service,b2b_advertising_and_marketing_service,B2B Advertising and Marketing Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising,business_advertising,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_direct_mail_advertising,b2b_direct_mail_advertising,B2B Direct Mail Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > direct_mail_advertising,direct_mail_advertising,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_marketing_consultant,b2b_marketing_consultant,B2B Marketing Consultant,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > marketing_consultant,marketing_consultant,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_newspaper_advertising,b2b_newspaper_advertising,B2B Newspaper Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > newspaper_advertising,newspaper_advertising,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_outdoor_advertising,b2b_outdoor_advertising,B2B Outdoor Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > outdoor_advertising,outdoor_advertising,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_promotional_products_and_services,b2b_promotional_products_and_services,B2B Promotional Products and Services,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > promotional_products_and_services,promotional_products_and_services,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_publicity_service,b2b_publicity_service,B2B Publicity Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > publicity_service,publicity_service,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_radio_and_television_commercials,b2b_radio_and_television_commercials,B2B Radio and Television Commercials,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > radio_and_television_commercials,radio_and_television_commercials,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_signage_service,b2b_signage_service,B2B Signage Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > business_signage,business_signage,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_telemarketing_service,b2b_telemarketing_service,B2B Telemarketing Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > telemarketing_service,telemarketing_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,b2b_background_check_service,B2B Background Check Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > human_resource_service > background_check_service,background_check_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,b2b_business_management_service,B2B Business Management Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service,business_management_service,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_executive_search_consultants,b2b_executive_search_consultants,B2B Executive Search Consultants,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service > executive_search_consultants,executive_search_consultants,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,b2b_secretarial_service,B2B Secretarial Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service > secretarial_service,secretarial_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,b2b_domestic_trade_service,B2B Domestic Trade Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > domestic_business_and_trade_organization,domestic_business_and_trade_organization,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,b2b_human_resource_service,B2B Human Resource Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > human_resource_service,human_resource_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,b2b_international_trade_service,B2B International Trade Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > international_business_and_trade_service,international_business_and_trade_service,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,b2b_records_storage_service,B2B Records Storage Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_records_storage_and_management,business_records_storage_and_management,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > restaurant_management,restaurant_management,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > transcription_service,transcription_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,translating_and_interpreting_service,Translating and Interpreting Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > translating_and_interpreting_service,translating_and_interpreting_service,,,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_science_and_technology_service,b2b_science_and_technology_service,B2B Science and Technology Service,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology,b2b_science_and_technology,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,b2b_scientific_equipment,B2B Scientific Equipment,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology > b2b_scientific_equipment,b2b_scientific_equipment,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,b2b_scientific_lab,B2B Scientific Lab,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology > scientific_lab,scientific_lab,,TRUE,, -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B telecommunications Service,b2b_service,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,b2b_service,services_and_business > business_to_business > business_to_business_service > tower_communication_service,tower_communication_service,,,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation,business_storage_and_transportation,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage,b2b_storage,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse,warehouse,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse_rental_service_yard,warehouse_rental_service_yard,Warehouse Rental Service Yard,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse_rental_service_yard,warehouse_rental_service_yard,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,freight_and_cargo_service,Freight and Cargo Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service,freight_and_cargo_service,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,distribution_service,Distribution Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_service,distribution_service,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,Freight Forwarding Agency,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,motor_freight_trucking,Motor Freight Trucking,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > motor_freight_trucking,motor_freight_trucking,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > pipeline_transportation,pipeline_transportation,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > railroad_freight,railroad_freight,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services,truck_and_industrial_vehicle_services,Truck and Industrial Vehicle Services,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services,truck_and_industrial_vehicle_services,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,Tractor Dealer,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > truck_parts_and_accessories,truck_parts_and_accessories,Truck Parts and Accessories,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > truck_parts_and_accessories,truck_parts_and_accessories,,,, -services_and_business,2,FALSE,services_and_business > b2b_service > business_equipment_and_supply,business_equipment_and_supply,Business Equipment and Supply,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply,business_equipment_and_supply,,,TRUE,supplier_or_distributor -services_and_business,2,FALSE,services_and_business > b2b_service > business_manufacturing_and_supply,business_manufacturing_and_supply,Business Manufacturing and Supply,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply,business_manufacturing_and_supply,,,TRUE,manufacturer -services_and_business,2,FALSE,services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial,commercial_industrial,,,,b2b_industrial_and_machine_service -services_and_business,2,FALSE,services_and_business > b2b_service > consultant_and_general_service,consultant_and_general_service,Consultant and General Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service,consultant_and_general_service,,,TRUE,b2b_service -services_and_business,2,FALSE,services_and_business > b2b_service > energy_equipment_and_solution,energy_equipment_and_solution,Energy Equipment and Solution,b2b_energy_and_utility_service,services_and_business > business_to_business > business_equipment_and_supply > energy_equipment_and_solution,energy_equipment_and_solution,,,TRUE,b2b_energy_and_utility_service -services_and_business,2,TRUE,services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer,manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_apparel,b2b_apparel,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > shoe_factory,shoe_factory,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > appliance_manufacturer,appliance_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > b2b_furniture_and_housewares,b2b_furniture_and_housewares,B2B Furniture and Housewares,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares,b2b_furniture_and_housewares,,,TRUE,furniture_manufacturer -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > b2b_jeweler,b2b_jeweler,B2B Jeweler,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_jeweler,b2b_jeweler,,,TRUE,jewelry_and_watches_manufacturer -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > furniture_manufacturer,furniture_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > glass_manufacturer,glass_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_hardware,b2b_hardware,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > jewelry_manufacturer,jewelry_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > leather_products_manufacturer,leather_products_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools,b2b_machinery_and_tools,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment,industrial_equipment,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mattress_manufacturing,mattress_manufacturing,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator,metal_fabricator,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_work,iron_work,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > metals,metals,Metals,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals,metals,,,TRUE,metal_fabricator -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metals > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > sheet_metal,sheet_metal,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metals > steel_fabricator,steel_fabricator,Steel Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > steel_fabricator,steel_fabricator,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > mill,mill,Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill,mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > cotton_mill,cotton_mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > flour_mill,flour_mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > paper_mill,paper_mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > rice_mill,rice_mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > sawmill,sawmill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > textile_mill,textile_mill,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > weaving_mill,weaving_mill,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > plastic_manufacturer,plastic_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics,b2b_rubber_and_plastics,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods,b2b_sporting_and_recreation_goods,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_textiles,b2b_textiles,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles,b2b_autos_and_vehicles,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > aircraft_manufacturer,aircraft_manufacturer,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > auto_manufacturer,auto_manufacturer,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,manufacturer,services_and_business > business_to_business > business_to_business_service > boat_builder,boat_builder,,TRUE,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,manufacturer,,,TRUE,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires,b2b_tires,,TRUE,, -services_and_business,2,TRUE,services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor,supplier_distributor,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > abrasives_supplier,abrasives_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > aggregate_supplier,aggregate_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > aluminum_supplier,aluminum_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > awning_supplier,awning_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > battery_inverter_supplier,battery_inverter_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > bearing_supplier,bearing_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > beauty_product_supplier,beauty_product_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > beverage_supplier,beverage_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > box_lunch_supplier,box_lunch_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,business_office_supplies_and_stationery,Business Office Supplies and Stationery,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply > business_office_supplies_and_stationery,business_office_supplies_and_stationery,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > cement_supplier,cement_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > cleaning_products_supplier,cleaning_products_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > corporate_gift_supplier,corporate_gift_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > electronic_equipment_supplier,electronic_equipment_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > electronic_parts_supplier,electronic_parts_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > fastener_supplier,fastener_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,supplier_or_distributor,services_and_business > corporate_or_business_office > food_beverage_distributor,food_beverage_distributor,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > granite_supplier,granite_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,supplier_or_distributor,services_and_business > corporate_or_business_office > hotel_supply_service,hotel_supply_service,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > hvac_supplier,hvac_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > ice_supplier,ice_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,supplier_or_distributor,services_and_business > business_to_business > import_export_service,import_export_service,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,supplier_or_distributor,services_and_business > business_to_business > import_export_service > exporter,exporter,,,, -services_and_business,5,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter > food_and_beverage_exporter,food_and_beverage_exporter,Food and Beverage Exporter,supplier_or_distributor,services_and_business > business_to_business > import_export_service > exporter > food_and_beverage_exporter,food_and_beverage_exporter,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,supplier_or_distributor,services_and_business > business_to_business > import_export_service > importer,importer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > metal_supplier,metal_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > pipe_supplier,pipe_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > playground_equipment_supplier,playground_equipment_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply,printing_equipment_and_supply,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > propane_supplier,propane_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,restaurant_equipment_and_supply,Restaurant Equipment and Supply,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply,restaurant_equipment_and_supply,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > retaining_wall_supplier,retaining_wall_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,Sand and Gravel Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > scale_supplier,scale_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,seal_and_hanko_supplier,Seal and Hanko Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealer,seal_and_hanko_dealer,,TRUE,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > spring_supplier,spring_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > stone_supplier,stone_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > tableware_supplier,tableware_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > tent_house_supplier,tent_house_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > thread_supplier,thread_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > vending_machine_supplier,vending_machine_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,Water Softening Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > window_supplier,window_supplier,,,, -services_and_business,2,TRUE,services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler,wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > computer_wholesaler,computer_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > electrical_wholesaler,electrical_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fabric_wholesaler,fabric_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,FMCG Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fmcg_wholesaler,fmcg_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > footwear_wholesaler,footwear_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,wholesaler,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesaler,furniture_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,wholesaler,services_and_business > business_to_business > wholesaler > greengrocer,greengrocer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,wholesaler,services_and_business > business_to_business > wholesaler > iron_and_steel_store,iron_and_steel_store,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > lingerie_wholesaler,lingerie_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > meat_wholesaler,meat_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > optical_wholesaler,optical_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > produce_wholesaler,produce_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,wholesaler,services_and_business > business_to_business > wholesaler > restaurant_wholesale,restaurant_wholesale,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > seafood_wholesaler,seafood_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > spices_wholesaler,spices_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > tea_wholesaler,tea_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > tools_wholesaler,tools_wholesaler,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,wholesaler,services_and_business > business_to_business > wholesaler > wholesale_florist,wholesale_florist,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,wholesaler,services_and_business > business_to_business > wholesaler > wholesale_grocer,wholesale_grocer,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > wine_wholesaler,wine_wholesaler,,,, -services_and_business,2,FALSE,services_and_business > b2b_service > wood_and_pulp,wood_and_pulp,Wood and Pulp,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp,wood_and_pulp,,,TRUE,b2b_environmental_service -services_and_business,1,TRUE,services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,building_or_construction_service,services_and_business > professional_service > construction_service,construction_service,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,building_or_construction_service,services_and_business > professional_service > construction_service > blacksmith,blacksmith,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,building_or_construction_service,services_and_business > professional_service > construction_service > blueprinter,blueprinter,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > civil_engineer,civil_engineer,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,building_or_construction_service,services_and_business > professional_service > construction_service > construction_management,construction_management,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,building_or_construction_service,services_and_business > professional_service > crane_service,crane_service,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,building_or_construction_service,services_and_business > professional_service > construction_service > engineering_service,engineering_service,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,building_or_construction_service,services_and_business > professional_service > construction_service > gravel_professional,gravel_professional,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,building_or_construction_service,services_and_business > professional_service > construction_service > inspection_service,inspection_service,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > instrumentation_engineer,instrumentation_engineer,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,building_or_construction_service,services_and_business > professional_service > construction_service > ironworker,ironworker,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,building_or_construction_service,services_and_business > professional_service > construction_service > lime_professional,lime_professional,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > marble_and_granite_professional,marble_and_granite_professional,Marble and Granite Professional,building_or_construction_service,services_and_business > professional_service > construction_service > marble_and_granite_professional,marble_and_granite_professional,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,building_or_construction_service,services_and_business > professional_service > construction_service > masonry_contractor,masonry_contractor,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > mechanical_engineer,mechanical_engineer,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,building_or_construction_service,services_and_business > professional_service > construction_service > metal_material_expert,metal_material_expert,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,building_or_construction_service,services_and_business > professional_service > construction_service > road_contractor,road_contractor,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,building_or_construction_service,services_and_business > professional_service > construction_service > stone_and_masonry,stone_and_masonry,,,, -services_and_business,2,FALSE,services_and_business > building_or_construction_service > welder,welder,Welder,building_or_construction_service,services_and_business > professional_service > construction_service > welder,welder,,,, -services_and_business,1,FALSE,services_and_business > business_to_business,business_to_business,Business to Business,b2b_service,services_and_business > business_to_business,business_to_business,,,TRUE,b2b_service -services_and_business,3,FALSE,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business,environmental_and_ecological_service_for_business,Environmental and Ecological Service For Business,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business,environmental_and_ecological_service_for_business,,,TRUE,environmental_or_ecological_service -services_and_business,4,FALSE,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > environmental_renewable_natural_resource,environmental_renewable_natural_resource,Environmental Renewable Natural Resource,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > environmental_renewable_natural_resource,environmental_renewable_natural_resource,,,TRUE,environmental_or_ecological_service -services_and_business,1,TRUE,services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,corporate_or_business_office,services_and_business > business,business,,TRUE,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,corporate_or_business_office,travel_and_transportation > automotive_and_ground_transport > automotive > auto_company,auto_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,corporate_or_business_office,services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,corporate_or_business_office,services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,corporate_or_business_office,services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,corporate_or_business_office,services_and_business > corporate_or_business_office > clothing_company,clothing_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,corporate_or_business_office,services_and_business > corporate_or_business_office > energy_company,energy_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,corporate_or_business_office,services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,corporate_or_business_office,services_and_business > corporate_or_business_office > industrial_company,industrial_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,corporate_or_business_office,services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,corporate_or_business_office,services_and_business > business_to_business > b2b_medical_support_service > pharmaceutical_companies,pharmaceutical_companies,,TRUE,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,corporate_or_business_office,services_and_business > corporate_or_business_office > plastics_company,plastics_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > private_association,private_association,Private Association,corporate_or_business_office,community_and_government > organization > private_association,private_association,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,corporate_or_business_office,services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,corporate_or_business_office,services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,corporate_or_business_office,services_and_business > corporate_or_business_office > travel_company,travel_company,,,, -services_and_business,1,TRUE,services_and_business > design_service,design_service,Design Service,design_service,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > design_service > architect,architect,Architect,design_service,services_and_business > professional_service > architect,architect,,,, -services_and_business,2,FALSE,services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,design_service,services_and_business > professional_service > architectural_designer,architectural_designer,,,, -services_and_business,2,FALSE,services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,design_service,services_and_business > professional_service > graphic_designer,graphic_designer,,,, -services_and_business,2,FALSE,services_and_business > design_service > product_design,product_design,Product Design,design_service,services_and_business > professional_service > product_design,product_design,,,, -services_and_business,2,FALSE,services_and_business > design_service > sign_making,sign_making,Sign Making,design_service,services_and_business > professional_service > sign_making,sign_making,,,, -services_and_business,2,FALSE,services_and_business > design_service > web_designer,web_designer,Web Designer,design_service,services_and_business > professional_service > web_designer,web_designer,,,, -services_and_business,1,TRUE,services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service,environmental_and_ecological_service,,TRUE,, -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,environmental_or_ecological_service,services_and_business > professional_service > environmental_abatement_service,environmental_abatement_service,,,, -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,environmental_or_ecological_service,community_and_government > organization > environmental_conservation_organization,environmental_conservation_organization,,,, -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,environmental_or_ecological_service,services_and_business > professional_service > environmental_testing,environmental_testing,,TRUE,, -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,environmental_or_ecological_service,services_and_business > professional_service > forestry_service,forestry_service,,,, -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,environmental_or_ecological_service,services_and_business > professional_service > wildlife_control,wildlife_control,,,, -services_and_business,1,TRUE,services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,event_or_party_service,services_and_business > professional_service > event_planning,event_planning,,TRUE,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,audiovisual_equipment_rental,event_or_party_service,services_and_business > professional_service > event_planning > audiovisual_equipment_rental,audiovisual_equipment_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,event_or_party_service,services_and_business > professional_service > event_planning > balloon_service,balloon_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > bartender,bartender,Bartender,event_or_party_service,services_and_business > professional_service > event_planning > bartender,bartender,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,event_or_party_service,services_and_business > professional_service > event_planning > boat_charter,boat_charter,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,event_or_party_service,services_and_business > professional_service > event_planning > bounce_house_rental,bounce_house_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > caricature,caricature,Caricature,event_or_party_service,services_and_business > professional_service > event_planning > caricature,caricature,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > caterer,caterer,Caterer,event_or_party_service,services_and_business > professional_service > event_planning > caterer,caterer,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > clown,clown,Clown,event_or_party_service,services_and_business > professional_service > event_planning > clown,clown,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,event_or_party_service,services_and_business > professional_service > event_planning > dj_service,dj_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,event_or_party_service,services_and_business > professional_service > event_planning > event_technology_service,event_technology_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,event_or_party_service,services_and_business > professional_service > event_planning > face_painting,face_painting,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,event_or_party_service,services_and_business > professional_service > event_planning > floral_designer,floral_designer,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,event_or_party_service,services_and_business > professional_service > event_planning > game_truck_rental,game_truck_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,event_or_party_service,services_and_business > professional_service > event_planning > golf_cart_rental,golf_cart_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,event_or_party_service,services_and_business > professional_service > event_planning > henna_artist,henna_artist,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,event_or_party_service,services_and_business > professional_service > event_planning > karaoke_rental,karaoke_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > kids_recreation_and_party,kids_recreation_and_party,Kids Recreation and Party,event_or_party_service,services_and_business > professional_service > event_planning > kids_recreation_and_party,kids_recreation_and_party,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > magician,magician,Magician,event_or_party_service,services_and_business > professional_service > event_planning > magician,magician,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > mohel,mohel,Mohel,event_or_party_service,services_and_business > professional_service > event_planning > mohel,mohel,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > musician,musician,Musician,event_or_party_service,services_and_business > professional_service > event_planning > musician,musician,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,event_or_party_service,services_and_business > professional_service > event_planning > officiating_service,officiating_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_and_event_planning,party_and_event_planning,Party and Event Planning,event_or_party_service,services_and_business > professional_service > event_planning > party_and_event_planning,party_and_event_planning,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_bike_rental,party_bike_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_bus_rental,party_bus_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_character,party_character,Party Character,event_or_party_service,services_and_business > professional_service > event_planning > party_character,party_character,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_equipment_rental,party_equipment_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,event_or_party_service,services_and_business > professional_service > event_planning > personal_chef,personal_chef,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,event_or_party_service,services_and_business > professional_service > event_planning > photo_booth_rental,photo_booth_rental,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,event_or_party_service,services_and_business > professional_service > event_planning > silent_disco,silent_disco,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,event_or_party_service,services_and_business > professional_service > event_planning > sommelier_service,sommelier_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,event_or_party_service,services_and_business > professional_service > event_planning > team_building_activity,team_building_activity,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,event_or_party_service,services_and_business > professional_service > event_planning > trivia_host,trivia_host,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,event_or_party_service,services_and_business > professional_service > event_planning > valet_service,valet_service,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > videographer,videographer,Videographer,event_or_party_service,services_and_business > professional_service > event_planning > videographer,videographer,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,event_or_party_service,services_and_business > professional_service > event_planning > wedding_chapel,wedding_chapel,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,event_or_party_service,services_and_business > professional_service > event_planning > wedding_planning,wedding_planning,,,, -services_and_business,1,TRUE,services_and_business > family_service,family_service,Family Service,family_service,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > family_service > adoption_service,adoption_service,Adoption Service,family_service,services_and_business > professional_service > adoption_service,adoption_service,,,, -services_and_business,2,FALSE,services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,family_service,services_and_business > professional_service > child_care_and_day_care,child_care_and_day_care,,,, -services_and_business,3,FALSE,services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,family_service,services_and_business > professional_service > child_care_and_day_care > day_care_preschool,day_care_preschool,,,, -services_and_business,2,FALSE,services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,family_service,services_and_business > professional_service > elder_care_planning,elder_care_planning,,,, -services_and_business,2,FALSE,services_and_business > family_service > family_service_center,family_service_center,Family Service Center,family_service,community_and_government > family_service_center,family_service_center,,,, -services_and_business,2,FALSE,services_and_business > family_service > funeral_service,funeral_service,Funeral Service,family_service,services_and_business > professional_service > funeral_service,funeral_service,,,, -services_and_business,3,FALSE,services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,family_service,services_and_business > professional_service > funeral_service > cremation_service,cremation_service,,,, -services_and_business,3,FALSE,services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,family_service,services_and_business > professional_service > funeral_service > mortuary_service,mortuary_service,,,, -services_and_business,2,FALSE,services_and_business > family_service > genealogist,genealogist,Genealogist,family_service,services_and_business > professional_service > genealogist,genealogist,,,, -services_and_business,2,FALSE,services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,family_service,services_and_business > professional_service > mobility_equipment_service,mobility_equipment_service,,,, -services_and_business,2,FALSE,services_and_business > family_service > nanny_service,nanny_service,Nanny Service,family_service,services_and_business > professional_service > nanny_service,nanny_service,,,, -services_and_business,1,TRUE,services_and_business > financial_service,financial_service,Financial Service,financial_service,services_and_business > financial_service,financial_service,,,, -services_and_business,2,FALSE,services_and_business > financial_service > accountant,accountant,Accountant,financial_service,services_and_business > financial_service > accountant,accountant,,,, -services_and_business,2,FALSE,services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,financial_service,services_and_business > professional_service > appraisal_service,appraisal_service,,,, -services_and_business,2,TRUE,services_and_business > financial_service > atm,atm,ATM,atm,services_and_business > financial_service > atm,atm,,,, -services_and_business,2,TRUE,services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,bank_or_credit_union,services_and_business > financial_service > bank_credit_union,bank_credit_union,,,, -services_and_business,3,FALSE,services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,bank_or_credit_union,services_and_business > financial_service > bank_credit_union > bank,bank,,,, -services_and_business,3,FALSE,services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,bank_or_credit_union,services_and_business > financial_service > bank_credit_union > credit_union,credit_union,,,, -services_and_business,2,FALSE,services_and_business > financial_service > broker,broker,Broker,financial_service,services_and_business > financial_service > broker,broker,,,, -services_and_business,3,FALSE,services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,financial_service,services_and_business > financial_service > broker > business_broker,business_broker,,,, -services_and_business,3,FALSE,services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,financial_service,services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,,,, -services_and_business,2,FALSE,services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,financial_service,services_and_business > financial_service > business_banking_service,business_banking_service,,,, -services_and_business,2,FALSE,services_and_business > financial_service > business_financing,business_financing,Business Financing,financial_service,services_and_business > financial_service > business_financing,business_financing,,,, -services_and_business,2,FALSE,services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,financial_service,services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,,,, -services_and_business,2,FALSE,services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,financial_service,services_and_business > financial_service > coin_dealer,coin_dealer,,,, -services_and_business,2,FALSE,services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,financial_service,services_and_business > financial_service > collection_agency,collection_agency,,,, -services_and_business,2,FALSE,services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,financial_service,services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,,,, -services_and_business,2,FALSE,services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,financial_service,services_and_business > financial_service > currency_exchange,currency_exchange,,,, -services_and_business,2,FALSE,services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,financial_service,services_and_business > professional_service > customs_broker,customs_broker,,,, -services_and_business,2,FALSE,services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,financial_service,services_and_business > financial_service > debt_relief_service,debt_relief_service,,,, -services_and_business,2,FALSE,services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,financial_service,services_and_business > financial_service > financial_advising,financial_advising,,,, -services_and_business,2,FALSE,services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,financial_service,services_and_business > gold_buyer,gold_buyer,,,, -services_and_business,2,FALSE,services_and_business > financial_service > holding_company,holding_company,Holding Company,financial_service,services_and_business > financial_service > holding_company,holding_company,,,, -services_and_business,2,FALSE,services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,financial_service,services_and_business > financial_service > installment_loans,installment_loans,,,, -services_and_business,3,FALSE,services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,financial_service,services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,,,, -services_and_business,3,FALSE,services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,financial_service,services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,,,, -services_and_business,2,FALSE,services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,financial_service,services_and_business > financial_service > insurance_agency,insurance_agency,,,, -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,financial_service,services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,,,, -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,financial_service,services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,,,, -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,financial_service,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,,,, -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,financial_service,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,,,, -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,financial_service,services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,,,, -services_and_business,2,FALSE,services_and_business > financial_service > investing,investing,Investing,financial_service,services_and_business > financial_service > investing,investing,,,, -services_and_business,2,FALSE,services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,financial_service,services_and_business > financial_service > investment_management_company,investment_management_company,,,, -services_and_business,2,FALSE,services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,financial_service,services_and_business > financial_service > money_transfer_service,money_transfer_service,,,, -services_and_business,2,FALSE,services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,financial_service,services_and_business > real_estate > mortgage_broker,mortgage_broker,,,, -services_and_business,2,FALSE,services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,financial_service,services_and_business > private_establishments_and_corporates > private_equity_firm,private_equity_firm,,,, -services_and_business,2,FALSE,services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,financial_service,services_and_business > professional_service > public_adjuster,public_adjuster,,,, -services_and_business,2,FALSE,services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,financial_service,services_and_business > real_estate > real_estate_investment,real_estate_investment,,,, -services_and_business,2,FALSE,services_and_business > financial_service > tax_service,tax_service,Tax Service,financial_service,services_and_business > financial_service > tax_service,tax_service,,,, -services_and_business,2,FALSE,services_and_business > financial_service > trusts,trusts,Trusts,financial_service,services_and_business > financial_service > trusts,trusts,,,, -services_and_business,1,TRUE,services_and_business > home_service,home_service,Home Service,home_service,services_and_business > home_service,home_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,home_service,services_and_business > professional_service > air_duct_cleaning_service,air_duct_cleaning_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > antenna_service,antenna_service,Antenna Service,home_service,services_and_business > professional_service > antenna_service,antenna_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,home_service,services_and_business > professional_service > appliance_repair_service,appliance_repair_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,home_service,services_and_business > home_service > artificial_turf,artificial_turf,,,, -services_and_business,2,FALSE,services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,home_service,services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,,,, -services_and_business,2,FALSE,services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,home_service,services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,,,, -services_and_business,2,FALSE,services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,home_service,services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpenter,carpenter,Carpenter,home_service,services_and_business > home_service > carpenter,carpenter,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,home_service,services_and_business > home_service > carpet_cleaning,carpet_cleaning,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,home_service,services_and_business > professional_service > carpet_dyeing,carpet_dyeing,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,home_service,services_and_business > home_service > carpet_installation,carpet_installation,,,, -services_and_business,2,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,,,, -services_and_business,3,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,,,, -services_and_business,3,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,,,, -services_and_business,2,FALSE,services_and_business > home_service > childproofing,childproofing,Childproofing,home_service,services_and_business > home_service > childproofing,childproofing,,,, -services_and_business,2,FALSE,services_and_business > home_service > chimney_service,chimney_service,Chimney Service,home_service,services_and_business > home_service > chimney_service,chimney_service,,,, -services_and_business,3,FALSE,services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,home_service,services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,,,, -services_and_business,2,FALSE,services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,home_service,services_and_business > professional_service > clock_repair_service,clock_repair_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,home_service,services_and_business > home_service > closet_remodeling,closet_remodeling,,,, -services_and_business,2,FALSE,services_and_business > home_service > community_book_box,community_book_box,Community Book Box,home_service,services_and_business > professional_service > community_book_box,community_book_box,,,, -services_and_business,2,FALSE,services_and_business > home_service > contractor,contractor,Contractor,home_service,services_and_business > home_service > contractor,contractor,,,, -services_and_business,3,FALSE,services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,home_service,services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,,,, -services_and_business,3,FALSE,services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,home_service,services_and_business > home_service > contractor > building_contractor,building_contractor,,,, -services_and_business,3,FALSE,services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,home_service,services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,,,, -services_and_business,3,FALSE,services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,home_service,services_and_business > home_service > contractor > paving_contractor,paving_contractor,,,, -services_and_business,2,FALSE,services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,home_service,services_and_business > home_service > countertop_installation,countertop_installation,,,, -services_and_business,2,FALSE,services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,home_service,services_and_business > home_service > damage_restoration,damage_restoration,,,, -services_and_business,3,FALSE,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,Fire and Water Damage Restoration,home_service,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,,,, -services_and_business,2,FALSE,services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,home_service,services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > demolition_service,demolition_service,Demolition Service,home_service,services_and_business > home_service > demolition_service,demolition_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > donation_center,donation_center,Donation Center,home_service,services_and_business > professional_service > donation_center,donation_center,,,, -services_and_business,2,FALSE,services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,home_service,services_and_business > home_service > door_sales_service,door_sales_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > drywall_service,drywall_service,Drywall Service,home_service,services_and_business > home_service > drywall_service,drywall_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > electrician,electrician,Electrician,home_service,services_and_business > home_service > electrician,electrician,,,, -services_and_business,2,FALSE,services_and_business > home_service > excavation_service,excavation_service,Excavation Service,home_service,services_and_business > home_service > excavation_service,excavation_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > exterior_design,exterior_design,Exterior Design,home_service,services_and_business > home_service > exterior_design,exterior_design,,,, -services_and_business,2,FALSE,services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,home_service,services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > feng_shui,feng_shui,Feng Shui,home_service,services_and_business > professional_service > feng_shui,feng_shui,,,, -services_and_business,2,FALSE,services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,home_service,services_and_business > home_service > fire_protection_service,fire_protection_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,home_service,services_and_business > home_service > fireplace_service,fireplace_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > firewood,firewood,Firewood,home_service,services_and_business > home_service > firewood,firewood,,,, -services_and_business,2,FALSE,services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,home_service,services_and_business > home_service > foundation_repair,foundation_repair,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,home_service,services_and_business > home_service > furniture_assembly,furniture_assembly,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,home_service,services_and_business > professional_service > furniture_rental_service,furniture_rental_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,home_service,services_and_business > professional_service > furniture_repair,furniture_repair,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,home_service,services_and_business > professional_service > furniture_reupholstery,furniture_reupholstery,,,, -services_and_business,2,FALSE,services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,home_service,services_and_business > home_service > garage_door_service,garage_door_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,home_service,services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > grout_service,grout_service,Grout Service,home_service,services_and_business > home_service > grout_service,grout_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > gutter_service,gutter_service,Gutter Service,home_service,services_and_business > home_service > gutter_service,gutter_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > handyman,handyman,Handyman,home_service,services_and_business > home_service > handyman,handyman,,,, -services_and_business,2,FALSE,services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,home_service,services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_automation,home_automation,Home Automation,home_service,services_and_business > home_service > home_automation,home_automation,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,home_service,services_and_business > home_service > home_cleaning,home_cleaning,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,home_service,services_and_business > home_service > home_energy_auditor,home_energy_auditor,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_inspector,home_inspector,Home Inspector,home_service,services_and_business > home_service > home_inspector,home_inspector,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,home_service,services_and_business > home_service > home_network_installation,home_network_installation,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_security,home_security,Home Security,home_service,services_and_business > home_service > home_security,home_security,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,home_service,services_and_business > home_service > home_window_tinting,home_window_tinting,,,, -services_and_business,2,FALSE,services_and_business > home_service > house_sitting,house_sitting,House Sitting,home_service,services_and_business > home_service > house_sitting,house_sitting,,,, -services_and_business,2,FALSE,services_and_business > home_service > hvac_service,hvac_service,HVAC Service,home_service,services_and_business > home_service > hvac_service,hvac_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,home_service,services_and_business > professional_service > hydro_jetting,hydro_jetting,,,, -services_and_business,2,FALSE,services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,home_service,services_and_business > professional_service > indoor_landscaping,indoor_landscaping,,,, -services_and_business,2,FALSE,services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,home_service,services_and_business > home_service > insulation_installation,insulation_installation,,,, -services_and_business,2,FALSE,services_and_business > home_service > interior_design,interior_design,Interior Design,home_service,services_and_business > home_service > interior_design,interior_design,,,, -services_and_business,2,FALSE,services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,home_service,services_and_business > home_service > irrigation_service,irrigation_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,home_service,services_and_business > professional_service > junk_removal_and_hauling,junk_removal_and_hauling,,,, -services_and_business,2,FALSE,services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,home_service,services_and_business > home_service > key_and_locksmith,key_and_locksmith,,,, -services_and_business,2,FALSE,services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,home_service,services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,,,, -services_and_business,2,FALSE,services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,home_service,services_and_business > professional_service > knife_sharpening,knife_sharpening,,,, -services_and_business,2,FALSE,services_and_business > home_service > landscaping,landscaping,Landscaping,home_service,services_and_business > home_service > landscaping,landscaping,,,, -services_and_business,3,FALSE,services_and_business > home_service > landscaping > gardener,gardener,Gardener,home_service,services_and_business > home_service > landscaping > gardener,gardener,,,, -services_and_business,3,FALSE,services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,home_service,services_and_business > home_service > landscaping > landscape_architect,landscape_architect,,,, -services_and_business,3,FALSE,services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,home_service,services_and_business > home_service > landscaping > lawn_service,lawn_service,,,, -services_and_business,3,FALSE,services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,home_service,services_and_business > home_service > landscaping > tree_service,tree_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,home_service,services_and_business > professional_service > lawn_mower_repair_service,lawn_mower_repair_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,home_service,services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,,,, -services_and_business,2,FALSE,services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,home_service,services_and_business > home_service > masonry_concrete,masonry_concrete,,,, -services_and_business,2,FALSE,services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,home_service,services_and_business > professional_service > misting_system_service,misting_system_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,home_service,services_and_business > home_service > mobile_home_repair,mobile_home_repair,,,, -services_and_business,2,FALSE,services_and_business > home_service > mover,mover,Mover,home_service,services_and_business > home_service > mover,mover,,,, -services_and_business,2,FALSE,services_and_business > home_service > packing_service,packing_service,Packing Service,home_service,services_and_business > home_service > packing_service,packing_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > painting,painting,Painting,home_service,services_and_business > home_service > painting,painting,,,, -services_and_business,2,FALSE,services_and_business > home_service > patio_covers,patio_covers,Patio Covers,home_service,services_and_business > home_service > patio_covers,patio_covers,,,, -services_and_business,2,FALSE,services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,home_service,services_and_business > professional_service > personal_assistant,personal_assistant,,,, -services_and_business,2,FALSE,services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,home_service,services_and_business > professional_service > pest_control_service,pest_control_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > plasterer,plasterer,Plasterer,home_service,services_and_business > home_service > plasterer,plasterer,,,, -services_and_business,2,FALSE,services_and_business > home_service > plumbing,plumbing,Plumbing,home_service,services_and_business > home_service > plumbing,plumbing,,,, -services_and_business,3,FALSE,services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,home_service,services_and_business > home_service > plumbing > backflow_service,backflow_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,home_service,services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,home_service,services_and_business > home_service > pool_cleaning,pool_cleaning,,,, -services_and_business,2,FALSE,services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,home_service,services_and_business > home_service > pressure_washing,pressure_washing,,,, -services_and_business,2,FALSE,services_and_business > home_service > recycling_center,recycling_center,Recycling Center,home_service,services_and_business > professional_service > recycling_center,recycling_center,,,, -services_and_business,2,FALSE,services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,home_service,services_and_business > home_service > refinishing_service,refinishing_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > security_systems,security_systems,Security Systems,home_service,services_and_business > home_service > security_systems,security_systems,,,, -services_and_business,2,FALSE,services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,home_service,services_and_business > professional_service > sewing_and_alterations,sewing_and_alterations,,,, -services_and_business,3,FALSE,services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,home_service,services_and_business > professional_service > sewing_and_alterations > tailor,tailor,,,, -services_and_business,2,FALSE,services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,home_service,services_and_business > home_service > shades_and_blinds,shades_and_blinds,,,, -services_and_business,2,FALSE,services_and_business > home_service > shutters,shutters,Shutters,home_service,services_and_business > home_service > shutters,shutters,,,, -services_and_business,2,FALSE,services_and_business > home_service > siding,siding,Siding,home_service,services_and_business > home_service > siding,siding,,,, -services_and_business,2,FALSE,services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,home_service,services_and_business > professional_service > snow_removal_service,snow_removal_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > solar_installation,solar_installation,Solar Installation,home_service,services_and_business > home_service > solar_installation,solar_installation,,,, -services_and_business,2,FALSE,services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,home_service,services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,,,, -services_and_business,2,FALSE,services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,home_service,services_and_business > home_service > structural_engineer,structural_engineer,,,, -services_and_business,2,FALSE,services_and_business > home_service > stucco_service,stucco_service,Stucco Service,home_service,services_and_business > home_service > stucco_service,stucco_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,home_service,services_and_business > home_service > television_service_provider,television_service_provider,,,, -services_and_business,2,FALSE,services_and_business > home_service > tiling,tiling,Tiling,home_service,services_and_business > home_service > tiling,tiling,,,, -services_and_business,2,FALSE,services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,home_service,services_and_business > professional_service > tv_mounting,tv_mounting,,,, -services_and_business,2,FALSE,services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,home_service,services_and_business > home_service > wallpaper_installer,wallpaper_installer,,,, -services_and_business,2,FALSE,services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,home_service,services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > water_delivery,water_delivery,Water Delivery,home_service,services_and_business > professional_service > water_delivery,water_delivery,,,, -services_and_business,2,FALSE,services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,home_service,services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,,,, -services_and_business,2,FALSE,services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,home_service,services_and_business > home_service > water_purification_service,water_purification_service,,,, -services_and_business,2,FALSE,services_and_business > home_service > waterproofing,waterproofing,Waterproofing,home_service,services_and_business > home_service > waterproofing,waterproofing,,,, -services_and_business,2,FALSE,services_and_business > home_service > well_drilling,well_drilling,Well Drilling,home_service,services_and_business > professional_service > well_drilling,well_drilling,,,, -services_and_business,2,FALSE,services_and_business > home_service > window_washing,window_washing,Window Washing,home_service,services_and_business > home_service > window_washing,window_washing,,,, -services_and_business,2,FALSE,services_and_business > home_service > windows_installation,windows_installation,Windows Installation,home_service,services_and_business > home_service > windows_installation,windows_installation,,,, -services_and_business,3,FALSE,services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,home_service,services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,,,, -services_and_business,1,TRUE,services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,housing_or_property_service,,,TRUE,,, -services_and_business,2,TRUE,services_and_business > housing_or_property_service > apartment,apartment,Apartment,apartment,services_and_business > real_estate > apartment,apartment,,,, -services_and_business,2,TRUE,services_and_business > housing_or_property_service > condominium,condominium,Condominium,condominium,services_and_business > real_estate > condominium,condominium,,,, -services_and_business,2,FALSE,services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,housing_or_property_service,health_care > halfway_house,halfway_house,,,, -services_and_business,2,FALSE,services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,housing_or_property_service,community_and_government > low_income_housing,low_income_housing,,,, -services_and_business,2,FALSE,services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,housing_or_property_service,services_and_business > real_estate > mobile_home_park,mobile_home_park,,,, -services_and_business,2,TRUE,services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,senior_living_facility,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,senior_living_facility,health_care > assisted_living_facility,assisted_living_facility,,,, -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,senior_living_facility,health_care > memory_care,memory_care,,TRUE,, -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,senior_living_facility,community_and_government > retirement_home,retirement_home,,,, -services_and_business,2,FALSE,services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,housing_or_property_service,services_and_business > real_estate > university_housing,university_housing,,,, -services_and_business,1,TRUE,services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,industrial_facility_or_service,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,industrial_facility_or_service,services_and_business > professional_service > hazardous_waste_disposal,hazardous_waste_disposal,,,, -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,industrial_facility_or_service,services_and_business > professional_service > powder_coating_service,powder_coating_service,,,, -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,industrial_facility_or_service,services_and_business > professional_service > sandblasting_service,sandblasting_service,,,, -services_and_business,1,TRUE,services_and_business > laundry_service,laundry_service,Laundry Service,laundry_service,services_and_business > professional_service > laundry_service,laundry_service,,,, -services_and_business,2,FALSE,services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,laundry_service,services_and_business > professional_service > laundry_service > dry_cleaning,dry_cleaning,,,, -services_and_business,2,FALSE,services_and_business > laundry_service > laundromat,laundromat,Laundromat,laundry_service,services_and_business > professional_service > laundry_service > laundromat,laundromat,,,, -services_and_business,1,TRUE,services_and_business > legal_service,legal_service,Legal Service,legal_service,services_and_business > professional_service > legal_service,legal_service,,,, -services_and_business,2,TRUE,services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,attorney_or_law_firm,services_and_business > professional_service > lawyer,lawyer,,TRUE,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,attorney_or_law_firm,services_and_business > professional_service > lawyer > appellate_practice_lawyer,appellate_practice_lawyer,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > bankruptcy_law,bankruptcy_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > business_law,business_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,attorney_or_law_firm,services_and_business > professional_service > lawyer > civil_rights_lawyer,civil_rights_lawyer,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > contract_law,contract_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > criminal_defense_law,criminal_defense_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > disability_law,disability_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,divorce_and_family_law,Divorce and Family Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > divorce_and_family_law,divorce_and_family_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > dui_law,dui_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > employment_law,employment_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > entertainment_law,entertainment_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > estate_planning_law,estate_planning_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,attorney_or_law_firm,services_and_business > professional_service > lawyer > general_litigation,general_litigation,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > immigration_law,immigration_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,ip_and_internet_law,IP and Internet Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > ip_and_internet_law,ip_and_internet_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > medical_law,medical_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,attorney_or_law_firm,services_and_business > professional_service > lawyer > paralegal_service,paralegal_service,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > personal_injury_law,personal_injury_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > real_estate_law,real_estate_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > social_security_law,social_security_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > tax_law,tax_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > traffic_ticketing_law,traffic_ticketing_law,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,wills_trusts_and_probate,Wills Trusts and Probate,attorney_or_law_firm,services_and_business > professional_service > lawyer > wills_trusts_and_probate,wills_trusts_and_probate,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > workers_compensation_law,workers_compensation_law,,,, -services_and_business,2,FALSE,services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,legal_service,services_and_business > professional_service > bail_bonds_service,bail_bonds_service,,,, -services_and_business,2,FALSE,services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,legal_service,services_and_business > professional_service > legal_service > court_reporter,court_reporter,,,, -services_and_business,2,FALSE,services_and_business > legal_service > mediator,mediator,Mediator,legal_service,services_and_business > professional_service > mediator,mediator,,,, -services_and_business,2,FALSE,services_and_business > legal_service > notary_public,notary_public,Notary Public,legal_service,services_and_business > professional_service > notary_public,notary_public,,,, -services_and_business,2,FALSE,services_and_business > legal_service > patent_law,patent_law,Patent Law,legal_service,services_and_business > professional_service > patent_law,patent_law,,,, -services_and_business,2,FALSE,services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,legal_service,services_and_business > professional_service > private_investigation,private_investigation,,,, -services_and_business,2,FALSE,services_and_business > legal_service > process_server,process_server,Process Server,legal_service,services_and_business > professional_service > legal_service > process_server,process_server,,,, -services_and_business,2,FALSE,services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,legal_service,services_and_business > professional_service > tenant_and_eviction_law,tenant_and_eviction_law,,,, -services_and_business,1,TRUE,services_and_business > media_service,media_service,Media Service,media_service,services_and_business > media_and_news,media_and_news,,TRUE,, -services_and_business,2,FALSE,services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,media_service,services_and_business > professional_service > art_restoration_service,art_restoration_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > bookbinding,bookbinding,Bookbinding,media_service,services_and_business > professional_service > bookbinding,bookbinding,,,, -services_and_business,2,FALSE,services_and_business > media_service > calligraphy,calligraphy,Calligraphy,media_service,services_and_business > professional_service > calligraphy,calligraphy,,,, -services_and_business,2,FALSE,services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,media_service,services_and_business > professional_service > commissioned_artist,commissioned_artist,,,, -services_and_business,2,FALSE,services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,media_service,services_and_business > private_establishments_and_corporates > corporate_entertainment_service,corporate_entertainment_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,media_service,services_and_business > professional_service > digitizing_service,digitizing_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > engraving,engraving,Engraving,media_service,services_and_business > professional_service > engraving,engraving,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_critic,media_critic,Media Critic,media_service,services_and_business > media_and_news > media_critic,media_critic,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,media_service,services_and_business > media_and_news > media_critic > movie_critic,movie_critic,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,media_service,services_and_business > media_and_news > media_critic > music_critic,music_critic,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,media_service,services_and_business > media_and_news > media_critic > video_game_critic,video_game_critic,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_news_company,media_news_company,Media News Company,media_service,services_and_business > media_and_news > media_news_company,media_news_company,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,media_service,services_and_business > media_and_news > media_news_company > animation_studio,animation_studio,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,media_service,services_and_business > media_and_news > media_news_company > book_magazine_distribution,book_magazine_distribution,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,media_service,services_and_business > media_and_news > media_news_company > broadcasting_media_production,broadcasting_media_production,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,media_service,services_and_business > media_and_news > media_news_company > game_publisher,game_publisher,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,media_service,services_and_business > media_and_news > media_news_company > media_agency,media_agency,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,media_service,services_and_business > media_and_news > media_news_company > movie_television_studio,movie_television_studio,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > music_production,music_production,Music Production,media_service,services_and_business > media_and_news > media_news_company > music_production,music_production,,,, -services_and_business,3,TRUE,services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,radio_station,services_and_business > media_and_news > media_news_company > radio_station,radio_station,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,media_service,services_and_business > media_and_news > media_news_company > social_media_company,social_media_company,,,, -services_and_business,3,TRUE,services_and_business > media_service > media_news_company > television_station,television_station,Television Station,television_station,services_and_business > media_and_news > media_news_company > television_station,television_station,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > publisher,publisher,Publisher,media_service,services_and_business > media_and_news > media_news_company > topic_publisher,publisher,,TRUE,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,media_service,services_and_business > media_and_news > media_news_company > weather_forecast_service,weather_forecast_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_news_website,media_news_website,Media News Website,media_service,services_and_business > media_and_news > media_news_website,media_news_website,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,media_service,services_and_business > media_and_news > media_restoration_service,media_restoration_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > music_production_service,music_production_service,Music Production Service,media_service,services_and_business > professional_service > music_production_service,music_production_service,,,, -services_and_business,2,FALSE,services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,media_service,services_and_business > professional_service > musical_instrument_service,musical_instrument_service,,,, -services_and_business,3,FALSE,services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,media_service,services_and_business > professional_service > musical_instrument_service > piano_service,piano_service,,,, -services_and_business,3,FALSE,services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,media_service,services_and_business > professional_service > musical_instrument_service > vocal_coach,vocal_coach,,,, -services_and_business,2,FALSE,services_and_business > media_service > photography_service,photography_service,Photography Service,media_service,services_and_business > professional_service > event_planning > photographer,photographer,,TRUE,, -services_and_business,3,FALSE,services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,media_service,services_and_business > professional_service > event_planning > boudoir_photography,boudoir_photography,,TRUE,, -services_and_business,3,FALSE,services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,media_service,services_and_business > professional_service > event_planning > event_photography,event_photography,,TRUE,, -services_and_business,3,FALSE,services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,media_service,services_and_business > professional_service > event_planning > session_photography,session_photography,,TRUE,, -services_and_business,2,FALSE,services_and_business > media_service > print_media,print_media,Print Media,media_service,services_and_business > media_and_news > print_media,print_media,,,, -services_and_business,2,FALSE,services_and_business > media_service > record_label,record_label,Record Label,media_service,services_and_business > professional_service > record_label,record_label,,,, -services_and_business,2,FALSE,services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,media_service,services_and_business > professional_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,,,, -services_and_business,2,FALSE,services_and_business > media_service > studio_taping,studio_taping,Studio Taping,media_service,services_and_business > studio_taping,studio_taping,,,, -services_and_business,2,FALSE,services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,media_service,services_and_business > media_and_news > theatrical_production,theatrical_production,,,, -services_and_business,2,FALSE,services_and_business > media_service > video_film_production,video_film_production,Video Film Production,media_service,services_and_business > professional_service > video_film_production,video_film_production,,,, -services_and_business,2,FALSE,services_and_business > media_service > weather_station,weather_station,Weather Station,media_service,community_and_government > weather_station,weather_station,,,, -services_and_business,1,TRUE,services_and_business > printing_service,printing_service,Printing Service,printing_service,services_and_business > professional_service > printing_service,printing_service,,,, -services_and_business,2,FALSE,services_and_business > printing_service > 3d_printing_service,3d_printing_service,3D Printing Service,printing_service,services_and_business > professional_service > 3d_printing_service,3d_printing_service,,,, -services_and_business,2,FALSE,services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,printing_service,services_and_business > professional_service > commercial_printer,commercial_printer,,,, -services_and_business,2,FALSE,services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,printing_service,services_and_business > professional_service > duplication_service,duplication_service,,,, -services_and_business,2,FALSE,services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,printing_service,,,TRUE,,, -services_and_business,3,FALSE,services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-Shirt Printing Service,printing_service,services_and_business > professional_service > screen_printing_t_shirt_printing,screen_printing_t_shirt_printing,,TRUE,, -services_and_business,1,FALSE,services_and_business > private_establishments_and_corporates,private_establishments_and_corporates,Private Establishments and Corporates,corporate_or_business_office,services_and_business > private_establishments_and_corporates,private_establishments_and_corporates,,,TRUE,corporate_or_business_office -services_and_business,2,FALSE,services_and_business > private_establishments_and_corporates > corporate_office,corporate_office,Corporate Office,corporate_or_business_office,services_and_business > private_establishments_and_corporates > corporate_office,corporate_office,,,TRUE,corporate_or_business_office -services_and_business,1,TRUE,services_and_business > professional_service,professional_service,Professional Service,professional_service,services_and_business > professional_service,professional_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,professional_service,services_and_business > professional_service > advertising_agency,advertising_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,professional_service,services_and_business > professional_service > bank_equipment_service,bank_equipment_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > billing_service,billing_service,Billing Service,professional_service,services_and_business > professional_service > billing_service,billing_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,professional_service,services_and_business > professional_service > bookkeeper,bookkeeper,,,, -services_and_business,2,FALSE,services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,professional_service,services_and_business > professional_service > business_consulting,business_consulting,,,, -services_and_business,2,FALSE,services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,professional_service,services_and_business > professional_service > career_counseling,career_counseling,,,, -services_and_business,2,FALSE,services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,professional_service,services_and_business > professional_service > certification_agency,certification_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,professional_service,services_and_business > professional_service > cleaning_service,cleaning_service,,,, -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,professional_service,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,,,, -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,professional_service,services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,,,, -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,professional_service,services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,,,, -services_and_business,2,FALSE,services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,professional_service,services_and_business > professional_service > copywriting_service,copywriting_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,professional_service,services_and_business > business_to_business > business_to_business_service > coworking_space,coworking_space,,,, -services_and_business,2,FALSE,services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,professional_service,services_and_business > professional_service > e_commerce_service,e_commerce_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,professional_service,services_and_business > professional_service > editorial_service,editorial_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,professional_service,services_and_business > professional_service > employment_agency,employment_agency,,,, -services_and_business,3,FALSE,services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,professional_service,services_and_business > professional_service > employment_agency > temp_agency,temp_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,professional_service,services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,,,, -services_and_business,2,FALSE,services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,professional_service,services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,professional_service,services_and_business > professional_service > internet_marketing_service,internet_marketing_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,professional_service,services_and_business > professional_service > marketing_agency,marketing_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,professional_service,services_and_business > professional_service > merchandising_service,merchandising_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,professional_service,services_and_business > professional_service > payroll_service,payroll_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > public_relations,public_relations,Public Relations,professional_service,services_and_business > professional_service > public_relations,public_relations,,,, -services_and_business,2,FALSE,services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,professional_service,services_and_business > professional_service > shredding_service,shredding_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,professional_service,services_and_business > professional_service > social_media_agency,social_media_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,professional_service,services_and_business > professional_service > talent_agency,talent_agency,,,, -services_and_business,2,FALSE,services_and_business > professional_service > translation_service,translation_service,Translation Service,professional_service,services_and_business > professional_service > translation_service,translation_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > typing_service,typing_service,Typing Service,professional_service,services_and_business > professional_service > typing_service,typing_service,,,, -services_and_business,2,FALSE,services_and_business > professional_service > writing_service,writing_service,Writing Service,professional_service,services_and_business > professional_service > writing_service,writing_service,,,, -services_and_business,1,FALSE,services_and_business > public_utility_provider,public_utility_provider,Public Utility Provider,public_utility,services_and_business > public_utility_provider,public_utility_provider,,,TRUE,public_utility -services_and_business,1,FALSE,services_and_business > real_estate,real_estate,Real Estate,real_estate_service,services_and_business > real_estate,real_estate,,,TRUE,real_estate_service -services_and_business,1,TRUE,services_and_business > real_estate_service,real_estate_service,Real Estate Service,real_estate_service,services_and_business > real_estate > real_estate_service,real_estate_service,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > builder,builder,Builder,real_estate_service,services_and_business > real_estate > builder,builder,,,, -services_and_business,3,FALSE,services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,real_estate_service,services_and_business > real_estate > builder > home_developer,home_developer,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,real_estate_service,services_and_business > real_estate > commercial_real_estate,commercial_real_estate,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,real_estate_service,services_and_business > real_estate > display_home_center,display_home_center,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,real_estate_service,services_and_business > real_estate > real_estate_service > escrow_service,escrow_service,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,real_estate_service,services_and_business > real_estate > estate_liquidation,estate_liquidation,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > home_organization,home_organization,Home Organization,real_estate_service,community_and_government > organization > home_organization,home_organization,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > home_staging,home_staging,Home Staging,real_estate_service,services_and_business > real_estate > home_staging,home_staging,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,real_estate_service,services_and_business > real_estate > homeowner_association,homeowner_association,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,real_estate_service,services_and_business > real_estate > housing_cooperative,housing_cooperative,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,real_estate_service,services_and_business > real_estate > kitchen_incubator,kitchen_incubator,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,real_estate_service,services_and_business > real_estate > real_estate_service > land_surveying,land_surveying,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,real_estate_service,services_and_business > real_estate > mobile_home_dealer,mobile_home_dealer,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > property_management,property_management,Property Management,real_estate_service,services_and_business > real_estate > property_management,property_management,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,real_estate_service,services_and_business > real_estate > real_estate_agent,real_estate_agent,,,, -services_and_business,3,FALSE,services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,real_estate_service,services_and_business > real_estate > real_estate_agent > apartment_agent,apartment_agent,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,real_estate_service,services_and_business > real_estate > real_estate_service > real_estate_photography,real_estate_photography,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,real_estate_service,services_and_business > real_estate > shared_office_space,shared_office_space,,,, -services_and_business,1,TRUE,services_and_business > rental_service,rental_service,Rental Service,rental_service,services_and_business > rental_service,rental_service,,,, -services_and_business,2,FALSE,services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,rental_service,services_and_business > real_estate > art_space_rental,art_space_rental,,,, -services_and_business,2,FALSE,services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,rental_service,services_and_business > professional_service > bus_rental,bus_rental,,,, -services_and_business,2,FALSE,services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,rental_service,services_and_business > rental_service > clothing_rental,clothing_rental,,,, -services_and_business,2,FALSE,services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,rental_service,services_and_business > professional_service > junk_removal_and_hauling > dumpster_rental,dumpster_rental,,,, -services_and_business,2,FALSE,services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,rental_service,services_and_business > professional_service > machine_and_tool_rental,machine_and_tool_rental,,,, -services_and_business,2,FALSE,services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,rental_service,services_and_business > rental_service > rental_kiosk,rental_kiosk,,,, -services_and_business,2,FALSE,services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,,,, -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,,,, -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,,,, -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,,,, -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,,,, -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,,,, -services_and_business,1,TRUE,services_and_business > security_service,security_service,Security Service,security_service,services_and_business > professional_service > security_service,security_service,,,, -services_and_business,2,FALSE,services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,security_service,services_and_business > professional_service > fingerprinting_service,fingerprinting_service,,,, -services_and_business,1,TRUE,services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,shipping_or_delivery_service,,,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > courier_and_delivery_service,courier_and_delivery_service,Courier and Delivery Service,shipping_or_delivery_service,services_and_business > professional_service > courier_and_delivery_service,courier_and_delivery_service,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,shipping_or_delivery_service,services_and_business > professional_service > mailbox_center,mailbox_center,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,packaging_contractors_and_service,Packaging Contractors and Service,shipping_or_delivery_service,services_and_business > professional_service > packaging_contractors_and_service,packaging_contractors_and_service,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,shipping_or_delivery_service,community_and_government > post_office,post_office,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,shipping_or_delivery_service,services_and_business > professional_service > shipping_center,shipping_center,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,shipping_or_delivery_service,community_and_government > post_office > shipping_collection_service,shipping_collection_service,,,, -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,shipping_or_delivery_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_shipping,vehicle_shipping,,,, -services_and_business,1,TRUE,services_and_business > storage_facility,storage_facility,Storage Facility,storage_facility,services_and_business > professional_service > storage_facility,storage_facility,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,storage_facility,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_storage_facility,automotive_storage_facility,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > boat_storage_facility,boat_storage_facility,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > package_locker,package_locker,Package Locker,storage_facility,services_and_business > professional_service > package_locker,package_locker,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > rv_and_boat_storage_facility,rv_and_boat_storage_facility,RV and Boat Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > rv_and_boat_storage_facility,rv_and_boat_storage_facility,,,TRUE,boat_storage_facility -services_and_business,2,FALSE,services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > rv_storage_facility,rv_storage_facility,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > self_storage_facility,self_storage_facility,,,, -services_and_business,1,TRUE,services_and_business > technical_service,technical_service,Technical Service,technical_service,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,technical_service,services_and_business > professional_service > acoustical_consultant,acoustical_consultant,,,, -services_and_business,2,FALSE,services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,technical_service,services_and_business > professional_service > bike_repair_maintenance,bike_repair_maintenance,,,, -services_and_business,2,FALSE,services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,technical_service,services_and_business > professional_service > commercial_refrigeration,commercial_refrigeration,,,, -services_and_business,2,FALSE,services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,technical_service,services_and_business > professional_service > computer_hardware_company,computer_hardware_company,,,, -services_and_business,2,FALSE,services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,technical_service,services_and_business > professional_service > electronics_repair_shop,electronics_repair_shop,,,, -services_and_business,2,FALSE,services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,technical_service,services_and_business > professional_service > elevator_service,elevator_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,technical_service,services_and_business > professional_service > generator_installation_repair,generator_installation_repair,,,, -services_and_business,2,FALSE,services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,technical_service,services_and_business > professional_service > hydraulic_repair_service,hydraulic_repair_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,technical_service,services_and_business > professional_service > internet_service_provider,internet_service_provider,,,, -services_and_business,3,FALSE,services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,technical_service,services_and_business > professional_service > internet_service_provider > web_hosting_service,web_hosting_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,technical_service,services_and_business > professional_service > it_service_and_computer_repair,it_service_and_computer_repair,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > data_recovery,data_recovery,Data Recovery,technical_service,services_and_business > professional_service > it_service_and_computer_repair > data_recovery,data_recovery,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,technical_service,services_and_business > professional_service > it_service_and_computer_repair > it_consultant,it_consultant,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,technical_service,services_and_business > professional_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,,,, -services_and_business,2,FALSE,services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,technical_service,services_and_business > professional_service > jewelry_repair_service,jewelry_repair_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > laboratory,laboratory,Laboratory,technical_service,services_and_business > professional_service > laboratory,laboratory,,,, -services_and_business,2,FALSE,services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,technical_service,services_and_business > professional_service > machine_shop,machine_shop,,,, -services_and_business,2,FALSE,services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,technical_service,services_and_business > professional_service > metal_detector_service,metal_detector_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > software_development,software_development,Software Development,technical_service,services_and_business > professional_service > software_development,software_development,,,, -services_and_business,2,FALSE,services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,technical_service,services_and_business > professional_service > taxidermist,taxidermist,,,, -services_and_business,2,FALSE,services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,technical_service,services_and_business > professional_service > telephone_service,telephone_service,,,, -services_and_business,2,FALSE,services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,technical_service,services_and_business > professional_service > watch_repair_service,watch_repair_service,,,, -services_and_business,1,TRUE,services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,telecommunications_service,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > telecommunications_service > telecommunications,telecommunications,Telecommunications,telecommunications_service,services_and_business > professional_service > it_service_and_computer_repair > telecommunications,telecommunications,,,TRUE,telecommunications_service -services_and_business,1,TRUE,services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,utility_energy_infrastructure,,,TRUE,,, -services_and_business,2,FALSE,services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,utility_energy_infrastructure,services_and_business > professional_service > construction_service > wind_energy,wind_energy,,,, -shopping,0,FALSE,shopping,shopping,Shopping,,shopping,shopping,,,, -shopping,1,TRUE,shopping > convenience_store,convenience_store,Convenience Store,convenience_store,shopping > convenience_store,convenience_store,,,, -shopping,1,TRUE,shopping > department_store,department_store,Department Store,department_store,shopping > department_store,department_store,,,, -shopping,1,TRUE,shopping > discount_store,discount_store,Discount Store,discount_store,shopping > discount_store,discount_store,,,, -shopping,1,TRUE,shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store,fashion_and_apparel_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,baby_gear_and_nursery_store,Baby Gear and Nursery Store,fashion_and_apparel_store,shopping > specialty_store > baby_gear_and_furniture_store,baby_gear_and_furniture_store,,TRUE,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store,clothing_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,Plus Size Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,,,, -shopping,4,FALSE,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,Custom T Shirt Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,,,, -shopping,4,FALSE,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,fashion_and_apparel_store,services_and_business > professional_service > diamond_dealer,diamond_dealer,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,fashion_and_apparel_store,services_and_business > professional_service > goldsmith,goldsmith,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,fashion_and_apparel_store,shopping > specialty_store > leather_goods_store,leather_goods_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,fashion_and_apparel_store,shopping > specialty_store > luggage_store,luggage_store,,,, -shopping,2,FALSE,shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > shoe_store,shoe_store,,,, -shopping,3,FALSE,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,,,, -shopping,1,TRUE,shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,food_and_beverage_store,shopping > food_and_beverage_store,food_and_beverage_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,food_and_beverage_store,shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,food_and_beverage_store,shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,food_and_beverage_store,shopping > food_and_beverage_store > butcher_shop,butcher_shop,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,food_and_beverage_store,shopping > food_and_beverage_store > cheese_shop,cheese_shop,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,food_and_beverage_store,shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > csa_farm,csa_farm,CSA Farm,food_and_beverage_store,shopping > food_and_beverage_store > csa_farm,csa_farm,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,food_and_beverage_store,shopping > food_and_beverage_store > fishmonger,fishmonger,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,food_and_beverage_store,shopping > food_and_beverage_store > food_delivery_service > pizza_delivery_service,pizza_delivery_service,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store,grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,food_and_beverage_store,shopping > food_and_beverage_store > health_food_store,health_food_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,food_and_beverage_store,shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,food_and_beverage_store,shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,food_and_beverage_store,shopping > food_and_beverage_store > imported_food_store,imported_food_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,food_and_beverage_store,shopping > food_and_beverage_store > liquor_store,liquor_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,food_and_beverage_store,shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,food_and_beverage_store,shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,food_and_beverage_store,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,food_and_beverage_store,shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,food_and_beverage_store,shopping > food_and_beverage_store > seafood_market,seafood_market,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,food_and_beverage_store,shopping > food_and_beverage_store > smokehouse,smokehouse,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,,,, -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,food_and_beverage_store,shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,food_and_beverage_store,shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,,,, -shopping,2,FALSE,shopping > food_and_beverage_store > water_store,water_store,Water Store,food_and_beverage_store,shopping > food_and_beverage_store > water_store,water_store,,,, -shopping,1,TRUE,shopping > kiosk,kiosk,Kiosk,kiosk,shopping > kiosk,kiosk,,,, -shopping,1,TRUE,shopping > market,market,Market,market,shopping > market,market,,,, -shopping,2,FALSE,shopping > market > bazaar,bazaar,Bazaar,market,shopping > specialty_store > bazaar,bazaar,,,, -shopping,2,TRUE,shopping > market > farmers_market,farmers_market,Farmers Market,farmers_market,shopping > market > farmers_market,farmers_market,,,, -shopping,2,FALSE,shopping > market > health_market,health_market,Health Market,market,shopping > specialty_store > health_market,health_market,,,, -shopping,2,FALSE,shopping > market > holiday_market,holiday_market,Holiday Market,market,shopping > market > holiday_market,holiday_market,,,, -shopping,2,FALSE,shopping > market > market_stall,market_stall,Market Stall,market,shopping > market > market_stall,market_stall,,,, -shopping,2,FALSE,shopping > market > night_market,night_market,Night Market,market,shopping > market > night_market,night_market,,,, -shopping,2,FALSE,shopping > market > public_market,public_market,Public Market,market,shopping > market > public_market,public_market,,,, -shopping,2,FALSE,shopping > market > shopping_passage,shopping_passage,Shopping Passage,market,shopping > shopping_passage,shopping_passage,,,, -shopping,2,FALSE,shopping > market > street_vendor,street_vendor,Street Vendor,market,food_and_drink > casual_eatery > street_vendor,street_vendor,,,, -shopping,1,FALSE,shopping > online_shop,online_shop,Online Shop,specialty_store,shopping > online_shop,online_shop,,,TRUE,shopping -shopping,1,TRUE,shopping > second_hand_store,second_hand_store,Second Hand Store,second_hand_store,shopping > second_hand_store,second_hand_store,,,, -shopping,2,FALSE,shopping > second_hand_store > antique_store,antique_store,Antique Store,second_hand_store,shopping > second_hand_store > antique_store,antique_store,,,, -shopping,2,FALSE,shopping > second_hand_store > flea_market,flea_market,Flea Market,second_hand_store,shopping > second_hand_store > flea_market,flea_market,,,, -shopping,2,FALSE,shopping > second_hand_store > junkyard,junkyard,Junkyard,second_hand_store,services_and_business > professional_service > junkyard,junkyard,,,, -shopping,2,FALSE,shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,second_hand_store,shopping > specialty_store > pawn_shop,pawn_shop,,,, -shopping,2,FALSE,shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,second_hand_store,shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,,,, -shopping,1,TRUE,shopping > shopping_mall,shopping_mall,Shopping Mall,shopping_mall,shopping > shopping_center,shopping_center,,TRUE,, -shopping,1,TRUE,shopping > shopping_service,shopping_service,Shopping Service,shopping_service,,,,,, -shopping,2,FALSE,shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,shopping_service,shopping > personal_shopper,personal_shopper,,,, -shopping,1,TRUE,shopping > specialty_store,specialty_store,Specialty Store,specialty_store,shopping > specialty_store,specialty_store,,,, -shopping,2,FALSE,shopping > specialty_store > adult_store,adult_store,Adult Store,specialty_store,shopping > specialty_store > adult_store,adult_store,,,, -shopping,2,TRUE,shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,animal_and_pet_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,animal_and_pet_store,shopping > specialty_store > horse_equipment_shop,horse_equipment_shop,,,, -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,Livestock Feed and Supply Store,animal_and_pet_store,shopping > specialty_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,animal_and_pet_store,shopping > specialty_store > pet_store,pet_store,,,, -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,animal_and_pet_store,shopping > specialty_store > pet_store > aquatic_pet_store,aquatic_pet_store,,,, -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,animal_and_pet_store,shopping > specialty_store > pet_store > bird_shop,bird_shop,,TRUE,, -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,animal_and_pet_store,shopping > specialty_store > pet_store > reptile_shop,reptile_shop,,TRUE,, -shopping,2,TRUE,shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store,arts_and_crafts_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > art_supply_store,art_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > atelier,atelier,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > cooking_classes,cooking_classes,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > costume_store,costume_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store,craft_store,,,, -shopping,4,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,Embroidery and Crochet Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,,,, -shopping,4,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,knitting_supply_store,Knitting Supply Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store > knitting_supply_store,knitting_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > fabric_store,fabric_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > framing_store,framing_store,,,, -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > hobby_shop,hobby_shop,,,, -shopping,2,FALSE,shopping > specialty_store > auction_house,auction_house,Auction House,specialty_store,shopping > specialty_store > auction_house,auction_house,,,, -shopping,3,FALSE,shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,specialty_store,shopping > specialty_store > auction_house > car_auction,car_auction,,,, -shopping,2,TRUE,shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store,books_mags_music_video_store,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore,bookstore,,,, -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > academic_bookstore,academic_bookstore,,,, -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,comic_books_store,Comic Books Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > comic_books_store,comic_books_store,,,, -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > used_bookstore,used_bookstore,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,music_and_dvd_store,Music and DVD Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > music_and_dvd_store,music_and_dvd_store,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,Newspaper and Magazines Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,video_and_video_game_rental,Video and Video Game Rental,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > video_and_video_game_rental,video_and_video_game_rental,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > video_game_store,video_game_store,,,, -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > vinyl_record_store,vinyl_record_store,,,, -shopping,2,FALSE,shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,specialty_store,shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,,,, -shopping,2,FALSE,shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,specialty_store,shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,,,, -shopping,2,FALSE,shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,specialty_store,shopping > specialty_store > duty_free_store,duty_free_store,,,, -shopping,2,FALSE,shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,specialty_store,shopping > specialty_store > educational_supply_store,educational_supply_store,,,, -shopping,2,TRUE,shopping > specialty_store > electronics_store,electronics_store,Electronics Store,electronics_store,shopping > specialty_store > electronics_store,electronics_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,electronics_store,shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,electronics_store,shopping > specialty_store > electronics_store > battery_store,battery_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,electronics_store,shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,electronics_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > car_stereo_store,car_stereo_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,electronics_store,shopping > specialty_store > electronics_store > computer_store,computer_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,electronics_store,shopping > specialty_store > electronics_store > drone_store,drone_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,electronics_store,shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,electronics_store,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,electronics_store,shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,,,, -shopping,2,FALSE,shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,specialty_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,specialty_store,shopping > specialty_store > agricultural_seed_store,agricultural_seed_store,,,, -shopping,3,FALSE,shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,specialty_store,shopping > specialty_store > farming_equipment_store,farming_equipment_store,,,, -shopping,2,FALSE,shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,specialty_store,shopping > specialty_store > firework_store,firework_store,,TRUE,, -shopping,2,TRUE,shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop,flowers_and_gifts_shop,,,, -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > florist,florist,,,, -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > flower_market,flower_market,,,, -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > gift_shop,gift_shop,,,, -shopping,2,FALSE,shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,specialty_store,shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,,,, -shopping,2,FALSE,shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,specialty_store,shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,,,, -shopping,3,FALSE,shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,specialty_store,services_and_business > professional_service > gunsmith,gunsmith,,,, -shopping,2,TRUE,shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store,home_and_garden_store,,TRUE,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > appliance_store,appliance_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,Bedding and Bath Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,hardware_home_and_garden_store,shopping > specialty_store > building_supply_store,building_supply_store,,,, -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,hardware_home_and_garden_store,shopping > specialty_store > building_supply_store > lumber_store,lumber_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > candle_store,candle_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,hardware_home_and_garden_store,shopping > specialty_store > carpet_store,carpet_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > christmas_tree_store,christmas_tree_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,do_it_yourself_store,Do It Yourself Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > do_it_yourself_store,do_it_yourself_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > electrical_supply_store,electrical_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,hardware_home_and_garden_store,shopping > specialty_store > flooring_store,flooring_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > furniture_accessory_store,furniture_accessory_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > furniture_store,furniture_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > grilling_equipment_store,grilling_equipment_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hardware_store,hardware_store,,,, -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,Welding Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > holiday_decor_store,holiday_decor_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_decor_store,home_decor_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_goods_store,home_goods_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_improvement_store,home_improvement_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,Hot Tub and Pool Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,Kitchen and Bath Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,,,, -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,Bathroom Fixture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,,,, -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,Kitchen Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > lawn_mower_store,lawn_mower_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > lighting_store,lighting_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > linen_store,linen_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > mattress_store,mattress_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,Nursery and Gardening Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,,,, -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,Hydroponic Gardening Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > paint_store,paint_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > rug_store,rug_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > tile_store,tile_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > wallpaper_store,wallpaper_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > window_treatment_store,window_treatment_store,,,, -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > woodworking_supply_store,woodworking_supply_store,,,, -shopping,2,FALSE,shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,specialty_store,shopping > specialty_store > medical_supply_store,medical_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,specialty_store,shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,specialty_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,,,, -shopping,2,TRUE,shopping > specialty_store > musical_instrument_and_pro_audio_store,musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,musical_instrument_and_pro_audio_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > dj_equipment_store,dj_equipment_store,DJ Equipment Store,musical_instrument_and_pro_audio_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store,musical_instrument_store,Musical Instrument Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store,musical_instrument_store,,TRUE,, -shopping,4,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,guitar_store,Guitar Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store > guitar_store,guitar_store,,,, -shopping,4,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,piano_store,Piano Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store > piano_store,piano_store,,,, -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > pro_audio_store,pro_audio_store,Pro Audio Store,musical_instrument_and_pro_audio_store,,,TRUE,,, -shopping,2,TRUE,shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,office_supply_store,shopping > specialty_store > office_equipment,office_equipment,,TRUE,, -shopping,3,FALSE,shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,office_supply_store,shopping > specialty_store > packing_supply_store,packing_supply_store,,,, -shopping,3,FALSE,shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,office_supply_store,shopping > specialty_store > pen_store,pen_store,,,, -shopping,2,FALSE,shopping > specialty_store > outlet_store,outlet_store,Outlet Store,specialty_store,shopping > outlet_store,outlet_store,,,, -shopping,2,FALSE,shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,specialty_store,shopping > specialty_store > party_supply_store,party_supply_store,,,, -shopping,2,TRUE,shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,personal_care_and_beauty_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > personal_care_and_beauty_store > bath_and_body_store,bath_and_body_store,Bath and Body Store,personal_care_and_beauty_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store,cosmetic_and_beauty_supply_store,,TRUE,, -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,cosmetics_and_fragrance_store,Cosmetics and Fragrance Store,personal_care_and_beauty_store,,,TRUE,,, -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,hair_supply_store,Hair Supply Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > hair_supply_store,hair_supply_store,,,, -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > perfume_store,perfume_store,Perfume Store,personal_care_and_beauty_store,shopping > specialty_store > perfume_store,perfume_store,,,TRUE,cosmetics_and_fragrance_store -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > wig_store,wig_store,,,, -shopping,2,TRUE,shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,pharmacy_and_drug_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,pharmacy_and_drug_store,shopping > specialty_store > drugstore,drugstore,,,, -shopping,3,FALSE,shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,pharmacy_and_drug_store,shopping > specialty_store > pharmacy,pharmacy,,,, -shopping,2,FALSE,shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,specialty_store,shopping > specialty_store > pop_up_store,pop_up_store,,,, -shopping,2,FALSE,shopping > specialty_store > props,props,Props,specialty_store,shopping > specialty_store > props,props,,,TRUE,specialty_store -shopping,2,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,specialty_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,specialty_store,,,,,, -shopping,4,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > hindu_goods_store,hindu_goods_store,Hindu Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > islamic_goods_store,islamic_goods_store,Islamic Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > jewish_goods_store,jewish_goods_store,Jewish Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spirit_store,mind_body_spirit_store,Mind Body Spirit Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > religious_items_store,religious_items_store,Religious Items Store,specialty_store,shopping > specialty_store > religious_items_store,religious_items_store,,,TRUE,religious_and_spiritual_goods_store -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > spiritual_items_store,spiritual_items_store,Spiritual Items Store,specialty_store,shopping > specialty_store > spiritual_items_store,spiritual_items_store,,,TRUE,religious_and_spiritual_goods_store -shopping,2,FALSE,shopping > specialty_store > safe_store,safe_store,Safe Store,specialty_store,shopping > specialty_store > safe_store,safe_store,,,, -shopping,2,FALSE,shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,specialty_store,shopping > specialty_store > safety_equipment_store,safety_equipment_store,,,, -shopping,2,FALSE,shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,specialty_store,shopping > specialty_store > e_cigarette_store,e_cigarette_store,,TRUE,, -shopping,3,FALSE,shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,specialty_store,shopping > specialty_store > cannabis_dispensary,cannabis_dispensary,,,, -shopping,2,FALSE,shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,specialty_store,shopping > specialty_store > souvenir_store,souvenir_store,,,, -shopping,2,TRUE,shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store,sporting_goods_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > archery_store,archery_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > bike_store,bike_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > dive_store,dive_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,sporting_goods_store,shopping > specialty_store > pool_and_billiards,pool_and_billiards,,TRUE,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > skate_store,skate_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,,,, -shopping,4,FALSE,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > surf_store,surf_store,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,,,, -shopping,2,FALSE,shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,specialty_store,,,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,specialty_store,shopping > specialty_store > army_and_navy_store,army_and_navy_store,,,, -shopping,3,FALSE,shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,specialty_store,shopping > specialty_store > military_surplus_store,military_surplus_store,,,, -shopping,2,TRUE,shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,toys_and_games_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,toys_and_games_store,shopping > specialty_store > tabletop_games_store,tabletop_games_store,,,, -shopping,3,FALSE,shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,toys_and_games_store,shopping > specialty_store > toy_store,toy_store,,,, -shopping,2,FALSE,shopping > specialty_store > trophy_store,trophy_store,Trophy Store,specialty_store,shopping > specialty_store > trophy_store,trophy_store,,,, -shopping,2,TRUE,shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,,,, -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,,,, -shopping,4,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store > automotive_parts_and_accessories,automotive_parts_and_accessories,Automotive Parts and Accessories,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories,automotive_parts_and_accessories,,,TRUE,auto_parts_store -shopping,4,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store > interlock_system,interlock_system,Interlock System,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > interlock_system,interlock_system,,,TRUE,auto_parts_store -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,,,, -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorcycle_gear,motorcycle_gear,,TRUE,, -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorsports_store,motorsports_store,,,, -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories,recreational_vehicle_parts_and_accessories,,TRUE,, -shopping,1,TRUE,shopping > superstore,superstore,Superstore,superstore,shopping > superstore,superstore,,,, -shopping,1,TRUE,shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer,vehicle_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,vehicle_dealer,travel_and_transportation > aircraft_and_air_transport > aircraft_dealer,aircraft_dealer,,,, -shopping,2,TRUE,shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,auto_dealer,shopping > vehicle_dealer > car_dealer,car_dealer,,TRUE,, -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,auto_dealer,services_and_business > professional_service > car_broker,car_broker,,TRUE,, -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,auto_dealer,travel_and_transportation > automotive_and_ground_transport > automotive > automobile_leasing,automobile_leasing,,TRUE,, -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,auto_dealer,shopping > vehicle_dealer > car_dealer > used_car_dealer,used_car_dealer,,TRUE,, -shopping,2,FALSE,shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,vehicle_dealer,travel_and_transportation > watercraft_and_water_transport > boat_dealer,boat_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,vehicle_dealer,shopping > vehicle_dealer > forklift_dealer,forklift_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,vehicle_dealer,shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,vehicle_dealer,shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,vehicle_dealer,shopping > vehicle_dealer > scooter_dealer,scooter_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,vehicle_dealer,shopping > vehicle_dealer > trailer_dealer,trailer_dealer,,,, -shopping,2,FALSE,shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,vehicle_dealer,shopping > vehicle_dealer > truck_dealer,truck_dealer,,,, -shopping,1,TRUE,shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,warehouse_club_store,shopping > wholesale_store,wholesale_store,,TRUE,, -sports_and_recreation,0,FALSE,sports_and_recreation,sports_and_recreation,Sports and Recreation,,sports_and_recreation,sports_and_recreation,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > park,park,Park,park,sports_and_recreation > park,park,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > dog_park,dog_park,Dog Park,dog_park,sports_and_recreation > park > dog_park,dog_park,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,park,sports_and_recreation > park > mountain_bike_park,mountain_bike_park,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > national_park,national_park,National Park,national_park,sports_and_recreation > park > national_park,national_park,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > playground,playground,Playground,playground,sports_and_recreation > sports_and_recreation_venue > playground,playground,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > state_park,state_park,State Park,park,sports_and_recreation > park > state_park,state_park,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > water_park,water_park,Water Park,park,sports_and_recreation > park > water_park,water_park,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service,sports_and_recreation_rental_and_service,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > atv_rental_tour,atv_rental_tour,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > beach_equipment_rental,beach_equipment_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > bike_rental,bike_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service,boat_hire_service,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_rental_and_training,boat_rental_and_training,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,Canoe and Kayak Hire Service,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > jet_skis_rental,jet_skis_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > paddleboard_rental,paddleboard_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > scooter_rental,scooter_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sledding_rental,sledding_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > snorkeling_equipment_rental,snorkeling_equipment_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sport_equipment_rental,sport_equipment_rental,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,recreational_equipment_rental,sports_and_recreation > water_sport > surfing > surfboard_rental,surfboard_rental,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,recreational_trail_or_path,sports_and_recreation > trail,trail,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,recreational_trail_or_path,sports_and_recreation > park > backpacking_area,backpacking_area,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,recreational_trail_or_path,sports_and_recreation > sports_and_recreation_venue > bike_path,bike_path,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,recreational_trail_or_path,sports_and_recreation > trail > hiking_trail,hiking_trail,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,recreational_trail_or_path,sports_and_recreation > trail > mountain_bike_trail,mountain_bike_trail,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > sport_league,sport_league,Sport League,sport_league,,,TRUE,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,sport_league,sports_and_recreation > sports_club_and_league > amateur_sports_league,amateur_sports_league,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > esports_league,esports_league,Esports League,sport_league,sports_and_recreation > sports_club_and_league > esports_league,esports_league,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,sport_league,sports_and_recreation > sports_club_and_league > professional_sports_league,professional_sports_league,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,sport_league,sports_and_recreation > sports_club_and_league > school_sports_league,school_sports_league,,TRUE,, -sports_and_recreation,1,TRUE,sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue,sports_and_recreation_venue,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,sport_or_fitness_facility,sports_and_recreation > adventure_sport,adventure_sport,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,sport_or_fitness_facility,sports_and_recreation > adventure_sport > axe_throwing,axe_throwing,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > bungee_jumping_center,bungee_jumping_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > challenge_courses_center,challenge_courses_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > cliff_jumping_center,cliff_jumping_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,sport_or_fitness_facility,sports_and_recreation > adventure_sport > climbing_service,climbing_service,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > high_gliding_center,high_gliding_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,sport_or_fitness_facility,sports_and_recreation > adventure_sport > rock_climbing_spot,rock_climbing_spot,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > ziplining_center,ziplining_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > adventure_sports_center,adventure_sports_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > atv_recreation_park,atv_recreation_park,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > batting_cage,batting_cage,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > bowling_alley,bowling_alley,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > boxing_class,boxing_class,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > boxing_gym,boxing_gym,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > cardio_class,cardio_class,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > climbing_class,climbing_class,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > curling_center,curling_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,sport_or_fitness_facility,sports_and_recreation > curling_ice,curling_ice,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > cycling_class,cycling_class,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > dance_studio,dance_studio,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center,diving_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center > free_diving_center,free_diving_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center > scuba_diving_center,scuba_diving_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction,diving_instruction,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > free_diving_instruction,free_diving_instruction,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,fitness_studio,,,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > aerial_fitness_center,aerial_fitness_center,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > barre_class,barre_class,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > boot_camp,boot_camp,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > pilates_studio,pilates_studio,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > qi_gong_studio,qi_gong_studio,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > tai_chi_studio,tai_chi_studio,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > yoga_studio,yoga_studio,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > fitness_trainer,fitness_trainer,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > flyboarding_center,flyboarding_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > flyboarding_rental,flyboarding_rental,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,golf_course,sports_and_recreation > sports_and_recreation_venue > golf_course,golf_course,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > golf_course > driving_range,driving_range,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > golf_instructor,golf_instructor,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,gym,sports_and_recreation > sports_and_recreation_venue > gym,gym,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > gym > cycle_studio,cycle_studio,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > gymnastics_center,gymnastics_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hang_gliding_center,hang_gliding_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink,hockey_rink,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink > ice_hockey_rink,ice_hockey_rink,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink > roller_hockey_rink,roller_hockey_rink,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > horse_riding,horse_riding,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > horse_riding > equestrian_facility,equestrian_facility,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_rental_and_service > horseback_riding_service,horseback_riding_service,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,sport_or_fitness_facility,sports_and_recreation > indoor_playcenter,indoor_playcenter,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > kiteboarding,kiteboarding,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > kiteboarding_instruction,kiteboarding_instruction,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,sport_or_fitness_facility,sports_and_recreation > laser_tag,laser_tag,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > miniature_golf_course,miniature_golf_course,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > paddleboarding_center,paddleboarding_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > paddleboarding_lessons,paddleboarding_lessons,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,sport_or_fitness_facility,sports_and_recreation > paintball,paintball,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_rental_and_service > parasailing_ride_service,parasailing_ride_service,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > pool_billiards,pool_billiards,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > pool_billiards > pool_hall,pool_hall,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track,race_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > go_kart_track,go_kart_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > horse_racing_track,horse_racing_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > motor_race_track,motor_race_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > track_and_field_track,track_and_field_track,Track and Field Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > track_and_field_track,track_and_field_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > velodrome,velodrome,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > racing_experience,racing_experience,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > rock_climbing_gym,rock_climbing_gym,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > rock_climbing_instructor,rock_climbing_instructor,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,sport_or_fitness_facility,sports_and_recreation > running_and_track,running_and_track,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,sport_or_fitness_facility,sports_and_recreation > running_and_track > running,running,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track > track_field_event,track_field_event,Track Field Event,sport_or_fitness_facility,sports_and_recreation > running_and_track > track_field_event,track_field_event,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > self_defense_class,self_defense_class,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > shooting_range,shooting_range,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > archery_range,archery_range,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,skate_park,sports_and_recreation > sports_and_recreation_venue > skate_park,skate_park,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink,skating_rink,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > ice_skating_rink,ice_skating_rink,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > roller_skating_rink,roller_skating_rink,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > ski_and_snowboard_school,ski_and_snowboard_school,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving,sky_diving,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,Sky Diving Drop Zone,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving > skydiving_center,skydiving_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,sport_or_fitness_facility,sports_and_recreation > snow_sport,snow_sport,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,sport_or_fitness_facility,sports_and_recreation > snow_sport > bobsledding_field,bobsledding_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_area,ski_area,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_chairlift,ski_chairlift,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_chalet,ski_chalet,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_resort_area,ski_resort_area,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,sport_or_fitness_facility,sports_and_recreation > snow_sport > snowboarding_center,snowboarding_center,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,sport_court,,,TRUE,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,sport_court,sports_and_recreation > sports_and_recreation_venue > badminton_court,badminton_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > basketball_court,basketball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > beach_volleyball_court,beach_volleyball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > bocce_ball_court,bocce_ball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > handball_court,handball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > pickleball_court,pickleball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > racquetball_court,racquetball_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,sport_court,sports_and_recreation > sports_and_recreation_venue > squash_court,squash_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,sport_court,sports_and_recreation > sports_and_recreation_venue > hockey_field > street_hockey_court,street_hockey_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,sport_court,sports_and_recreation > sports_and_recreation_venue > tennis_court,tennis_court,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > volleyball_court,volleyball_court,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,sport_field,,,TRUE,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,sport_field,sports_and_recreation > sports_and_recreation_venue > airsoft_field,airsoft_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,sport_field,sports_and_recreation > sports_and_recreation_venue > american_football_field,american_football_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,sport_field,sports_and_recreation > sports_and_recreation_venue > baseball_field,baseball_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,sport_field,sports_and_recreation > sports_and_recreation_venue > disc_golf_course,disc_golf_course,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,sport_field,sports_and_recreation > sports_and_recreation_venue > futsal_field,futsal_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,sport_field,sports_and_recreation > sports_and_recreation_venue > hockey_field,hockey_field,,,, -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,sport_field,sports_and_recreation > sports_and_recreation_venue > hockey_field > field_hockey_pitch,field_hockey_pitch,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,sport_field,sports_and_recreation > sports_and_recreation_venue > lacrosse_field,lacrosse_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,sport_field,sports_and_recreation > sports_and_recreation_venue > rugby_pitch,rugby_pitch,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,sport_field,sports_and_recreation > sports_and_recreation_venue > soccer_field,soccer_field,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,sport_field,sports_and_recreation > sports_and_recreation_venue > softball_field,softball_field,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,sports_complex,,,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > surfing_school,surfing_school,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,swimming_pool,sports_and_recreation > sports_and_recreation_venue > swimming_pool,swimming_pool,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,swimming_pool,sports_and_recreation > sports_and_fitness_instruction > swimming_instructor,swimming_instructor,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > trampoline_park,trampoline_park,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > tubing_provider,tubing_provider,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,sport_or_fitness_facility,sports_and_recreation > water_sport,water_sport,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,sport_or_fitness_facility,sports_and_recreation > water_sport > boating_place,boating_place,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing,fishing,,,, -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing > fishing_area,fishing_area,,,, -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing > fishing_charter,fishing_charter,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,sport_or_fitness_facility,sports_and_recreation > water_sport > rafting_kayaking_area,rafting_kayaking_area,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,sport_or_fitness_facility,sports_and_recreation > water_sport > sailing_area,sailing_area,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,sport_or_fitness_facility,sports_and_recreation > water_sport > snorkeling,snorkeling,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,sport_or_fitness_facility,sports_and_recreation > water_sport > surfing,surfing,,,, -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,sport_or_fitness_facility,sports_and_recreation > water_sport > surfing > windsurfing_center,windsurfing_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > wildlife_hunting_range,wildlife_hunting_range,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league,sports_club_and_league,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > beach_volleyball_club,beach_volleyball_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > curling_club,curling_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > fencing_club,fencing_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > fishing_club,fishing_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > football_club,football_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > go_kart_club,go_kart_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > golf_club,golf_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > golf_club > indoor_golf_center,indoor_golf_center,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > gymnastics_club,gymnastics_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club,hockey_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > field_hockey_club,field_hockey_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > ice_hockey_club,ice_hockey_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > roller_hockey_club,roller_hockey_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > street_hockey_club,street_hockey_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > lacrosse_club,lacrosse_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > lawn_bowling_club,lawn_bowling_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club,martial_arts_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,Chinese Martial Arts Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > karate_club,karate_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > kickboxing_club,kickboxing_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,muay_thai_club,Muay Thai Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > muay_thai_club,muay_thai_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > taekwondo_club,taekwondo_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > naturist_club,naturist_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > paddle_tennis_club,paddle_tennis_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > pickleball_club,pickleball_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > rowing_club,rowing_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club,running_and_track_club,Running and Track Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club,running_and_track_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club > running_club,running_club,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club > track_and_field_club,track_and_field_club,Track and Field Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club > track_and_field_club,track_and_field_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > sailing_club,sailing_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > soccer_club,soccer_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > surf_lifesaving_club,surf_lifesaving_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > table_tennis_club,table_tennis_club,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > volleyball_club,volleyball_club,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > sport_team,sport_team,Sport Team,sport_team,,,TRUE,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,sport_team,sports_and_recreation > sports_club_and_league > amateur_sports_team,amateur_sports_team,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,sport_team,sports_and_recreation > sports_club_and_league > esports_team,esports_team,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,sport_team,sports_and_recreation > sports_club_and_league > professional_sports_team,professional_sports_team,,TRUE,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,sport_team,sports_and_recreation > sports_club_and_league > school_sports_team,school_sports_team,,TRUE,, -sports_and_recreation,1,FALSE,sports_and_recreation > sports_and_fitness_instruction,sports_and_fitness_instruction,Sports and Fitness Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction,sports_and_fitness_instruction,,,TRUE,sport_or_fitness_facility -travel_and_transportation,0,FALSE,travel_and_transportation,travel_and_transportation,Travel and Transportation,,travel_and_transportation,travel_and_transportation,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility,air_transport_facility_or_service,,,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies,aircraft_parts_and_supplies,Aircraft Parts and Supplies,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies,aircraft_parts_and_supplies,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,avionics_shop,Avionics Shop,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies > avionics_shop,avionics_shop,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airline,airline,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airline_ticket_agency,airline_ticket_agency,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,airport,travel_and_transportation > aircraft_and_air_transport > airport,airport,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,airport,travel_and_transportation > aircraft_and_air_transport > airport > airport_terminal,airport_terminal,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,airport,travel_and_transportation > aircraft_and_air_transport > airport > balloon_port,balloon_port,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,airport,travel_and_transportation > aircraft_and_air_transport > airport > gliderport,gliderport,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,airport,travel_and_transportation > aircraft_and_air_transport > airport > heliport,heliport,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,airport,travel_and_transportation > aircraft_and_air_transport > airport > seaplane_base,seaplane_base,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,airport,travel_and_transportation > aircraft_and_air_transport > airport > ultralight_airport,ultralight_airport,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airport_shuttle,airport_shuttle,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > private_jet_charter,private_jet_charter,,,, -travel_and_transportation,1,FALSE,travel_and_transportation > aircraft_and_air_transport,aircraft_and_air_transport,Aircraft and Air Transport,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport,aircraft_and_air_transport,,,TRUE,air_transport_facility_or_service -travel_and_transportation,1,TRUE,travel_and_transportation > fueling_station,fueling_station,Fueling Station,fueling_station,travel_and_transportation > automotive_and_ground_transport > fueling_station,fueling_station,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,ev_charging_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > ev_charging_station,ev_charging_station,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station,gas_station,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > fuel_dock,fuel_dock,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > truck_gas_station,truck_gas_station,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,ground_transport_facility_or_service,travel_and_transportation > automotive_and_ground_transport,automotive_and_ground_transport,,TRUE,, -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > automotive,automotive,Automotive,ground_transport_facility_or_service,travel_and_transportation > automotive_and_ground_transport > automotive,automotive,,,TRUE,automotive_service -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service,bikes_and_bike_service,Bikes and Bike Service,ground_transport_facility_or_service,travel_and_transportation > bikes_and_bike_service,bikes_and_bike_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,bike_sharing_location,Bike Sharing Location,ground_transport_facility_or_service,travel_and_transportation > bikes_and_bike_service > bike_sharing_location,bike_sharing_location,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,public_transit_facility_or_service,Public Transit Facility or Service,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit,buses_and public_transit,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,bus_station,Bus Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_station,bus_station,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,bus_ticket_agency,Bus Ticket Agency,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_ticket_agency,bus_ticket_agency,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,cable_car_service,Cable Car Service,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > cable_car_service,cable_car_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,coach_bus,Coach Bus,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > coach_bus,coach_bus,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > light_rail_and_subway_station,light_rail_and_subway_station,Light Rail and Subway Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > light_rail_and_subway_station,light_rail_and_subway_station,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,metro_station,Metro Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > metro_station,metro_station,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,rail_facility_or_service,Rail Facility or Service,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport,trains_and_rail_transport,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_service,railway_service,Railway Service,rail_facility_or_service,community_and_government > railway_service,railway_service,,,TRUE,rail_facility_or_service -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,railway_ticket_agent,Railway Ticket Agent,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > railway_ticket_agent,railway_ticket_agent,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train,train,,,, -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,train_station,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train_station,train_station,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,ground_transport_facility_or_service,travel_and_transportation > road_structures_and_service,road_structures_and_service,,,, -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,rest_stop,Rest Stop,rest_stop,travel_and_transportation > road_structures_and_service > rest_stop,rest_stop,,,, -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,toll_station,travel_and_transportation > road_structures_and_service > toll_station,toll_station,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,ground_transport_facility_or_service,travel_and_transportation > road_structures_and_service > truck_stop,truck_stop,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,taxi_or_ride_share_service,Taxi or Ride Share Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share,taxi_and_ride_share,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,car_sharing,Car Sharing,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > car_sharing,car_sharing,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,limo_service,Limo Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > limo_service,limo_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,pedicab_service,Pedicab Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > pedicab_service,pedicab_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,ride_share_service,Ride Share Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > ride_sharing,ride_sharing,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,taxi_service,Taxi Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service,taxi_service,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,taxi_stand,Taxi Stand,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service > taxi_stand,taxi_stand,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,town_car_service,Town Car Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > town_car_service,town_car_service,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > parking,parking,Parking,parking,travel_and_transportation > automotive_and_ground_transport > parking,parking,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,parking,travel_and_transportation > bikes_and_bike_service > bike_parking,bike_parking,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,parking,travel_and_transportation > automotive_and_ground_transport > parking > motorcycle_parking,motorcycle_parking,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,park_and_ride,travel_and_transportation > automotive_and_ground_transport > parking > park_and_ride,park_and_ride,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,parking_garage,,,TRUE,,, -travel_and_transportation,2,TRUE,travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,parking_lot,,,TRUE,,, -travel_and_transportation,1,FALSE,travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,ground_transport_facility_or_service,travel_and_transportation > transport_interchange,transport_interchange,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > travel_service,travel_service,Travel Service,travel_service,travel_and_transportation > travel,travel,,TRUE,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,travel_service,travel_and_transportation > travel > agriturism,agriturism,,TRUE,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,travel_service,travel_and_transportation > travel > luggage_storage,luggage_storage,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,travel_service,travel_and_transportation > travel > passport_and_visa_service,passport_and_visa_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,travel_service,travel_and_transportation > travel > passport_and_visa_service > visa_agent,visa_agent,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,travel_service,travel_and_transportation > travel > tour,tour,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,travel_service,travel_and_transportation > travel > tour > aerial_tour,aerial_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,travel_service,travel_and_transportation > travel > tour > architectural_tour,architectural_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,travel_service,travel_and_transportation > travel > tour > art_tour,art_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,travel_service,travel_and_transportation > travel > tour > beer_tour,beer_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,travel_service,travel_and_transportation > travel > tour > bike_tour,bike_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,travel_service,travel_and_transportation > travel > tour > boat_tour,boat_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,travel_service,travel_and_transportation > travel > tour > bus_tour,bus_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,travel_service,travel_and_transportation > travel > tour > cannabis_tour,cannabis_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,travel_service,travel_and_transportation > travel > tour > food_tour,food_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,travel_service,travel_and_transportation > travel > tour > historical_tour,historical_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,travel_service,travel_and_transportation > travel > tour > hot_air_balloons_tour,hot_air_balloons_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,travel_service,travel_and_transportation > travel > tour > scooter_tour,scooter_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,travel_service,travel_and_transportation > travel > tour > sightseeing_tour_agency,sightseeing_tour_agency,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,travel_service,travel_and_transportation > travel > tour > walking_tour,walking_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,travel_service,travel_and_transportation > travel > tour > whale_watching_tour,whale_watching_tour,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,travel_service,travel_and_transportation > travel > tour > wine_tour,wine_tour,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,travel_service,travel_and_transportation > travel > travel_agent,travel_agent,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,travel_service,travel_and_transportation > travel > vacation_rental_agent,vacation_rental_agent,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,travel_service,travel_and_transportation > travel > visitor_center,visitor_center,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,vehicle_service,,,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,vehicle_service,travel_and_transportation > aircraft_and_air_transport > aircraft_repair,aircraft_repair,,TRUE,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair,automotive_services_and_repair,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_body_shop,auto_body_shop,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_customization,auto_customization,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_detailing,auto_detailing,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service,auto_glass_service,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting,car_window_tinting,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,Windshield Installation and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_restoration_service,auto_restoration_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_security,auto_security,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_upholstery,auto_upholstery,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automobile_registration_service,automobile_registration_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_consultant,automotive_consultant,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair,automotive_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > auto_electrical_repair,auto_electrical_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,brake_service_and_repair,Brake Service and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > brake_service_and_repair,brake_service_and_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > diy_auto_shop,diy_auto_shop,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > engine_repair_service,engine_repair_service,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,Exhaust and Muffler Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > hybrid_car_repair,hybrid_car_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,Tire Dealer and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > trailer_repair,trailer_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > transmission_repair,transmission_repair,,,, -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,Wheel and Rim Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_wheel_polishing_service,automotive_wheel_polishing_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > car_buyer,car_buyer,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_inspection,car_inspection,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_stereo_installation,car_stereo_installation,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_wash,car_wash,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > emergency_roadside_service,emergency_roadside_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > emissions_inspection,emissions_inspection,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > oil_change_station,oil_change_station,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > tire_shop,tire_shop,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > towing_service,towing_service,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > truck_repair,truck_repair,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_wrap,vehicle_wrap,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,vehicle_service,travel_and_transportation > watercraft_and_water_transport > boat_service_and_repair,boat_service_and_repair,,TRUE,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,vehicle_service,services_and_business > professional_service > mooring_service,mooring_service,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,vehicle_service,services_and_business > professional_service > delegated_driver_service,delegated_driver_service,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,vehicle_service,,,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorcycle_repair,motorcycle_repair,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,vehicle_service,,,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > recreation_vehicle_repair,recreation_vehicle_repair,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,vehicle_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance,roadside_assistance,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > mobile_dent_repair,mobile_dent_repair,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,water_transport_facility_or_service,travel_and_transportation > watercraft_and_water_transport,watercraft_and_water_transport,,TRUE,, -travel_and_transportation,2,TRUE,travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,ferry_service,travel_and_transportation > watercraft_and_water_transport > ferry_service,ferry_service,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,water_taxi_service,travel_and_transportation > watercraft_and_water_transport > water_taxi,water_taxi,,TRUE,, -travel_and_transportation,2,FALSE,travel_and_transportation > watercraft_and_water_transport > waterway,waterway,Waterway,water_feature,travel_and_transportation > watercraft_and_water_transport > waterway,waterway,,,TRUE,water_feature -,2,FALSE,services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,b2b_service,,,TRUE,,, \ No newline at end of file diff --git a/docs/guides/places/csv/2026-03-04-categories-hierarchies.csv b/docs/guides/places/csv/2026-03-04-categories-hierarchies.csv deleted file mode 100644 index fea5ba0b4..000000000 --- a/docs/guides/places/csv/2026-03-04-categories-hierarchies.csv +++ /dev/null @@ -1,2355 +0,0 @@ -Group (L0),Level,Is Basic,New Primary Hierarchy,New Primary Category,New Display Name,New Basic Level Category,Old Primary Hierarchy,Old Primary Category,Old Basic Level Category,PC Added,PC Hierarchy Change,PC Name Change,PC Removed,PC Redirect To,BLC Change -arts_and_entertainment,0,FALSE,arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,,arts_and_entertainment,arts_and_entertainment,entertainment_location,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,amusement_attraction,arts_and_entertainment > amusement_attraction,amusement_attraction,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,amusement_park,arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,amusement_park,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,amusement_attraction,arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,festival_venue,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,amusement_attraction,arts_and_entertainment > amusement_attraction > carousel,carousel,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,amusement_attraction,arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,amusement_attraction,arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,entertainment_location,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,animal_attraction,arts_and_entertainment > animal_attraction,animal_attraction,animal_attraction,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,aquarium,arts_and_entertainment > animal_attraction > aquarium,aquarium,aquarium,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,animal_attraction,arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,wildlife_sanctuary,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,zoo,arts_and_entertainment > animal_attraction > zoo,zoo,zoo,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,zoo,arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,zoo,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,zoo,arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,zoo,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,artspace,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,art_gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,art_gallery,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,artist_studio,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,Paint and Sip Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,Paint Your Own Pottery Venue,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,statue_sculpture,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,statue_sculpture,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,street_art,arts_and_entertainment > arts_and_crafts_space > street_art,street_art,street_art,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > event_venue,event_venue,Event Venue,event_venue,arts_and_entertainment > event_venue,event_venue,event_space,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,event_venue,arts_and_entertainment > event_venue > auditorium,auditorium,event_space,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,event_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,event_space,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > festival_venue,festival_venue,Festival Venue,festival_venue,arts_and_entertainment > festival_venue,festival_venue,festival_venue,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,fairgrounds,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,festival_venue,arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,festival_venue,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,festival_venue,arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,festival_venue,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,gaming_venue,arts_and_entertainment > gaming_venue,gaming_venue,gaming_venue,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,arcade,arts_and_entertainment > gaming_venue > arcade,arcade,arcade,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,gaming_venue,arts_and_entertainment > gaming_venue > betting_center,betting_center,gaming_venue,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,gaming_venue,arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,bingo_hall,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > gaming_venue > casino,casino,Casino,casino,arts_and_entertainment > gaming_venue > casino,casino,casino,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,gaming_venue,arts_and_entertainment > gaming_venue > escape_room,escape_room,escape_room,,,,,,TRUE -services_and_business,2,FALSE,arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,gaming_venue,services_and_business > professional_service > lottery_ticket,lottery_ticket,specialty_store,,TRUE,TRUE,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,gaming_venue,arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,entertainment_location,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > movie_theater,movie_theater,Movie Theater,movie_theater,arts_and_entertainment > movie_theater,movie_theater,movie_theater,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive In Theater,movie_theater,arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,movie_theater,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,movie_theater,arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,movie_theater,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > museum,museum,Museum,museum,arts_and_entertainment > museum,museum,museum,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > art_museum,art_museum,Art Museum,museum,arts_and_entertainment > museum > art_museum,art_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,museum,arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,museum,arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,museum,arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,museum,arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,museum,arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,museum,arts_and_entertainment > museum > art_museum > design_museum,design_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,museum,arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,museum,arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,art_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,museum,arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,art_museum,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,museum,arts_and_entertainment > museum > aviation_museum,aviation_museum,science_museum,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,museum,arts_and_entertainment > museum > childrens_museum,childrens_museum,childrens_museum,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > history_museum,history_museum,History Museum,museum,arts_and_entertainment > museum > history_museum,history_museum,history_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,museum,arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,museum,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,museum,arts_and_entertainment > museum > history_museum > community_museum,community_museum,museum,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > military_museum,military_museum,Military Museum,museum,arts_and_entertainment > museum > military_museum,military_museum,museum,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > national_museum,national_museum,National Museum,museum,arts_and_entertainment > museum > national_museum,national_museum,museum,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > science_museum,science_museum,Science Museum,museum,arts_and_entertainment > museum > science_museum,science_museum,science_museum,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,museum,arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,science_museum,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,museum,arts_and_entertainment > museum > sports_museum,sports_museum,museum,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > museum > state_museum,state_museum,State Museum,museum,arts_and_entertainment > museum > state_museum,state_museum,museum,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,nightlife_venue,arts_and_entertainment > nightlife_venue,nightlife_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,entertainment_location,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,nightlife_venue,arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,social_club,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,nightlife_venue,arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,social_club,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,dance_club,arts_and_entertainment > nightlife_venue > dance_club,dance_club,dance_club,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,dance_club,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,dance_club,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,performing_arts_venue,arts_and_entertainment > performing_arts_venue,performing_arts_venue,performing_arts_venue,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,performing_arts_venue,arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,performing_arts_venue,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,performing_arts_venue,arts_and_entertainment > performing_arts_venue > cabaret,cabaret,performing_arts_venue,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,comedy_club,arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,comedy_club,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,music_venue,music_venue,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,music_venue,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,music_venue,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,music_venue,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,music_venue,,,,,, -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,performing_arts_venue,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,performing_arts_venue,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,threatre_venue,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,performing_arts_venue,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,rural_attraction,arts_and_entertainment > rural_attraction,rural_attraction,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,rural_attraction,arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,farm,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,rural_attraction,arts_and_entertainment > rural_attraction > corn_maze,corn_maze,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,rural_attraction,arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,rural_attraction,arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,rodeo,arts_and_entertainment > rural_attraction > rodeo,rodeo,entertainment_location,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > science_attraction,science_attraction,Science Attraction,science_attraction,arts_and_entertainment > science_attraction,science_attraction,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,makerspace,arts_and_entertainment > science_attraction > makerspace,makerspace,makerspace,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > science_attraction > observatory,observatory,Observatory,science_attraction,arts_and_entertainment > science_attraction > observatory,observatory,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,planetarium,arts_and_entertainment > science_attraction > planetarium,planetarium,entertainment_location,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,science_attraction,arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,entertainment_location,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,science_attraction,arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,entertainment_location,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > social_club,social_club,Social Club,social_club,arts_and_entertainment > social_club,social_club,social_club,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > social_club > country_club,country_club,Country Club,country_club,arts_and_entertainment > social_club > country_club,country_club,country_club,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,social_club,arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,social_club,,,,,, -arts_and_entertainment,2,FALSE,arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,social_club,arts_and_entertainment > social_club > veterans_organization,veterans_organization,social_club,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,spiritual_advising,arts_and_entertainment > spiritual_advising,spiritual_advising,spiritual_advising,,,,,, -arts_and_entertainment,2,TRUE,arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,astrological_advising,arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,astrological_advising,,,,,, -services_and_business,2,FALSE,arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,spiritual_advising,services_and_business > professional_service > fortune_telling_service,fortune_telling_service,event_or_party_service,,TRUE,TRUE,,,TRUE -arts_and_entertainment,2,TRUE,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,psychic_advising,,,,,, -arts_and_entertainment,1,TRUE,arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,stadium_arena,arts_and_entertainment > stadium_arena,stadium_arena,sport_stadium,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > stadium_arena > arena,arena,Arena,stadium_arena,arts_and_entertainment > stadium_arena > arena,arena,sport_stadium,,,,,,TRUE -arts_and_entertainment,2,FALSE,arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium,stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,stadium_arena,arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,stadium_arena,arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,3,FALSE,arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,stadium_arena,arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,sport_stadium,,,,,,TRUE -arts_and_entertainment,1,TRUE,arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,ticket_office_or_booth,arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,entertainment_location,,,,,,TRUE -community_and_government,0,FALSE,community_and_government,community_and_government,Community and Government,,community_and_government,community_and_government,civic_organization_office,,,,,,TRUE -community_and_government,1,FALSE,community_and_government > armed_forces_branch,armed_forces_branch,Armed Forces Branch,military_site,community_and_government > armed_forces_branch,armed_forces_branch,military_site,,,,TRUE,military_site, -community_and_government,1,FALSE,community_and_government > children_hall,children_hall,Children Hall,social_or_community_service,community_and_government > children_hall,children_hall,civic_organization_office,,,,TRUE,youth_organization,TRUE -community_and_government,1,TRUE,community_and_government > civic_organization,civic_organization,Civic Organization,civic_organization,community_and_government > organization,organization,civic_organization_office,,TRUE,TRUE,,,TRUE -community_and_government,2,FALSE,community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,civic_organization,community_and_government > organization > social_service_organization > charity_organization,charity_organization,charity_organization,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > civic_organization > civic_center,civic_center,Civic Center,civic_center,community_and_government > civic_center,civic_center,civic_center,,TRUE,,,, -community_and_government,2,TRUE,community_and_government > civic_organization > labor_union,labor_union,Labor Union,labor_union,community_and_government > organization > labor_union,labor_union,labor_union,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,civic_organization,community_and_government > organization > non_governmental_association,non_governmental_association,civic_organization_office,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > civic_organization > political_organization,political_organization,Political Organization,political_organization,community_and_government > organization > political_organization,political_organization,political_organization,,TRUE,,,, -community_and_government,3,FALSE,community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,political_organization,community_and_government > political_party_office,political_party_office,political_organization,,TRUE,,,, -community_and_government,1,FALSE,community_and_government > community_service,community_service,Community Service,social_or_community_service,community_and_government > community_service,community_service,social_or_community_service,,,,TRUE,social_or_community_service, -community_and_government,1,TRUE,community_and_government > government_office,government_office,Government Office,government_office,community_and_government > government_office,government_office,government_office,,,,,, -community_and_government,2,FALSE,community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,government_office,community_and_government > chambers_of_commerce,chambers_of_commerce,government_office,,TRUE,,,, -community_and_government,2,TRUE,community_and_government > government_office > courthouse,courthouse,Courthouse,courthouse,community_and_government > courthouse,courthouse,government_office,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > government_office > embassy,embassy,Embassy,embassy,community_and_government > embassy,embassy,government_office,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > government_office > government_department,government_department,Government Department,government_department,,,,TRUE,TRUE,,,,TRUE -community_and_government,3,FALSE,community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,government_department,community_and_government > department_of_motor_vehicles,department_of_motor_vehicles,government_office,,TRUE,,,,TRUE -community_and_government,3,FALSE,community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,government_department,community_and_government > department_of_social_service,department_of_social_service,government_office,,TRUE,,,,TRUE -community_and_government,3,FALSE,community_and_government > government_office > government_department > health_department,health_department,Health Department,government_department,health_care > health_department,health_department,government_office,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,government_office,community_and_government > immigration_and_naturalization,immigration_and_naturalization,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > national_security_service,national_security_service,National Security Service,government_office,community_and_government > national_security_service,national_security_service,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,government_office,community_and_government > office_of_vital_records,office_of_vital_records,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > pension_office,pension_office,Pension Office,government_office,community_and_government > pension,pension,government_office,,TRUE,TRUE,,, -community_and_government,2,FALSE,community_and_government > government_office > registry_office,registry_office,Registry Office,government_office,community_and_government > registry_office,registry_office,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > social_security_service,social_security_service,Social Security Service,government_office,community_and_government > government_office > social_security_service,social_security_service,government_office,,,,,, -community_and_government,2,FALSE,community_and_government > government_office > tax_office,tax_office,Tax Office,government_office,community_and_government > tax_office,tax_office,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > town_hall,town_hall,Town Hall,government_office,community_and_government > town_hall,town_hall,government_office,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,government_office,community_and_government > unemployment_office,unemployment_office,government_office,,TRUE,,,, -community_and_government,1,TRUE,community_and_government > military_site,military_site,Military Site,military_site,,,,TRUE,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > military_site > military_base,military_base,Military Base,military_base,,,,TRUE,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > military_site > military_office,military_office,Military Office,military_office,,,,TRUE,TRUE,,,,TRUE -community_and_government,1,FALSE,community_and_government > public_and_government_association,public_and_government_association,Public and Government Association,government_office,community_and_government > organization > public_and_government_association,public_and_government_association,civic_organization_office,,TRUE,,TRUE,government_office,TRUE -community_and_government,1,TRUE,community_and_government > public_facility,public_facility,Public Facility,public_facility,,,,TRUE,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,public_fountain,geographic_entities > fountain,fountain,public_fountain,,TRUE,TRUE,,, -community_and_government,3,FALSE,community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,public_fountain,geographic_entities > fountain > drinking_fountain,drinking_fountain,b2b_supplier_distributor,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,public_pathway,,,,TRUE,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > public_facility > public_phone,public_phone,Public Phone,public_facility,community_and_government > public_utility_provider > public_phone,public_phone,public_utility_service,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,public_plaza,geographic_entities > plaza,plaza,public_plaza,,TRUE,TRUE,,, -community_and_government,2,TRUE,community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,public_restroom,community_and_government > public_utility_provider > public_restroom,public_restroom,public_toilet,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > public_facility > public_toilet,public_toilet,Public Toilet,public_restroom,community_and_government > public_toilet,public_toilet,public_toilet,,TRUE,,TRUE,public_restroom,TRUE -community_and_government,1,TRUE,community_and_government > public_safety_service,public_safety_service,Public Safety Service,public_safety_service,,,,TRUE,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_safety_service > fire_station,fire_station,Fire Station,fire_station,community_and_government > fire_department,fire_department,fire_station,,TRUE,TRUE,,, -community_and_government,2,TRUE,community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,jail_or_prison,community_and_government > jail_and_prison,jail_and_prison,jail_or_prison,,TRUE,TRUE,,, -community_and_government,3,FALSE,community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,jail_or_prison,community_and_government > jail_and_prison > juvenile_detention_center,juvenile_detention_center,jail_or_prison,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > public_safety_service > law_enforcement,law_enforcement,Law Enforcement,police_station,community_and_government > law_enforcement,law_enforcement,police_station,,TRUE,,TRUE,police_station, -community_and_government,2,TRUE,community_and_government > public_safety_service > police_station,police_station,Police Station,police_station,community_and_government > police_department,police_department,police_station,,TRUE,TRUE,,, -community_and_government,1,TRUE,community_and_government > public_utility,public_utility,Public Utility,public_utility,community_and_government > public_utility_provider,public_utility_provider,public_utility_service,,TRUE,TRUE,,,TRUE -community_and_government,2,TRUE,community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,electric_utility_provider,community_and_government > public_utility_provider > electric_utility_provider,electric_utility_provider,electric_utility_service,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,public_utility,community_and_government > public_utility_provider > garbage_collection_service,garbage_collection_service,garbage_collection_service,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,natural_gas_utility_provider,community_and_government > public_utility_provider > natural_gas_utility_provider,natural_gas_utility_provider,natural_gas_utility_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,community_and_government > public_utility > septic_service,septic_service,Septic Service,public_utility,services_and_business > professional_service > septic_service,septic_service,home_service,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,water_utility_provider,community_and_government > public_utility_provider > water_utility_provider,water_utility_provider,water_utility_service,,TRUE,,,,TRUE -community_and_government,1,TRUE,community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,social_or_community_service,community_and_government > organization > social_service_organization,social_service_organization,social_or_community_service,,TRUE,TRUE,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,social_or_community_service,community_and_government > organization > social_service_organization > child_protection_service,child_protection_service,child_protection_service,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > social_or_community_service > community_center,community_center,Community Center,community_center,community_and_government > community_center,community_center,community_center,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > disability_services_and_support_organization,disability_services_and_support_organization,Disability Services and Support Organization,social_or_community_service,community_and_government > community_center > disability_services_and_support_organization,disability_services_and_support_organization,civic_organization_office,,TRUE,,,,TRUE -community_and_government,2,TRUE,community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,food_bank,community_and_government > organization > social_service_organization > food_bank,food_bank,food_bank,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,social_or_community_service,community_and_government > organization > social_service_organization > foster_care_service,foster_care_service,foster_care_service,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > social_or_community_service > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,Gay and Lesbian Services Organization,social_or_community_service,community_and_government > organization > social_service_organization > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,social_or_community_service,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,social_or_community_service,community_and_government > organization > social_service_organization > homeless_shelter,homeless_shelter,homeless_shelter,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,social_or_community_service,community_and_government > organization > social_service_organization > housing_authority,housing_authority,social_or_community_service,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,social_or_community_service,community_and_government > scout_hall,scout_hall,social_or_community_service,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,social_or_community_service,community_and_government > organization > social_service_organization > senior_citizen_service,senior_citizen_service,senior_citizen_service,,TRUE,,,,TRUE -community_and_government,2,FALSE,community_and_government > social_or_community_service > social_and_human_service,social_and_human_service,Social and Human Service,social_or_community_service,community_and_government > organization > social_service_organization > social_and_human_service,social_and_human_service,social_or_community_service,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,social_or_community_service,community_and_government > organization > social_service_organization > social_welfare_center,social_welfare_center,social_or_community_service,,TRUE,,,, -community_and_government,2,FALSE,community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,social_or_community_service,community_and_government > organization > social_service_organization > volunteer_association,volunteer_association,social_or_community_service,,TRUE,,,, -community_and_government,2,TRUE,community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,youth_organization,community_and_government > organization > social_service_organization > youth_organization,youth_organization,youth_organization,,TRUE,,,, -cultural_and_historic,0,FALSE,cultural_and_historic,cultural_and_historic,Cultural and Historic,,cultural_and_historic,cultural_and_historic,cultural_civic_location,,,,,,TRUE -cultural_and_historic,1,TRUE,cultural_and_historic > cultural_center,cultural_center,Cultural Center,cultural_center,cultural_and_historic > cultural_center,cultural_center,entertainment_location,,,,,,TRUE -cultural_and_historic,1,TRUE,cultural_and_historic > historic_site,historic_site,Historic Site,historic_site,cultural_and_historic > architectural_landmark,architectural_landmark,historic_site,,TRUE,TRUE,,, -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > castle,castle,Castle,castle,cultural_and_historic > architectural_landmark > castle,castle,castle,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > fort,fort,Fort,fort,cultural_and_historic > architectural_landmark > fort,fort,fort,,TRUE,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,historic_site,cultural_and_historic > architectural_landmark > mission,mission,religious_organization,,TRUE,TRUE,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,historic_site,cultural_and_historic > architectural_landmark > tower,tower,communication_tower,,TRUE,TRUE,,,TRUE -cultural_and_historic,2,TRUE,cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,lighthouse,cultural_and_historic > architectural_landmark > lighthouse,lighthouse,lighthouse,,TRUE,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > palace,palace,Palace,historic_site,cultural_and_historic > architectural_landmark > palace,palace,historic_site,,TRUE,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > historic_site > ruin,ruin,Ruin,historic_site,cultural_and_historic > architectural_landmark > ruin,ruin,historic_site,,TRUE,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > memorial_site,memorial_site,Memorial Site,memorial_site,,,,TRUE,TRUE,,,,TRUE -cultural_and_historic,2,TRUE,cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,cemetery,services_and_business > professional_service > cemetery,cemetery,cemetery,,TRUE,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,memorial_site,cultural_and_historic > memorial_park,memorial_park,memorial_site,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > memorial_site > monument,monument,Monument,monument,cultural_and_historic > monument,monument,monument,,TRUE,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,place_of_worship,cultural_and_historic > religious_organization > place_of_worship,place_of_worship,place_of_worship,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,mahayana_buddhist_place_of_worship,Mahayana Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,mahayana_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,nichiren_buddhist_place_of_worship,Nichiren Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,nichiren_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,pure_land_buddhist_place_of_worship,Pure Land Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,pure_land_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,zen_buddhist_place_of_worship,Zen Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,zen_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,theravada_buddhist_place_of_worship,Theravada Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,theravada_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,vajrayana_buddhist_place_of_worship,Vajrayana Buddhist Place of Worship,buddhist_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,vajrayana_buddhist_place_of_worship,buddhist_place_of_worship,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop,christian_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > church_of_the_east_place_of_worship,church_of_the_east_place_of_worship,Church of The East Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > church_of_the_east_place_of_worship,church_of_the_east_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship,eastern_orthodox_place_of_worship,Eastern Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship,eastern_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,antiochan_orthodox_place_of_worship,Antiochan Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,antiochan_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,bulgarian_orthodox_place_of_worship,Bulgarian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,bulgarian_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,georgian_orthodox_place_of_worship,Georgian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,georgian_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,greek_orthodox_place_of_worship,Greek Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,greek_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,romanian_orthodox_place_of_worship,Romanian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,romanian_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,russian_orthodox_place_of_worship,Russian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,russian_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,serbian_orthodox_place_of_worship,Serbian Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,serbian_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship,oriental_orthodox_place_of_worship,Oriental Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship,oriental_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,armenian_apostolic_place_of_worship,Armenian Apostolic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,armenian_apostolic_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,coptic_orthodox_place_of_worship,Coptic Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,coptic_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,eritrean_orthodox_tewahedo_place_of_worship,Eritrean Orthodox Tewahedo Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,eritrean_orthodox_tewahedo_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,ethiopian_orthodox_tewahedo_place_of_worship,Ethiopian Orthodox Tewahedo Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,ethiopian_orthodox_tewahedo_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,malankara_orthodox_syrian_place_of_worship,Malankara Orthodox Syrian Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,malankara_orthodox_syrian_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,syriac_orthodox_place_of_worship,Syriac Orthodox Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,syriac_orthodox_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship,protestant_place_of_worship,Protestant Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship,protestant_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > adventist_place_of_worship,adventist_place_of_worship,Adventist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > adventist_place_of_worshop,adventist_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anabaptist_place_of_worship,anabaptist_place_of_worship,Anabaptist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anabaptist_place_of_worshop,anabaptist_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anglican_or_episcopal_place_of_worship,anglican_or_episcopal_place_of_worship,Anglican or Episcopal Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > anglican_or_episcopal_place_of_worshop,anglican_or_episcopal_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > baptist_place_of_worship,baptist_place_of_worship,Baptist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > baptist_place_of_worshop,baptist_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > lutheran_place_of_worship,lutheran_place_of_worship,Lutheran Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > lutheran_place_of_worshop,lutheran_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > methodist_place_of_worship,methodist_place_of_worship,Methodist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > methodist_place_of_worshop,methodist_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > pentecostal_place_of_worship,pentecostal_place_of_worship,Pentecostal Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > pentecostal_place_of_worshop,pentecostal_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > reformed_or_calvinist_place_of_worship,reformed_or_calvinist_place_of_worship,Reformed or Calvinist Place of worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > protestant_place_of_worship > reformed_or_calvanist_place_of_worshop,reformed_or_calvanist_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship,restorationist_place_of_worship,Restorationist Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship,restorationist_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > jehovahs_witness_place_of_worship,jehovahs_witness_place_of_worship,Jehovahs Witness Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > jehovahs_witness_place_of_worshop,jehovahs_witness_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > mormon_place_of_worship,mormon_place_of_worship,Mormon Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > restorationist_place_of_worship > mormon_place_of_worship,mormon_place_of_worship,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship,roman_catholic_place_of_worship,Roman Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop,roman_catholic_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > eastern_catholic_place_of_worship,eastern_catholic_place_of_worship,Eastern Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > eastern_catholic_place_of_worshop,eastern_catholic_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,4,FALSE,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > western_catholic_place_of_worship,western_catholic_place_of_worship,Western Catholic Place of Worship,christian_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > christian_place_of_worshop > roman_catholic_place_of_worshop > western_catholic_place_of_worshop,western_catholic_place_of_worshop,christian_place_of_worshop,,TRUE,,,,TRUE -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,hindu_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,shaiva_hindu_place_of_worship,Shaiva Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,shaiva_hindu_place_of_worship,hindu_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,shakta_hindu_place_of_worship,Shakta Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,shakta_hindu_place_of_worship,hindu_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,smarta_hindu_place_of_worship,Smarta Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,smarta_hindu_place_of_worship,hindu_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,vaishnava_hindu_place_of_worship,Vaishnava Hindu Place of Worship,hindu_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,vaishnava_hindu_place_of_worship,hindu_place_of_worship,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,jewish_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,conservative_jewish_place_of_worship,Conservative Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,conservative_jewish_place_of_worship,jewish_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,orthodox_jewish_place_of_worship,Orthodox Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,orthodox_jewish_place_of_worship,jewish_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,reconstructionist_jewish_place_of_worship,Reconstructionist Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,reconstructionist_jewish_place_of_worship,jewish_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,reform_jewish_place_of_worship,Reform Jewish Place of Worship,jewish_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,reform_jewish_place_of_worship,jewish_place_of_worship,,TRUE,,,, -cultural_and_historic,2,TRUE,cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,muslim_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,ibadi_muslim_place_of_worship,Ibadi Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,ibadi_muslim_place_of_worship,muslim_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,shia_muslim_place_of_worship,Shia Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,shia_muslim_place_of_worship,muslim_place_of_worship,,TRUE,,,, -cultural_and_historic,3,FALSE,cultural_and_historic > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,sunni_muslim_place_of_worship,Sunni Muslim Place of Worship,muslim_place_of_worship,cultural_and_historic > religious_organization > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,sunni_muslim_place_of_worship,muslim_place_of_worship,,TRUE,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,place_of_worship,cultural_and_historic > religious_organization > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,place_of_worship,,TRUE,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,religious_landmark,cultural_and_historic > religious_organization > religious_landmark,religious_landmark,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site,pilgrimage_site,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,Christian Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,Hindu Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,religious_landmark,cultural_and_historic > religious_organization > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > religious_landmark > shrine,shrine,Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine,shrine,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > catholic_shrine,catholic_shrine,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > shinto_shrine,shinto_shrine,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,3,FALSE,cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,religious_landmark,cultural_and_historic > religious_organization > shrine > sufi_shrine,sufi_shrine,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,1,TRUE,cultural_and_historic > religious_organization,religious_organization,Religious Organization,religious_organization,cultural_and_historic > religious_organization,religious_organization,religious_organization,,,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > convent,convent,Convent,religious_organization,cultural_and_historic > religious_organization > convent,convent,religious_organization,,,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > monastery,monastery,Monastery,religious_organization,cultural_and_historic > religious_organization > monastery,monastery,religious_organization,,,,,, -cultural_and_historic,2,FALSE,cultural_and_historic > religious_organization > seminary,seminary,Seminary,religious_organization,cultural_and_historic > religious_organization > seminary,seminary,religious_organization,,,,,, -cultural_and_historic,1,TRUE,cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center,Religious Retreat or Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center,religious_retreat_or_center,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > hindu_ashram,hindu_ashram,religious_organization,,TRUE,,,,TRUE -cultural_and_historic,2,FALSE,cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,religious_retreat_or_center,cultural_and_historic > religious_organization > religious_retreat_or_center > zen_center,zen_center,religious_organization,,TRUE,,,,TRUE -education,0,FALSE,education,education,Education,,education,education,place_of_learning,,,,,,TRUE -education,1,TRUE,education > education_office,education_office,Education Office,education_office,,,,TRUE,TRUE,,,,TRUE -education,2,FALSE,education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,government_office,education > board_of_education_office,board_of_education_office,government_office,,TRUE,,,, -education,2,TRUE,education > education_office > school_district_office,school_district_office,School District Office,school_district_office,education > school_district_office,school_district_office,civic_organization_office,,TRUE,,,,TRUE -education,1,TRUE,education > educational_facility,educational_facility,Educational Facility,educational_facility,,,,TRUE,TRUE,,,,TRUE -education,2,TRUE,education > educational_facility > campus,campus,Campus,campus,,,,TRUE,TRUE,,,,TRUE -education,2,TRUE,education > educational_facility > campus_building,campus_building,Campus Building,campus_building,education > campus_building,campus_building,place_of_learning,,TRUE,,,,TRUE -education,3,FALSE,education > educational_facility > campus_building > student_union,student_union,Student Union,campus_building,education > student_union,student_union,educational_service,,TRUE,,,,TRUE -education,2,FALSE,education > educational_facility > educational_camp,educational_camp,Educational Camp,educational_facility,education > educational_camp,educational_camp,place_of_learning,,TRUE,,,,TRUE -education,1,TRUE,education > educational_service,educational_service,Educational Service,educational_service,education > educational_service,educational_service,educational_service,,,,,, -education,2,FALSE,education > educational_service > after_school_program,after_school_program,After School Program,educational_service,services_and_business > professional_service > after_school_program,after_school_program,educational_service,,TRUE,,,, -education,2,FALSE,education > educational_service > archaeological_service,archaeological_service,Archaeological Service,educational_service,education > educational_service > archaeological_service,archaeological_service,educational_service,,,,,, -education,2,FALSE,education > educational_service > college_counseling,college_counseling,College Counseling,educational_service,education > college_counseling,college_counseling,educational_service,,TRUE,,,, -education,2,FALSE,education > educational_service > test_preparation,test_preparation,Test Preparation,educational_service,education > test_preparation,test_preparation,educational_service,,TRUE,,,, -education,2,TRUE,education > educational_service > tutoring_service,tutoring_service,Tutoring Service,tutoring_service,education > tutoring_center,tutoring_center,tutoring_service,,TRUE,TRUE,,, -education,3,FALSE,education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,tutoring_service,education > private_tutor,private_tutor,tutoring_service,,TRUE,,,, -education,1,TRUE,education > library,library,Library,library,community_and_government > library,library,library,,TRUE,,,, -education,1,TRUE,education > place_of_learning,place_of_learning,Place of Learning,place_of_learning,,,,TRUE,TRUE,,,,TRUE -education,2,TRUE,education > place_of_learning > academy,academy,Academy,academy,,,,TRUE,TRUE,,,,TRUE -education,3,FALSE,education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,academy,education > tutoring_center > civil_examinations_academy,civil_examinations_academy,educational_service,,TRUE,,,,TRUE -education,2,FALSE,education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,place_of_learning,education > adult_education,adult_education,place_of_learning,,TRUE,TRUE,,, -education,2,TRUE,education > place_of_learning > class_venue,class_venue,Class Venue,class_venue,,,,TRUE,TRUE,,,,TRUE -education,3,FALSE,education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,class_venue,education > tasting_class,tasting_class,specialty_school,,TRUE,,,,TRUE -education,4,FALSE,education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,class_venue,education > tasting_class > cheese_tasting_class,cheese_tasting_class,specialty_school,,TRUE,,,,TRUE -education,4,FALSE,education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,class_venue,education > tasting_class > wine_tasting_class,wine_tasting_class,specialty_school,,TRUE,,,,TRUE -education,2,TRUE,education > place_of_learning > college_university,college_university,College University,college_university,education > college_university,college_university,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,college_university,education > college_university > architecture_school,architecture_school,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > business_school,business_school,Business School,college_university,education > college_university > business_school,business_school,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,college_university,education > college_university > engineering_school,engineering_school,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > law_school,law_school,Law School,college_university,education > college_university > law_school,law_school,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,college_university,education > college_university > medical_sciences_school,medical_sciences_school,college_university,,TRUE,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,college_university,education > college_university > medical_sciences_school > dentistry_school,dentistry_school,college_university,,TRUE,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,college_university,education > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,college_university,,TRUE,,,, -education,4,FALSE,education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,college_university,education > college_university > medical_sciences_school > veterinary_school,veterinary_school,college_university,,TRUE,,,, -education,3,FALSE,education > place_of_learning > college_university > science_school,science_school,Science School,college_university,education > college_university > science_school,science_school,college_university,,TRUE,,,, -education,2,FALSE,education > place_of_learning > school,school,School,place_of_learning,education > school,school,place_of_learning,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > charter_school,charter_school,Charter School,place_of_learning,education > school > charter_school,charter_school,place_of_learning,,TRUE,,,, -education,3,TRUE,education > place_of_learning > school > elementary_school,elementary_school,Elementary School,elementary_school,education > school > elementary_school,elementary_school,elementary_school,,TRUE,,,, -education,3,TRUE,education > place_of_learning > school > high_school,high_school,High School,high_school,education > school > high_school,high_school,high_school,,TRUE,,,, -education,3,TRUE,education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,kindergarten,,,,TRUE,TRUE,,,,TRUE -education,3,TRUE,education > place_of_learning > school > middle_school,middle_school,Middle School,middle_school,education > school > middle_school,middle_school,middle_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > montessori_school,montessori_school,Montessori School,place_of_learning,education > school > montessori_school,montessori_school,place_of_learning,,TRUE,,,, -education,3,TRUE,education > place_of_learning > school > preschool,preschool,Preschool,preschool,education > school > preschool,preschool,preschool,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > private_school,private_school,Private School,place_of_learning,education > school > private_school,private_school,place_of_learning,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > public_school,public_school,Public School,place_of_learning,education > school > public_school,public_school,place_of_learning,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > religious_school,religious_school,Religious School,place_of_learning,education > school > religious_school,religious_school,place_of_learning,,TRUE,,,, -education,3,FALSE,education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,place_of_learning,education > school > waldorf_school,waldorf_school,place_of_learning,,TRUE,,,, -education,2,TRUE,education > place_of_learning > specialty_school,specialty_school,Specialty School,specialty_school,education > specialty_school,specialty_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > art_school,art_school,Art School,specialty_school,education > specialty_school > art_school,art_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,specialty_school,education > specialty_school > bartending_school,bartending_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,specialty_school,education > specialty_school > cheerleading,cheerleading,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,specialty_school,education > specialty_school > childbirth_education,childbirth_education,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,specialty_school,education > specialty_school > circus_school,circus_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,specialty_school,education > specialty_school > computer_coaching,computer_coaching,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,specialty_school,education > specialty_school > cooking_school,cooking_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,specialty_school,education > specialty_school > cosmetology_school,cosmetology_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,specialty_school,education > specialty_school > cpr_class,cpr_class,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,specialty_school,education > specialty_school > drama_school,drama_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,specialty_school,education > specialty_school > driving_school,driving_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,specialty_school,education > specialty_school > dui_school,dui_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,specialty_school,education > specialty_school > firearm_training,firearm_training,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,specialty_school,education > specialty_school > first_aid_class,first_aid_class,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,specialty_school,education > specialty_school > flight_school,flight_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,specialty_school,education > specialty_school > food_safety_training,food_safety_training,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > language_school,language_school,Language School,specialty_school,education > specialty_school > language_school,language_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,specialty_school,education > specialty_school > massage_school,massage_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,specialty_school,education > specialty_school > medical_school,medical_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > music_school,music_school,Music School,specialty_school,education > specialty_school > music_school,music_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,specialty_school,education > specialty_school > nursing_school,nursing_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,specialty_school,education > specialty_school > parenting_class,parenting_class,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,specialty_school,education > specialty_school > photography_class,photography_class,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,specialty_school,education > specialty_school > speech_training,speech_training,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,specialty_school,education > specialty_school > sports_school,sports_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,specialty_school,education > specialty_school > traffic_school,traffic_school,specialty_school,,TRUE,,,, -education,3,FALSE,education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,specialty_school,education > specialty_school > vocational_and_technical_school,vocational_and_technical_school,vocational_technical_school,,TRUE,,,,TRUE -education,1,TRUE,education > research_institute,research_institute,Research Institute,research_institute,services_and_business > business_to_business > b2b_science_and_technology > research_institute,research_institute,b2b_service,,TRUE,,,,TRUE -education,2,FALSE,education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,research_institute,education > educational_research_institute,educational_research_institute,place_of_learning,,TRUE,,,,TRUE -education,2,FALSE,education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,research_institute,services_and_business > business_to_business > b2b_medical_support_service > medical_research_and_development,medical_research_and_development,b2b_service,,TRUE,TRUE,,,TRUE -food_and_drink,0,FALSE,food_and_drink,food_and_drink,Food and Drink,,food_and_drink,food_and_drink,eating_drinking_location,,,,,,TRUE -food_and_drink,1,TRUE,food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,alcoholic_beverage_venue,,,,TRUE,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,bar,food_and_drink > bar,bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,bar,food_and_drink > bar > bar_tabac,bar_tabac,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,bar,food_and_drink > bar > beach_bar,beach_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,bar,food_and_drink > bar > beer_bar,beer_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,bar,food_and_drink > bar > champagne_bar,champagne_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,bar,food_and_drink > bar > cigar_bar,cigar_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,bar,food_and_drink > bar > cocktail_bar,cocktail_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,bar,food_and_drink > bar > dive_bar,dive_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,bar,food_and_drink > bar > drive_thru_bar,drive_thru_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,bar,food_and_drink > bar > gay_bar,gay_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,bar,food_and_drink > bar > hookah_bar,hookah_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,bar,food_and_drink > bar > hotel_bar,hotel_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,bar,food_and_drink > bar > piano_bar,piano_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,bar,food_and_drink > bar > pub,pub,pub,,TRUE,,,,TRUE -food_and_drink,4,FALSE,food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,bar,food_and_drink > bar > pub > irish_pub,irish_pub,pub,,TRUE,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,bar,food_and_drink > bar > sake_bar,sake_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,bar,food_and_drink > bar > speakeasy,speakeasy,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,bar,food_and_drink > bar > sports_bar,sports_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,bar,food_and_drink > bar > tiki_bar,tiki_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,bar,food_and_drink > bar > vermouth_bar,vermouth_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,bar,food_and_drink > bar > whiskey_bar,whiskey_bar,bar,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,bar,food_and_drink > bar > wine_bar,wine_bar,bar,,TRUE,,,, -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery > beer_garden,beer_garden,eating_drinking_location,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,brewery,food_and_drink > brewery_winery_distillery > brewery,brewery,brewery,,TRUE,,,, -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > brewery_winery_distillery,brewery_winery_distillery,Brewery Winery Distillery,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery,brewery_winery_distillery,eating_drinking_location,,TRUE,,TRUE,alcoholic_beverage_venue,TRUE -food_and_drink,2,FALSE,food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,alcoholic_beverage_venue,food_and_drink > brewery_winery_distillery > cidery,cidery,eating_drinking_location,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,distillery,food_and_drink > brewery_winery_distillery > distillery,distillery,eating_drinking_location,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,lounge,food_and_drink > lounge,lounge,eating_drinking_location,,TRUE,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,lounge,food_and_drink > lounge > airport_lounge,airport_lounge,eating_drinking_location,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,winery,food_and_drink > brewery_winery_distillery > winery,winery,winery,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,winery,food_and_drink > brewery_winery_distillery > winery > wine_tasting_room,wine_tasting_room,winery,,TRUE,,,, -food_and_drink,1,TRUE,food_and_drink > casual_eatery,casual_eatery,Casual Eatery,casual_eatery,food_and_drink > casual_eatery,casual_eatery,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,casual_eatery,food_and_drink > casual_eatery > bagel_shop,bagel_shop,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bakery,bakery,Bakery,casual_eatery,food_and_drink > casual_eatery > bakery,bakery,bakery,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,casual_eatery,food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,bakery,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,casual_eatery,food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,bakery,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,casual_eatery,food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,bakery,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,casual_eatery,food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,bakery,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > bistro,bistro,Bistro,casual_eatery,food_and_drink > casual_eatery > bistro,bistro,casual_eatery,,,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > cafe,cafe,Cafe,cafe,food_and_drink > casual_eatery > cafe,cafe,cafe,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,cafe,,,,,, -food_and_drink,4,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,cafe,,,,,, -food_and_drink,4,FALSE,food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,cafe,food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,cafe,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,cafe,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,cafe,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,cafe,food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,cafe,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,casual_eatery,food_and_drink > casual_eatery > candy_store,candy_store,candy_shop,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,casual_eatery,food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,candy_shop,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,casual_eatery,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,candy_shop,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,casual_eatery,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,candy_shop,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > canteen,canteen,Canteen,casual_eatery,food_and_drink > casual_eatery > canteen,canteen,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,casual_eatery,food_and_drink > casual_eatery > delicatessen,delicatessen,deli,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop,dessert_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,casual_eatery,,,,,, -food_and_drink,3,FALSE,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,casual_eatery,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > diner,diner,Diner,casual_eatery,food_and_drink > casual_eatery > diner,diner,casual_eatery,,,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,fast_food_restaurant,food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,fast_food_restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,casual_eatery,food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,casual_eatery,,,,,, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > food_court,food_court,Food Court,food_court,food_and_drink > casual_eatery > food_court,food_court,food_court,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > food_stand,food_stand,Food Stand,casual_eatery,food_and_drink > casual_eatery > food_stand,food_stand,casual_eatery,,,,TRUE,food_truck_stand, -food_and_drink,2,TRUE,food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,food_truck_stand,food_and_drink > casual_eatery > food_truck,food_truck,casual_eatery,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > friterie,friterie,Friterie,casual_eatery,food_and_drink > casual_eatery > friterie,friterie,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,casual_eatery,food_and_drink > casual_eatery > gastropub,gastropub,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,casual_eatery,food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,food_or_beverage_store,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,casual_eatery,food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,sandwich_shop,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,casual_eatery,food_and_drink > casual_eatery > sugar_shack,sugar_shack,casual_eatery,,,,,, -food_and_drink,2,FALSE,food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,casual_eatery,food_and_drink > casual_eatery > tapas_bar,tapas_bar,casual_eatery,,,,,, -food_and_drink,1,TRUE,food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,non_alcoholic_beverage_venue,food_and_drink > beverage_shop,beverage_shop,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > bubble_tea_shop,bubble_tea_shop,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,coffee_shop,food_and_drink > beverage_shop > coffee_shop,coffee_shop,coffee_shop,,TRUE,,,, -food_and_drink,3,FALSE,food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,coffee_shop,food_and_drink > beverage_shop > coffee_roastery,coffee_roastery,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > kombucha_bar,kombucha_bar,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > milk_bar,milk_bar,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > milkshake_bar,milkshake_bar,beverage_shop,,TRUE,,,,TRUE -food_and_drink,2,TRUE,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,smoothie_juice_bar,food_and_drink > beverage_shop > smoothie_juice_bar,smoothie_juice_bar,juice_bar,,TRUE,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,non_alcoholic_beverage_venue,food_and_drink > beverage_shop > tea_room,tea_room,beverage_shop,,TRUE,,,,TRUE -food_and_drink,1,TRUE,food_and_drink > restaurant,restaurant,Restaurant,restaurant,food_and_drink > restaurant,restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant,african_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant,asian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,Hyderabadi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,North Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,restaurant,food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,restaurant,food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,bar_and_grill,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,breakfast_restaurant,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,restaurant,food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,buffet_restaurant,,,,,,TRUE -food_and_drink,2,FALSE,food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,restaurant,food_and_drink > restaurant > cafeteria,cafeteria,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,restaurant,food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,restaurant,food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,restaurant,food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant,european_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,pizzaria,,,,,,TRUE -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,restaurant,food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,restaurant,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,restaurant,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant,meat_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,chicken_restaurant,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,chicken_restaurant,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,chicken_restaurant,,,,,,TRUE -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,restaurant,food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,restaurant,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,restaurant,food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,restaurant,,,,,, -food_and_drink,4,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,restaurant,,,,,, -food_and_drink,5,FALSE,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,restaurant,food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,restaurant,food_and_drink > restaurant > salad_bar,salad_bar,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,restaurant,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > soul_food,soul_food,Soul Food,restaurant,food_and_drink > restaurant > soul_food,soul_food,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,restaurant,food_and_drink > restaurant > soup_restaurant,soup_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,restaurant,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,Live and Raw Food Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,restaurant,,,,,, -food_and_drink,3,FALSE,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,restaurant,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > supper_club,supper_club,Supper Club,restaurant,food_and_drink > restaurant > supper_club,supper_club,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,restaurant,food_and_drink > restaurant > theme_restaurant,theme_restaurant,restaurant,,,,,, -food_and_drink,2,FALSE,food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,restaurant,food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,restaurant,,,,,, -geographic_entities,0,FALSE,geographic_entities,geographic_entities,Geographic Entities,,geographic_entities,geographic_entities,nature_outdoors,,,,,,TRUE -geographic_entities,1,TRUE,geographic_entities > built_feature,built_feature,Built Feature,built_feature,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > built_feature > bridge,bridge,Bridge,bridge,geographic_entities > bridge,bridge,bridge,,TRUE,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > building,building,Building,building,,,,TRUE,TRUE,,,,TRUE -geographic_entities,3,FALSE,geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,building,geographic_entities > skyscraper,skyscraper,industrial_commercial_infrastructure,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > built_feature > dam,dam,Dam,dam,geographic_entities > dam,dam,dam,,TRUE,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > dam > weir,weir,Weir,dam,geographic_entities > weir,weir,waterway,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > built_feature > dock,dock,Dock,dock,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > built_feature > garden,garden,Garden,garden,geographic_entities > garden,garden,garden,,TRUE,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,garden,geographic_entities > garden > botanical_garden,botanical_garden,garden,,TRUE,,,, -geographic_entities,3,FALSE,geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,garden,geographic_entities > garden > community_garden,community_garden,garden,,TRUE,,,, -geographic_entities,2,FALSE,geographic_entities > built_feature > lookout,lookout,Lookout,built_feature,geographic_entities > lookout,lookout,scenic_viewpoint,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > built_feature > marina,marina,Marina,marina,travel_and_transportation > watercraft_and_water_transport > waterway > marina,marina,marina,,TRUE,,,, -geographic_entities,2,TRUE,geographic_entities > built_feature > pier,pier,Pier,pier,geographic_entities > pier,pier,waterway,,TRUE,,,,TRUE -geographic_entities,2,FALSE,geographic_entities > built_feature > quay,quay,Quay,built_feature,geographic_entities > quay,quay,waterway,,TRUE,,,,TRUE -geographic_entities,1,TRUE,geographic_entities > land_feature,land_feature,Land Feature,land_feature,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > beach,beach,Beach,beach,geographic_entities > beach,beach,beach,,TRUE,,,, -geographic_entities,3,FALSE,geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,beach,geographic_entities > beach > beach_combing_area,beach_combing_area,beach,,TRUE,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > canyon,canyon,Canyon,canyon,geographic_entities > canyon,canyon,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,FALSE,geographic_entities > land_feature > cave,cave,Cave,land_feature,geographic_entities > cave,cave,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,FALSE,geographic_entities > land_feature > crater,crater,Crater,land_feature,geographic_entities > crater,crater,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,FALSE,geographic_entities > land_feature > desert,desert,Desert,land_feature,geographic_entities > desert,desert,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > forest,forest,Forest,forest,geographic_entities > forest,forest,forest,,TRUE,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,land_feature,geographic_entities > geologic_formation,geologic_formation,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > hill,hill,Hill,hill,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > island,island,Island,island,geographic_entities > island,island,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > mountain,mountain,Mountain,mountain,geographic_entities > mountain,mountain,mountain,,TRUE,,,, -geographic_entities,2,TRUE,geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,nature_reserve,geographic_entities > nature_reserve,nature_reserve,nature_reserve,,TRUE,,,, -geographic_entities,2,FALSE,geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,land_feature,geographic_entities > sand_dune,sand_dune,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > land_feature > valley,valley,Valley,valley,,,,TRUE,TRUE,,,,TRUE -geographic_entities,1,TRUE,geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,scenic_viewpoint,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,FALSE,geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,scenic_viewpoint,geographic_entities > skyline,skyline,scenic_viewpoint,,TRUE,,,, -geographic_entities,2,FALSE,geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,scenic_viewpoint,geographic_entities > stargazing_area,stargazing_area,scenic_viewpoint,,TRUE,,,, -geographic_entities,1,TRUE,geographic_entities > water_feature,water_feature,Water Feature,water_feature,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > canal,canal,Canal,canal,travel_and_transportation > watercraft_and_water_transport > waterway > canal,canal,canal,,TRUE,,,, -geographic_entities,2,TRUE,geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,hot_springs,geographic_entities > hot_springs,hot_springs,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > lake,lake,Lake,lake,geographic_entities > lake,lake,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > ocean,ocean,Ocean,ocean,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > river,river,River,river,geographic_entities > river,river,nature_outdoors,,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > sea,sea,Sea,sea,,,,TRUE,TRUE,,,,TRUE -geographic_entities,2,TRUE,geographic_entities > water_feature > waterfall,waterfall,Waterfall,waterfall,geographic_entities > waterfall,waterfall,nature_outdoors,,TRUE,,,,TRUE -health_care,0,FALSE,health_care,health_care,Health Care,,health_care,health_care,healthcare_location,,,,,,TRUE -health_care,1,FALSE,health_care > doctor,doctor,Doctor,outpatient_care_facility,health_care > doctor,doctor,doctors_office,,,,TRUE,n/a,TRUE -health_care,2,FALSE,health_care > doctor > emergency_medicine,emergency_medicine,Emergency Medicine,emergency_or_urgent_care_facility,health_care > doctor > emergency_medicine,emergency_medicine,healthcare_location,,,,TRUE,emergency_or_urgent_care_facility,TRUE -health_care,2,FALSE,health_care > doctor > hospitalist,hospitalist,Hospitalist,hospital,health_care > doctor > hospitalist,hospitalist,healthcare_location,,,,TRUE,hospital,TRUE -health_care,1,TRUE,health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,emergency_or_urgent_care_facility,,,,TRUE,TRUE,,,,TRUE -health_care,2,FALSE,health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,ambulance_or_ems_service,Ambulance or EMS Service,emergency_or_urgent_care_facility,health_care > ambulance_and_ems_service,ambulance_and_ems_service,ambulance_ems_service,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,emergency_department,health_care > emergency_room,emergency_room,emergency_room,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,urgent_care_center,health_care > urgent_care_clinic,urgent_care_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk In Clinic,walk_in_clinic,health_care > medical_center > walk_in_clinic,walk_in_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,1,TRUE,health_care > hospital,hospital,Hospital,hospital,health_care > hospital,hospital,hospital,,,,,, -health_care,2,TRUE,health_care > hospital > general_hospital,general_hospital,General Hospital,general_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,2,TRUE,health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,specialty_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,specialty_hospital,health_care > childrens_hospital,childrens_hospital,childrens_hospital,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,specialty_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,specialty_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,specialty_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,specialty_hospital,,,,TRUE,TRUE,,,,TRUE -health_care,1,FALSE,health_care > medical_center,medical_center,Medical Center,outpatient_care_facility,health_care > medical_center,medical_center,healthcare_location,,,,TRUE,outpatient_care_facility,TRUE -health_care,1,TRUE,health_care > medical_service,medical_service,Medical Service,medical_service,,,,TRUE,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,medical_service,health_care > blood_and_plasma_donation_center,blood_and_plasma_donation_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > ems_training,ems_training,EMS Training,medical_service,sports_and_recreation > sports_and_fitness_instruction > ems_training,ems_training,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,medical_service,health_care > health_insurance_office,health_insurance_office,insurance_agency,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > home_health_care,home_health_care,Home Health Care,medical_service,health_care > personal_care_service > home_health_care,home_health_care,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > hospice,hospice,Hospice,medical_service,health_care > hospice,hospice,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > medical_billing,medical_billing,Medical Billing,medical_service,health_care > medical_center > bulk_billing,bulk_billing,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,FALSE,health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,medical_service,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,medical_service,health_care > cannabis_clinic,cannabis_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,medical_service,health_care > cannabis_collective,cannabis_collective,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,medical_service,health_care > medical_cannabis_referral,medical_cannabis_referral,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,medical_service,health_care > medical_service_organization,medical_service_organization,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,medical_service,health_care > medical_transportation,medical_transportation,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,medical_service,health_care > sperm_clinic,sperm_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,1,TRUE,health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,outpatient_care_facility,,,,TRUE,TRUE,,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health,counseling_and_mental_health,mental_health,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service,behavioral_or_crisis_service,Behavioral or Crisis Service,behavioral_or_mental_health_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > behavior_analysis,behavior_analysis,Behavior Analysis,behavioral_or_mental_health_clinic,health_care > behavior_analyst,behavior_analyst,mental_health,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,crisis_intervention_service,Crisis Intervention Service,behavioral_or_mental_health_clinic,health_care > abuse_and_addiction_treatment > crisis_intervention_service,crisis_intervention_service,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,stress_management_service,Stress Management Service,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > stress_management_service,stress_management_service,mental_health,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,suicide_prevention_service,Suicide Prevention Service,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > suicide_prevention_service,suicide_prevention_service,mental_health,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,behavioral_or_mental_health_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > family_counselor,family_counselor,mental_health,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,marriage_or_relationship_counseling,Marriage or Relationship Counseling,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > marriage_or_relationship_counselor,marriage_or_relationship_counselor,mental_health,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sex_therapist,sex_therapist,mental_health,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service,psychiatry_or_psychology_service,Psychiatry or Psychology Service,behavioral_or_mental_health_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > psychiatrist,psychiatrist,psychiatry,,TRUE,TRUE,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,child_psychiatry,Child Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > psychiatrist > child_psychiatrist,child_psychiatrist,psychiatry,,TRUE,TRUE,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,geriatric_psychiatry,Geriatric Psychiatry,behavioral_or_mental_health_clinic,health_care > doctor > geriatric_medicine > geriatric_psychiatry,geriatric_psychiatry,psychiatry,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychoanalyst,psychoanalyst,mental_health,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychologist,psychologist,psychology,,TRUE,,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,sports_psychology,Sports Psychology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sports_psychologist,sports_psychologist,mental_health,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > psychotherapist,psychotherapist,psychotherapy,,TRUE,TRUE,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > art_therapy,art_therapy,Art Therapy,behavioral_or_mental_health_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > hypnotherapy,hypnotherapy,Hypnotherapy,behavioral_or_mental_health_clinic,health_care > hypnotherapy,hypnotherapy,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,behavioral_or_mental_health_clinic,health_care > counseling_and_mental_health > sophrologist,sophrologist,mental_health,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,complementary_and_alternative_medicine,health_care > alternative_medicine,alternative_medicine,alternative_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,complementary_and_alternative_medicine,health_care > acupuncture,acupuncture,alternative_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,complementary_and_alternative_medicine,lifestyle_services > aromatherapy,aromatherapy,personal_service,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,complementary_and_alternative_medicine,health_care > ayurveda,ayurveda,alternative_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,complementary_and_alternative_medicine,health_care > chiropractor,chiropractor,alternative_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,complementary_and_alternative_medicine,health_care > doctor > homeopathic_medicine,homeopathic_medicine,alternative_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,complementary_and_alternative_medicine,health_care > doctor > naturopathic_holistic,naturopathic_holistic,alternative_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,complementary_and_alternative_medicine,health_care > reflexology,reflexology,alternative_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,complementary_and_alternative_medicine,health_care > reiki,reiki,alternative_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,complementary_and_alternative_medicine,health_care > traditional_chinese_medicine,traditional_chinese_medicine,alternative_medicine,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,complementary_and_alternative_medicine,health_care > traditional_chinese_medicine > tui_na,tui_na,alternative_medicine,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,dental_clinic,health_care > dentist,dentist,general_dentistry,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,dental_clinic,health_care > dentist > cosmetic_dentist,cosmetic_dentist,dental_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,dental_clinic,health_care > dental_hygienist,dental_hygienist,dental_hygiene,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,dental_clinic,health_care > dentist > endodontist,endodontist,dental_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,dental_clinic,health_care > dentist > general_dentistry,general_dentistry,general_dentistry,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,dental_clinic,health_care > dentist > orthodontist,orthodontist,orthodontic_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,dental_clinic,health_care > dentist > pediatric_dentist,pediatric_dentist,dental_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,dental_clinic,health_care > dentist > periodontist,periodontist,dental_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,dental_clinic,health_care > prosthodontist,prosthodontist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,diagnostics_imaging_or_lab_service,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,diagnostics_imaging_or_lab_service,health_care > diagnostic_service > diagnostic_imaging,diagnostic_imaging,diagnostic_service,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,ultrasound_imaging,Ultrasound Imaging,diagnostics_imaging_or_lab_service,health_care > ultrasound_imaging_center,ultrasound_imaging_center,diagnostic_service,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,diagnostics_imaging_or_lab_service,health_care > diagnostic_service,diagnostic_service,diagnostic_service,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,diagnostics_imaging_or_lab_service,health_care > diagnostic_service > laboratory_testing,laboratory_testing,diagnostic_service,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,paternity_testing,Paternity Testing,diagnostics_imaging_or_lab_service,health_care > paternity_tests_and_service,paternity_tests_and_service,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,diagnostics_imaging_or_lab_service,health_care > doctor > pathologist,pathologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,diagnostics_imaging_or_lab_service,health_care > doctor > radiologist,radiologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,pediatric_clinic,health_care > doctor > pediatrician,pediatrician,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,pediatric_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_anesthesiology,pediatric_anesthesiology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_cardiology,pediatric_cardiology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_endocrinology,pediatric_endocrinology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_gastroenterology,pediatric_gastroenterology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,pediatric_clinic,health_care > doctor > pediatrician > pediatric_infectious_disease,pediatric_infectious_disease,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_nephrology,pediatric_nephrology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_neurology,pediatric_neurology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_oncology,pediatric_oncology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_pulmonology,pediatric_pulmonology,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,pediatric_clinic,health_care > doctor > pediatrician > pediatric_radiology,pediatric_radiology,pediatrics,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,physical_medicine_and_rehabilitation,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,physical_medicine_and_rehabilitation,health_care > animal_assisted_therapy,animal_assisted_therapy,psychotherapy,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,physical_medicine_and_rehabilitation,health_care > occupational_therapy,occupational_therapy,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,physical_medicine_and_rehabilitation,health_care > orthotics,orthotics,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,physical_medicine_and_rehabilitation,health_care > physical_therapy,physical_therapy,physical_therapy,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,physical_medicine_and_rehabilitation,health_care > prosthetics,prosthetics,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,physical_medicine_and_rehabilitation,health_care > psychomotor_therapist,psychomotor_therapist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,physical_medicine_and_rehabilitation,health_care > rehabilitation_center,rehabilitation_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,Addiction Rehabilitation Center,physical_medicine_and_rehabilitation,health_care > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,physical_medicine_and_rehabilitation,health_care > speech_therapist,speech_therapist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > primary_care_or_general_clinic,primary_care_or_general_clinic,Primary Care or General Clinic,primary_care_or_general_clinic,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > community_health_center,community_health_center,Community Health Center,primary_care_or_general_clinic,health_care > community_health_center,community_health_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,primary_care_or_general_clinic,health_care > concierge_medicine,concierge_medicine,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,primary_care_or_general_clinic,health_care > doctor > family_practice,family_practice,family_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,primary_care_or_general_clinic,health_care > dental_hygienist > mobile_clinic,mobile_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,public_health_clinic,Public Health Clinic,primary_care_or_general_clinic,health_care > public_health_clinic,public_health_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,primary_care_or_general_clinic,health_care > dental_hygienist > storefront_clinic,storefront_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,reproductive_perinatal_and_womens_care,health_care > womens_health_clinic,womens_health_clinic,clinic_or_treatment_center,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,reproductive_perinatal_and_womens_care,health_care > doula,doula,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,reproductive_perinatal_and_womens_care,health_care > lactation_service,lactation_service,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,reproductive_perinatal_and_womens_care,health_care > maternity_center,maternity_center,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,reproductive_perinatal_and_womens_care,health_care > midwife,midwife,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,obstetrics_and_gynecology,Obstetrics and Gynecology,reproductive_perinatal_and_womens_care,health_care > doctor > obstetrician_and_gynecologist,obstetrician_and_gynecologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,prenatal_and_perinatal_care,Prenatal and Perinatal Care,reproductive_perinatal_and_womens_care,health_care > prenatal_perinatal_care,prenatal_perinatal_care,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,specialized_health_care,,,,TRUE,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine,cardiovascular_and_vascular_medicine,Cardiovascular and Vascular Medicine,specialized_health_care,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,specialized_health_care,health_care > doctor > cardiologist,cardiologist,cardiology,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,specialized_health_care,health_care > doctor > phlebologist,phlebologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,specialized_health_care,health_care > doctor > vascular_medicine,vascular_medicine,internal_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,ear_nose_and_throat,Ear Nose and Throat,specialized_health_care,health_care > doctor > ear_nose_and_throat,ear_nose_and_throat,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,specialized_health_care,health_care > doctor > audiologist,audiologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,specialized_health_care,,,,TRUE,TRUE,,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,specialized_health_care,health_care > doctor > neurotologist,neurotologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,specialized_health_care,health_care > doctor > otologist,otologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,specialized_health_care,health_care > doctor > endocrinologist,endocrinologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,specialized_health_care,health_care > doctor > gastroenterologist,gastroenterologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,specialized_health_care,health_care > doctor > endoscopist,endoscopist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,specialized_health_care,health_care > doctor > hepatologist,hepatologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,specialized_health_care,health_care > doctor > proctologist,proctologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,specialized_health_care,health_care > doctor > geneticist,geneticist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,specialized_health_care,health_care > doctor > gerontologist,gerontologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,specialized_health_care,health_care > doctor > geriatric_medicine,geriatric_medicine,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,specialized_health_care,health_care > doctor > internal_medicine,internal_medicine,internal_medicine,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,specialized_health_care,health_care > doctor > allergist,allergist,allergy_and_immunology,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,specialized_health_care,health_care > doctor > infectious_disease_specialist,infectious_disease_specialist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,specialized_health_care,health_care > doctor > tropical_medicine,tropical_medicine,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,specialized_health_care,health_care > doctor > oncologist,oncologist,internal_medicine,,TRUE,,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,specialized_health_care,health_care > doctor > internal_medicine > hematology,hematology,internal_medicine,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,specialized_health_care,health_care > doctor > rheumatologist,rheumatologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > lice_treatment,lice_treatment,Lice Treatment,specialized_health_care,health_care > lice_treatment,lice_treatment,healthcare_location,,TRUE,,TRUE,specialized_health_care,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,specialized_health_care,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,specialized_health_care,health_care > aesthetician,aesthetician,plastic_reconstructive_and_aesthetic_surgery,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,specialized_health_care,health_care > body_contouring,body_contouring,plastic_reconstructive_and_aesthetic_surgery,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,specialized_health_care,health_care > doctor > dermatologist,dermatologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,5,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,specialized_health_care,health_care > doctor > immunodermatologist,immunodermatologist,allergy_and_immunology,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,specialized_health_care,health_care > doctor > tattoo_removal,tattoo_removal,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,specialized_health_care,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,specialized_health_care,health_care > doctor > orthopedist,orthopedist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,specialized_health_care,health_care > podiatry,podiatry,healthcare_location,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,specialized_health_care,health_care > doctor > nephrologist,nephrologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,specialized_health_care,health_care > doctor > neurologist,neurologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,specialized_health_care,health_care > doctor > neuropathologist,neuropathologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,specialized_health_care,health_care > skilled_nursing,skilled_nursing,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > nursing > nurse_practitioner,nurse_practitioner,Nurse Practitioner,specialized_health_care,health_care > nurse_practitioner,nurse_practitioner,healthcare_location,,TRUE,,TRUE,nursing,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > osteopath,osteopath,Osteopath,specialized_health_care,health_care > medical_center > osteopath,osteopath,healthcare_location,,TRUE,,TRUE,osteopathic_medicine,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,specialized_health_care,health_care > doctor > osteopathic_physician,osteopathic_physician,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,specialized_health_care,health_care > doctor > pain_management,pain_management,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,specialized_health_care,health_care > doctor > anesthesiologist,anesthesiologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > physician_assistant,physician_assistant,Physician Assistant,specialized_health_care,health_care > doctor > physician_assistant,physician_assistant,healthcare_location,,TRUE,,TRUE,specialized_health_care,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > podiatrist,podiatrist,Podiatrist,specialized_health_care,health_care > doctor > podiatrist,podiatrist,healthcare_location,,TRUE,,TRUE,podiatry,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,specialized_health_care,health_care > doctor > preventive_medicine,preventive_medicine,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,specialized_health_care,health_care > environmental_medicine,environmental_medicine,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,specialized_health_care,health_care > doctor > undersea_hyperbaric_medicine,undersea_hyperbaric_medicine,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,specialized_health_care,health_care > occupational_medicine,occupational_medicine,healthcare_location,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,specialized_health_care,health_care > doctor > toxicologist,toxicologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,specialized_health_care,health_care > doctor > pulmonologist,pulmonologist,internal_medicine,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,specialized_health_care,health_care > sleep_specialist,sleep_specialist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,specialized_health_care,health_care > doctor > sports_medicine,sports_medicine,sports_medicine,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,specialized_health_care,health_care > doctor > urologist,urologist,healthcare_location,,TRUE,TRUE,,,TRUE -health_care,2,TRUE,health_care > outpatient_care_facility > vision_or_eye_care_clinic,vision_or_eye_care_clinic,Vision or Eye Care Clinic,vision_or_eye_care_clinic,health_care > eye_care_clinic,eye_care_clinic,eye_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,vision_or_eye_care_clinic,health_care > doctor > ophthalmologist,ophthalmologist,eye_care,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,refractive_surgery_or_lasik,Refractive Surgery or Lasik,vision_or_eye_care_clinic,health_care > laser_eye_surgery_lasik,laser_eye_surgery_lasik,eye_care,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,vision_or_eye_care_clinic,health_care > doctor > ophthalmologist > retina_specialist,retina_specialist,eye_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,vision_or_eye_care_clinic,health_care > optometrist,optometrist,eye_care,,TRUE,TRUE,,,TRUE -health_care,1,TRUE,health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,specialized_medical_facility,,,,TRUE,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,specialized_medical_facility,health_care > abortion_clinic,abortion_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center,specialized_medical_facility,health_care > abuse_and_addiction_treatment,abuse_and_addiction_treatment,clinic_or_treatment_center,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center > alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,Alcohol and Drug Treatment Center,specialized_medical_facility,health_care > alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,specialized_medical_facility,health_care > cancer_treatment_center,cancer_treatment_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,specialized_medical_facility,health_care > dialysis_clinic,dialysis_clinic,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,specialized_medical_facility,health_care > abuse_and_addiction_treatment > eating_disorder_treatment_center,eating_disorder_treatment_center,clinic_or_treatment_center,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,specialized_medical_facility,health_care > doctor > fertility_clinic,fertility_clinic,healthcare_location,,TRUE,,,,TRUE -health_care,2,FALSE,health_care > specialized_medical_facility > organ_and_tissue_donor_service,organ_and_tissue_donor_service,Organ and Tissue Donor Service,specialized_medical_facility,health_care > organ_and_tissue_donor_service,organ_and_tissue_donor_service,healthcare_location,,TRUE,,,,TRUE -health_care,2,TRUE,health_care > specialized_medical_facility > surgery,surgery,Surgery,surgery,health_care > doctor > surgeon,surgeon,surgery,,TRUE,TRUE,,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,surgery,health_care > doctor > surgeon > cardiovascular_and_thoracic_surgeon,cardiovascular_and_thoracic_surgeon,cardiovascular_surgery,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,surgery,health_care > dentist > oral_surgeon,oral_surgeon,dental_care,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,surgery,,,,TRUE,TRUE,,,,TRUE -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,surgery,health_care > doctor > pediatrician > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,pediatrics,,TRUE,,,,TRUE -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,surgery,health_care > doctor > spine_surgeon,spine_surgeon,surgery,,TRUE,TRUE,,, -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,surgery,health_care > doctor > pediatrician > pediatric_surgery,pediatric_surgery,pediatrics,,TRUE,,,,TRUE -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,surgery,health_care > doctor > plastic_surgeon,plastic_surgeon,plastic_reconstructive_and_aesthetic_surgery,,TRUE,TRUE,,,TRUE -health_care,4,FALSE,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,surgery,health_care > doctor > cosmetic_surgeon,cosmetic_surgeon,plastic_reconstructive_and_aesthetic_surgery,,TRUE,TRUE,,,TRUE -health_care,3,FALSE,health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,surgery,health_care > surgical_center,surgical_center,surgical_center,,TRUE,TRUE,,,TRUE -lifestyle_services,0,FALSE,lifestyle_services,lifestyle_services,Lifestyle Services,,lifestyle_services,lifestyle_services,service_location,,,,,,TRUE -lifestyle_services,1,TRUE,lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,animal_or_pet_service,,,,TRUE,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue,adoption_and_rescue,animal_service,,TRUE,TRUE,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_rescue_service,animal_rescue_service,Animal Rescue Service,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > animal_rescue_service,animal_rescue_service,animal_rescue,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > animal_shelter,animal_shelter,animal_shelter,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,animal_or_pet_service,lifestyle_services > pets > adoption_and_rescue > pet_adoption,pet_adoption,animal_adoption,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,animal_or_pet_service,lifestyle_services > pets > equine_service,equine_service,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,animal_or_pet_service,lifestyle_services > pets > equine_service > farrier_service,farrier_service,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,animal_or_pet_service,lifestyle_services > pets > equine_service > horse_boarding,horse_boarding,animal_boarding,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,animal_or_pet_service,lifestyle_services > pets > equine_service > horse_trainer,horse_trainer,animal_training,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,animal_or_pet_service,lifestyle_services > pets > pet_breeder,pet_breeder,animal_breeding,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,animal_or_pet_service,lifestyle_services > pets > pet_care_service,pet_care_service,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,animal_or_pet_service,lifestyle_services > pets > pet_care_service > aquarium_service,aquarium_service,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,animal_or_pet_service,lifestyle_services > pets > pet_care_service > dog_walker,dog_walker,dog_walker,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_boarding,pet_boarding,animal_boarding,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_groomer,pet_groomer,pet_grooming,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_sitting,pet_sitting,pet_sitting,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_training,pet_training,animal_training,,TRUE,,,,TRUE -lifestyle_services,4,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_training > dog_trainer,dog_trainer,animal_training,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_transportation,pet_transportation,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,animal_or_pet_service,lifestyle_services > pets > pet_care_service > pet_waste_removal,pet_waste_removal,animal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service,animal_or_pet_service,lifestyle_services > pets > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,animal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,animal_or_pet_service,lifestyle_services > pets > pet_insurance,pet_insurance,animal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,animal_or_pet_service,lifestyle_services > pets > pet_photography,pet_photography,animal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > pets,pets,Pets,animal_or_pet_service,lifestyle_services > pets,pets,animal_service,,TRUE,,TRUE,animal_or_pet_service,TRUE -lifestyle_services,2,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,animal_or_pet_service,lifestyle_services > pets > veterinary_care,veterinary_care,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,animal_or_pet_service,lifestyle_services > pets > veterinary_care > animal_hospital,animal_hospital,animal_hospital,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,animal_or_pet_service,lifestyle_services > pets > veterinary_care > animal_physical_therapy,animal_physical_therapy,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,animal_or_pet_service,lifestyle_services > pets > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,animal_hospital,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,animal_or_pet_service,lifestyle_services > pets > veterinary_care > holistic_animal_care,holistic_animal_care,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,animal_or_pet_service,lifestyle_services > pets > veterinary_care > pet_hospice,pet_hospice,animal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,animal_or_pet_service,lifestyle_services > pets > veterinary_care > veterinarian,veterinarian,veterinarian,,TRUE,,,,TRUE -lifestyle_services,1,TRUE,lifestyle_services > food_service,food_service,Food Service,food_service,,,,TRUE,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,food_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > food_consultant,food_consultant,business_management_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,food_service,shopping > food_and_beverage_store > food_delivery_service,food_delivery_service,food_delivery_service,,TRUE,,,,TRUE -lifestyle_services,1,FALSE,lifestyle_services > personal_care_service,personal_care_service,Personal Care Service,personal_or_beauty_service,health_care > personal_care_service,personal_care_service,personal_service,,TRUE,,TRUE,personal_or_beauty_service,TRUE -lifestyle_services,1,TRUE,lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,personal_or_beauty_service,lifestyle_services > beauty_service,beauty_service,beauty_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,personal_or_beauty_service,lifestyle_services > beauty_service > acne_treatment,acne_treatment,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > barber,barber,Barber,personal_or_beauty_service,lifestyle_services > beauty_service > barber,barber,barber_shop,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,personal_or_beauty_service,lifestyle_services > beauty_service > barber > mens_grooming_salon,mens_grooming_salon,barber_shop,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,personal_or_beauty_service,lifestyle_services > beauty_service > beauty_salon,beauty_salon,beauty_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,personal_or_beauty_service,lifestyle_services > beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,beauty_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,personal_or_beauty_service,lifestyle_services > body_modification,body_modification,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,personal_or_beauty_service,lifestyle_services > body_modification > body_art,body_art,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,personal_or_beauty_service,lifestyle_services > body_modification > mehndi_henna,mehndi_henna,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,personal_or_beauty_service,lifestyle_services > body_modification > scalp_micropigmentation,scalp_micropigmentation,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing,tattoo_and_piercing,tattoo_or_piercing_salon,,TRUE,,,,TRUE -lifestyle_services,4,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing > piercing,piercing,tattoo_or_piercing_salon,,TRUE,,,,TRUE -lifestyle_services,4,FALSE,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,personal_or_beauty_service,lifestyle_services > body_modification > tattoo_and_piercing > tattoo,tattoo,tattoo_or_piercing_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,personal_or_beauty_service,lifestyle_services > beauty_service > eyebrow_service,eyebrow_service,beauty_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,personal_or_beauty_service,lifestyle_services > beauty_service > eyelash_service,eyelash_service,beauty_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,personal_or_beauty_service,lifestyle_services > beauty_service > foot_care,foot_care,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal,hair_removal,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > sugaring,sugaring,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > threading_service,threading_service,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,personal_or_beauty_service,lifestyle_services > beauty_service > hair_removal > waxing,waxing,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement,hair_replacement,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > hair_extensions,hair_extensions,hair_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > hair_loss_center,hair_loss_center,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon,hair_salon,hair_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,Blow Dry Blow Out Service,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,hair_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > hair_color_bar,hair_color_bar,hair_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > hair_stylist,hair_stylist,hair_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,personal_or_beauty_service,lifestyle_services > beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,hair_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,personal_or_beauty_service,lifestyle_services > beauty_service > image_consultant,image_consultant,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,personal_or_beauty_service,services_and_business > professional_service > life_coach,life_coach,educational_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,personal_or_beauty_service,services_and_business > professional_service > matchmaker,matchmaker,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,personal_or_beauty_service,lifestyle_services > beauty_service > nail_salon,nail_salon,nail_salon,,TRUE,,,,TRUE -services_and_business,2,FALSE,lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,personal_or_beauty_service,services_and_business > professional_service > shoe_repair,shoe_repair,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,personal_or_beauty_service,services_and_business > professional_service > shoe_shining_service,shoe_shining_service,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup,skin_care_and_makeup,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > esthetician,esthetician,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,personal_or_beauty_service,lifestyle_services > beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon,tanning_salon,tanning_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon > spray_tanning,spray_tanning,tanning_salon,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,personal_or_beauty_service,lifestyle_services > beauty_service > tanning_salon > tanning_bed,tanning_bed,tanning_salon,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,personal_or_beauty_service,lifestyle_services > beauty_service > teeth_whitening,teeth_whitening,personal_service,,TRUE,,,,TRUE -lifestyle_services,1,TRUE,lifestyle_services > wellness_service,wellness_service,Wellness Service,wellness_service,health_care > wellness_program,wellness_program,clinic_or_treatment_center,,TRUE,TRUE,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,wellness_service,health_care > colonics,colonics,clinic_or_treatment_center,,TRUE,TRUE,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,wellness_service,health_care > cryotherapy,cryotherapy,healthcare_location,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > dietitian,dietitian,Dietitian,wellness_service,health_care > dietitian,dietitian,nutrition_and_dietetics,,TRUE,,TRUE,nutrition_service,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,wellness_service,health_care > halotherapy,halotherapy,healthcare_location,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,wellness_service,health_care > health_and_wellness_club,health_and_wellness_club,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,wellness_service,health_care > health_consultant_coach,health_consultant_coach,healthcare_location,,TRUE,TRUE,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,wellness_service,health_care > hydrotherapy,hydrotherapy,healthcare_location,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,wellness_service,health_care > iv_hydration,iv_hydration,healthcare_location,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,wellness_service,health_care > massage_therapy,massage_therapy,massage_therapy,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,wellness_service,sports_and_recreation > sports_and_fitness_instruction > meditation_center,meditation_center,mental_health,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,wellness_service,health_care > nutritionist,nutritionist,healthcare_location,,TRUE,TRUE,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,wellness_service,health_care > oxygen_bar,oxygen_bar,healthcare_location,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,wellness_service,lifestyle_services > public_bath_house,public_bath_house,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,wellness_service,lifestyle_services > public_bath_house > onsen,onsen,personal_service,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,wellness_service,lifestyle_services > public_bath_house > turkish_bath,turkish_bath,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > sauna,sauna,Sauna,wellness_service,health_care > sauna,sauna,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,wellness_service,services_and_business > professional_service > snuggle_service,snuggle_service,personal_service,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > spa,spa,Spa,wellness_service,lifestyle_services > spa,spa,spa,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,wellness_service,lifestyle_services > spa > day_spa,day_spa,spa,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,wellness_service,health_care > float_spa,float_spa,spa,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,wellness_service,lifestyle_services > spa > health_spa,health_spa,spa,,TRUE,,,,TRUE -lifestyle_services,3,FALSE,lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,wellness_service,lifestyle_services > spa > medical_spa,medical_spa,spa,,TRUE,,,,TRUE -lifestyle_services,2,FALSE,lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,wellness_service,health_care > weight_loss_center,weight_loss_center,clinic_or_treatment_center,,TRUE,,,,TRUE -lodging,0,TRUE,lodging,lodging,Lodging,lodging,lodging,lodging,accommodation,,,,,,TRUE -lodging,1,TRUE,lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,bed_and_breakfast,lodging > bed_and_breakfast,bed_and_breakfast,bed_and_breakfast,,,,,, -lodging,1,FALSE,lodging > cabin,cabin,Cabin,lodging,lodging > cabin,cabin,accommodation,,,,,,TRUE -lodging,1,TRUE,lodging > campground,campground,Campground,campground,lodging > campground,campground,campground,,,,,, -lodging,1,FALSE,lodging > cottage,cottage,Cottage,lodging,lodging > cottage,cottage,accommodation,,,,,,TRUE -lodging,1,FALSE,lodging > country_house,country_house,Country House,lodging,lodging > country_house,country_house,accommodation,,,,,,TRUE -lodging,1,FALSE,lodging > holiday_park,holiday_park,Holiday Park,lodging,services_and_business > real_estate > holiday_park,holiday_park,resort,,TRUE,,,,TRUE -lodging,1,FALSE,lodging > hostel,hostel,Hostel,lodging,lodging > hostel,hostel,accommodation,,,,,,TRUE -lodging,1,TRUE,lodging > hotel,hotel,Hotel,hotel,lodging > hotel,hotel,hotel,,,,,, -lodging,2,FALSE,lodging > hotel > motel,motel,Motel,hotel,lodging > hotel > motel,motel,motel,,,,,,TRUE -lodging,1,FALSE,lodging > houseboat,houseboat,Houseboat,lodging,lodging > houseboat,houseboat,accommodation,,,,,,TRUE -lodging,1,TRUE,lodging > inn,inn,Inn,inn,lodging > inn,inn,inn,,,,,, -lodging,1,FALSE,lodging > lodge,lodge,Lodge,lodging,lodging > lodge,lodge,accommodation,,,,,,TRUE -lodging,1,FALSE,lodging > mountain_hut,mountain_hut,Mountain Hut,lodging,lodging > mountain_hut,mountain_hut,accommodation,,,,,,TRUE -lodging,1,TRUE,lodging > private_lodging,private_lodging,Private Lodging,private_lodging,,,,TRUE,TRUE,,,,TRUE -lodging,2,FALSE,lodging > private_lodging > guest_house,guest_house,Guest House,private_lodging,lodging > guest_house,guest_house,private_lodging,,TRUE,,,, -lodging,2,FALSE,lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,private_lodging,lodging > holiday_rental_home,holiday_rental_home,private_lodging,,TRUE,,,, -lodging,1,TRUE,lodging > resort,resort,Resort,resort,lodging > resort,resort,resort,,,,,, -lodging,2,FALSE,lodging > resort > beach_resort,beach_resort,Beach Resort,resort,lodging > resort > beach_resort,beach_resort,resort,,,,,, -lodging,2,FALSE,lodging > resort > ski_resort,ski_resort,Ski Resort,resort,lodging > ski_resort,ski_resort,resort,,TRUE,,,, -lodging,1,FALSE,lodging > retreat,retreat,Retreat,lodging,,,,TRUE,TRUE,,,,TRUE -lodging,2,FALSE,lodging > retreat > health_retreat,health_retreat,Health Retreat,lodging,lodging > health_retreat,health_retreat,accommodation,,TRUE,,,,TRUE -lodging,1,TRUE,lodging > rv_park,rv_park,RV Park,rv_park,lodging > rv_park,rv_park,rv_park,,,,,, -lodging,1,FALSE,lodging > ryokan,ryokan,Ryokan,inn,lodging > ryokan,ryokan,inn,,,,,, -lodging,1,FALSE,lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,lodging,lodging > self_catering_accommodation,self_catering_accommodation,accommodation,,,,,,TRUE -lodging,1,FALSE,lodging > service_apartment,service_apartment,Service Apartment,lodging,lodging > service_apartment,service_apartment,accommodation,,,,,,TRUE -services_and_business,0,FALSE,services_and_business,services_and_business,Services and Business,,services_and_business,services_and_business,service_location,,,,,,TRUE -services_and_business,1,TRUE,services_and_business > agricultural_service,agricultural_service,Agricultural Service,agricultural_service,services_and_business > agricultural_service,agricultural_service,agricultural_service,,,,,, -services_and_business,2,FALSE,services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,agricultural_service,community_and_government > organization > agriculture_association,agriculture_association,civic_organization_office,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > agricultural_service > farm,farm,Farm,farm,services_and_business > agricultural_service > farm,farm,farm,,,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,farm,services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,farm,,,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > orchard,orchard,Orchard,farm,services_and_business > agricultural_service > farm > orchard,orchard,orchard,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,farm,services_and_business > agricultural_service > farm > pig_farm,pig_farm,farm,,,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,farm,services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,farm,,,,,, -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > ranch,ranch,Ranch,farm,services_and_business > agricultural_service > farm > ranch,ranch,ranch,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,farm,services_and_business > agricultural_service > farm > urban_farm,urban_farm,farm,,,,,, -services_and_business,2,FALSE,services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,agricultural_service,services_and_business > professional_service > farm_equipment_repair_service,farm_equipment_repair_service,agricultural_service,,TRUE,,,, -services_and_business,1,TRUE,services_and_business > b2b_service,b2b_service,B2B Service,b2b_service,services_and_business > business_to_business > business_to_business_service,business_to_business_service,b2b_service,,TRUE,TRUE,,, -services_and_business,2,FALSE,services_and_business > b2b_service > agricultural_production,agricultural_production,Agricultural Production,b2b_service,services_and_business > business_to_business > business_to_business_service > agricultural_production,agricultural_production,agricultural_area,,TRUE,,TRUE,b2b_agricultural_service,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_agriculture_service,b2b_agricultural_service,B2B Agricultural Service,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food,b2b_agriculture_and_food,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > agricultural_cooperative,agricultural_cooperative,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > agriculture,agriculture,agricultural_area,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > apiary_beekeeper,apiary_beekeeper,farm,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_dairy,b2b_dairy,farm,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming,b2b_farming,farm,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farm,b2b_farm,farm,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,Farm Equipment and Supply,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,agricultural_service,,TRUE,,,,TRUE -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,agricultural_service,,TRUE,,,,TRUE -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,agricultural_service,,TRUE,,,,TRUE -services_and_business,5,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,greenhouse,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_farming > farming_service,farming_service,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > b2b_food_products,b2b_food_products,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production,crops_production,farm,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > grain_production,grain_production,farm,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > crops_production > orchards_production,orchards_production,farm,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery,fish_farm_hatchery,farm,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > fish_farm_hatchery > fish_farm,fish_farm,farm,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_breeder,livestock_breeder,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > livestock_dealer,livestock_dealer,agricultural_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,b2b_service,services_and_business > business_to_business > b2b_agriculture_and_food > poultry_farming,poultry_farming,farm,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining,b2b_energy_and_mining,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining,mining,utility_energy_infrastructure,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_coal_and_coke,b2b_coal_and_coke,B2B Coal and Coke,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining > coal_and_coke,coal_and_coke,utility_energy_infrastructure,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,b2b_quarry,B2B Quarry,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > mining > quarry,quarry,utility_energy_infrastructure,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,b2b_oil_and_gas,B2B Oil and Gas,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas,oil_and_gas,oil_or_gas_facility,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_equipment,b2b_oil_and_gas_equipment,B2B Oil and Gas Equipment,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_equipment,oil_and_gas_equipment,oil_or_gas_facility,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_exploration_and_development,b2b_oil_and_gas_exploration_and_development,B2B Oil and Gas Exploration and Development,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_exploration_and_development,oil_and_gas_exploration_and_development,oil_or_gas_facility,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_extraction,b2b_oil_and_gas_extraction,B2B Oil and Gas Extraction,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_and_gas_extraction,oil_and_gas_extraction,oil_or_gas_facility,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,b2b_oil_refinery,B2B Oil Refinery,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > oil_and_gas > oil_refinery,oil_refinery,oil_or_gas_facility,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_power_plants_and_power_plant_service,b2b_power_plants_and_power_plant_service,B2B Power Plants and Power Plant Service,b2b_energy_and_utility_service,services_and_business > business_to_business > b2b_energy_and_mining > power_plants_and_power_plant_service,power_plants_and_power_plant_service,power_plant,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,energy_management_service,Energy Management Service,b2b_energy_and_utility_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > energy_management_and_conservation_consultant,energy_management_and_conservation_consultant,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,b2b_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,b2b_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > water_treatment_equipment_and_service,water_treatment_equipment_and_service,b2b_service,,TRUE,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,b2b_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service > geological_service,geological_service,b2b_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor,logging_contractor,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_equipment_and_supplies,logging_equipment_and_supplies,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_service,logging_service,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,b2b_industrial_and_machine_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > automation_service,automation_service,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,B2B Equipment Maintenance and Repair,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,casting_molding_service,Casting Molding Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > casting_molding_and_machining,casting_molding_and_machining,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > chemical_plant,chemical_plant,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,inventory_control_service,Inventory Control Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > inventory_control_service,inventory_control_service,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,laser_cutting_service,Laser Cutting Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_to_business_service > laser_cutting_service_provider,laser_cutting_service_provider,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,business_management_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,metal_plating_service,Metal Plating Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_plating_service,metal_plating_service,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial > occupational_safety,occupational_safety,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,plastic_injection_molding_service,Plastic Injection Molding Service,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > plastic_injection_molding_workshop,plastic_injection_molding_workshop,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > scrap_metals,scrap_metals,Scrap Metals,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > metals > scrap_metals,scrap_metals,b2b_supplier_distributor,,TRUE,,TRUE,b2b_industrial_and_machine_service,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,b2b_industrial_and_machine_service,services_and_business > business_to_business > business_manufacturing_and_supply > turnery,turnery,b2b_supplier_distributor,,TRUE,,,,TRUE -,2,FALSE,services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,b2b_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,b2b_service,services_and_business > business_to_business > business_to_business_service > audio_visual_production_and_design,audio_visual_production_and_design,b2b_service,,TRUE,TRUE,,, -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,b2b_service,services_and_business > business_to_business > b2b_medical_support_service,b2b_medical_support_service,b2b_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > clinical_lab,clinical_lab,b2b_service,,TRUE,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > dental_lab,dental_lab,b2b_service,,TRUE,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_hospital_equipment_and_supplies,b2b_hospital_equipment_and_supplies,B2B Hospital Equipment and Supplies,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > hospital_equipment_and_supplies,hospital_equipment_and_supplies,b2b_service,,TRUE,TRUE,,, -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_medical_support_service > b2b_surgical_appliances_and_supplies,b2b_surgical_appliances_and_supplies,B2B Surgical Appliances and Supplies,b2b_service,services_and_business > business_to_business > b2b_medical_support_service > surgical_appliances_and_supplies,surgical_appliances_and_supplies,b2b_service,,TRUE,TRUE,,, -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,b2b_office_and_professional_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service,b2b_advertising_and_marketing_service,B2B Advertising and Marketing Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising,business_advertising,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_direct_mail_advertising,b2b_direct_mail_advertising,B2B Direct Mail Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > direct_mail_advertising,direct_mail_advertising,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_marketing_consultant,b2b_marketing_consultant,B2B Marketing Consultant,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > marketing_consultant,marketing_consultant,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_newspaper_advertising,b2b_newspaper_advertising,B2B Newspaper Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > newspaper_advertising,newspaper_advertising,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_outdoor_advertising,b2b_outdoor_advertising,B2B Outdoor Advertising,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > outdoor_advertising,outdoor_advertising,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_promotional_products_and_services,b2b_promotional_products_and_services,B2B Promotional Products and Services,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > promotional_products_and_services,promotional_products_and_services,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_publicity_service,b2b_publicity_service,B2B Publicity Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > publicity_service,publicity_service,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_radio_and_television_commercials,b2b_radio_and_television_commercials,B2B Radio and Television Commercials,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > radio_and_television_commercials,radio_and_television_commercials,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_signage_service,b2b_signage_service,B2B Signage Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > business_signage,business_signage,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_telemarketing_service,b2b_telemarketing_service,B2B Telemarketing Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_advertising > telemarketing_service,telemarketing_service,business_advertising_marketing,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,b2b_background_check_service,B2B Background Check Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > human_resource_service > background_check_service,background_check_service,human_resource_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,b2b_business_management_service,B2B Business Management Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service,business_management_service,business_management_service,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_executive_search_consultants,b2b_executive_search_consultants,B2B Executive Search Consultants,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service > executive_search_consultants,executive_search_consultants,business_management_service,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,b2b_secretarial_service,B2B Secretarial Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_management_service > secretarial_service,secretarial_service,business_management_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,b2b_domestic_trade_service,B2B Domestic Trade Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > domestic_business_and_trade_organization,domestic_business_and_trade_organization,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,b2b_human_resource_service,B2B Human Resource Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > human_resource_service,human_resource_service,human_resource_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,b2b_international_trade_service,B2B International Trade Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > international_business_and_trade_service,international_business_and_trade_service,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,b2b_records_storage_service,B2B Records Storage Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > business_records_storage_and_management,business_records_storage_and_management,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > restaurant_management,restaurant_management,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > transcription_service,transcription_service,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,translating_and_interpreting_service,Translating and Interpreting Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > translating_and_interpreting_service,translating_and_interpreting_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_science_and_technology_service,b2b_science_and_technology_service,B2B Science and Technology Service,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology,b2b_science_and_technology,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,b2b_scientific_equipment,B2B Scientific Equipment,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology > b2b_scientific_equipment,b2b_scientific_equipment,b2b_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,b2b_scientific_lab,B2B Scientific Lab,b2b_science_and_technology_service,services_and_business > business_to_business > b2b_science_and_technology > scientific_lab,scientific_lab,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B telecommunications Service,b2b_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,b2b_service,services_and_business > business_to_business > business_to_business_service > tower_communication_service,tower_communication_service,communication_tower,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation,business_storage_and_transportation,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage,b2b_storage,b2b_service,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse,warehouse,warehouse,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse_rental_service_yard,warehouse_rental_service_yard,Warehouse Rental Service Yard,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > b2b_storage > warehouse_rental_service_yard,warehouse_rental_service_yard,warehouse,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,freight_and_cargo_service,Freight and Cargo Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service,freight_and_cargo_service,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,distribution_service,Distribution Service,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_service,distribution_service,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,Freight Forwarding Agency,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,motor_freight_trucking,Motor Freight Trucking,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > motor_freight_trucking,motor_freight_trucking,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > pipeline_transportation,pipeline_transportation,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > railroad_freight,railroad_freight,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services,truck_and_industrial_vehicle_services,Truck and Industrial Vehicle Services,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services,truck_and_industrial_vehicle_services,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,Tractor Dealer,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > truck_parts_and_accessories,truck_parts_and_accessories,Truck Parts and Accessories,b2b_transportation_and_storage_service,services_and_business > business_to_business > business_storage_and_transportation > truck_and_industrial_vehicle_services > truck_parts_and_accessories,truck_parts_and_accessories,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > business_equipment_and_supply,business_equipment_and_supply,Business Equipment and Supply,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply,business_equipment_and_supply,b2b_supplier_distributor,,TRUE,,TRUE,supplier_or_distributor,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > business_manufacturing_and_supply,business_manufacturing_and_supply,Business Manufacturing and Supply,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply,business_manufacturing_and_supply,manufacturer,,TRUE,,TRUE,manufacturer, -services_and_business,2,FALSE,services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,b2b_industrial_and_machine_service,services_and_business > business_to_business > commercial_industrial,commercial_industrial,industrial_commercial_infrastructure,,TRUE,,,b2b_industrial_and_machine_service,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > consultant_and_general_service,consultant_and_general_service,Consultant and General Service,b2b_office_and_professional_service,services_and_business > business_to_business > business_to_business_service > consultant_and_general_service,consultant_and_general_service,business_management_service,,TRUE,,TRUE,b2b_service,TRUE -services_and_business,2,FALSE,services_and_business > b2b_service > energy_equipment_and_solution,energy_equipment_and_solution,Energy Equipment and Solution,b2b_energy_and_utility_service,services_and_business > business_to_business > business_equipment_and_supply > energy_equipment_and_solution,energy_equipment_and_solution,b2b_supplier_distributor,,TRUE,,TRUE,b2b_energy_and_utility_service,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer,manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_apparel,b2b_apparel,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > shoe_factory,shoe_factory,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > appliance_manufacturer,appliance_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > b2b_furniture_and_housewares,b2b_furniture_and_housewares,B2B Furniture and Housewares,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares,b2b_furniture_and_housewares,b2b_supplier_distributor,,TRUE,,TRUE,furniture_manufacturer,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > b2b_jeweler,b2b_jeweler,B2B Jeweler,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_jeweler,b2b_jeweler,b2b_supplier_distributor,,TRUE,,TRUE,jewelry_and_watches_manufacturer,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > furniture_manufacturer,furniture_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > glass_manufacturer,glass_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_hardware,b2b_hardware,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > jewelry_manufacturer,jewelry_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > leather_products_manufacturer,leather_products_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools,b2b_machinery_and_tools,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment,industrial_equipment,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mattress_manufacturing,mattress_manufacturing,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator,metal_fabricator,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > metal_fabricator > iron_work,iron_work,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > metals,metals,Metals,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals,metals,b2b_supplier_distributor,,TRUE,,TRUE,metal_fabricator,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metals > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > sheet_metal,sheet_metal,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > metals > steel_fabricator,steel_fabricator,Steel Fabricator,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > metals > steel_fabricator,steel_fabricator,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > mill,mill,Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill,mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > cotton_mill,cotton_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > flour_mill,flour_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > paper_mill,paper_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > rice_mill,rice_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > sawmill,sawmill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > textile_mill,textile_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > mill > weaving_mill,weaving_mill,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > plastic_manufacturer,plastic_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics,b2b_rubber_and_plastics,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods,b2b_sporting_and_recreation_goods,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_textiles,b2b_textiles,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles,b2b_autos_and_vehicles,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > aircraft_manufacturer,aircraft_manufacturer,manufacturer,,TRUE,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > auto_manufacturer,auto_manufacturer,manufacturer,,TRUE,,,, -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,manufacturer,services_and_business > business_to_business > business_to_business_service > boat_builder,boat_builder,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,manufacturer,services_and_business > business_to_business > manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,manufacturer,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,manufacturer,,,,TRUE,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,manufacturer,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires,b2b_tires,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor,supplier_distributor,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > abrasives_supplier,abrasives_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > aggregate_supplier,aggregate_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > aluminum_supplier,aluminum_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > awning_supplier,awning_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > battery_inverter_supplier,battery_inverter_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > bearing_supplier,bearing_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > beauty_product_supplier,beauty_product_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > beverage_supplier,beverage_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > box_lunch_supplier,box_lunch_supplier,food_or_beverage_store,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,business_office_supplies_and_stationery,Business Office Supplies and Stationery,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply > business_office_supplies_and_stationery,business_office_supplies_and_stationery,office_supply_store,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > cement_supplier,cement_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > cleaning_products_supplier,cleaning_products_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > corporate_gift_supplier,corporate_gift_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > electronic_equipment_supplier,electronic_equipment_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > electronic_parts_supplier,electronic_parts_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > fastener_supplier,fastener_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,supplier_or_distributor,services_and_business > corporate_or_business_office > food_beverage_distributor,food_beverage_distributor,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > granite_supplier,granite_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,supplier_or_distributor,services_and_business > corporate_or_business_office > hotel_supply_service,hotel_supply_service,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > hvac_supplier,hvac_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > ice_supplier,ice_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,supplier_or_distributor,services_and_business > business_to_business > import_export_service,import_export_service,import_export_company,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,supplier_or_distributor,services_and_business > business_to_business > import_export_service > exporter,exporter,import_export_company,,TRUE,,,,TRUE -services_and_business,5,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter > food_and_beverage_exporter,food_and_beverage_exporter,Food and Beverage Exporter,supplier_or_distributor,services_and_business > business_to_business > import_export_service > exporter > food_and_beverage_exporter,food_and_beverage_exporter,import_export_company,,TRUE,,,,TRUE -services_and_business,4,FALSE,services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,supplier_or_distributor,services_and_business > business_to_business > import_export_service > importer,importer,import_export_company,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > metal_supplier,metal_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > pipe_supplier,pipe_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > playground_equipment_supplier,playground_equipment_supplier,specialty_store,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply,printing_equipment_and_supply,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > propane_supplier,propane_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,restaurant_equipment_and_supply,Restaurant Equipment and Supply,supplier_or_distributor,services_and_business > business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply,restaurant_equipment_and_supply,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > retaining_wall_supplier,retaining_wall_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,Sand and Gravel Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > scale_supplier,scale_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,seal_and_hanko_supplier,Seal and Hanko Supplier,supplier_or_distributor,services_and_business > business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealer,seal_and_hanko_dealer,b2b_supplier_distributor,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > spring_supplier,spring_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > stone_supplier,stone_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > tableware_supplier,tableware_supplier,specialty_store,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > tent_house_supplier,tent_house_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > thread_supplier,thread_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > vending_machine_supplier,vending_machine_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,Water Softening Equipment Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,supplier_or_distributor,services_and_business > business_to_business > supplier_distributor > window_supplier,window_supplier,b2b_supplier_distributor,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler,wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > computer_wholesaler,computer_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > electrical_wholesaler,electrical_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fabric_wholesaler,fabric_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,FMCG Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > fmcg_wholesaler,fmcg_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > footwear_wholesaler,footwear_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,wholesaler,services_and_business > business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesaler,furniture_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,wholesaler,services_and_business > business_to_business > wholesaler > greengrocer,greengrocer,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,wholesaler,services_and_business > business_to_business > wholesaler > iron_and_steel_store,iron_and_steel_store,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > lingerie_wholesaler,lingerie_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > meat_wholesaler,meat_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > optical_wholesaler,optical_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > produce_wholesaler,produce_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,wholesaler,services_and_business > business_to_business > wholesaler > restaurant_wholesale,restaurant_wholesale,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > seafood_wholesaler,seafood_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > spices_wholesaler,spices_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > tea_wholesaler,tea_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > tools_wholesaler,tools_wholesaler,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,wholesaler,services_and_business > business_to_business > wholesaler > wholesale_florist,wholesale_florist,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,wholesaler,services_and_business > business_to_business > wholesaler > wholesale_grocer,wholesale_grocer,wholesaler,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,wholesaler,services_and_business > business_to_business > wholesaler > wine_wholesaler,wine_wholesaler,wholesaler,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > b2b_service > wood_and_pulp,wood_and_pulp,Wood and Pulp,b2b_service,services_and_business > business_to_business > business_manufacturing_and_supply > wood_and_pulp,wood_and_pulp,b2b_supplier_distributor,,TRUE,,TRUE,b2b_environmental_service,TRUE -services_and_business,1,TRUE,services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,building_or_construction_service,services_and_business > professional_service > construction_service,construction_service,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,building_or_construction_service,services_and_business > professional_service > construction_service > blacksmith,blacksmith,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,building_or_construction_service,services_and_business > professional_service > construction_service > blueprinter,blueprinter,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > civil_engineer,civil_engineer,engineering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,building_or_construction_service,services_and_business > professional_service > construction_service > construction_management,construction_management,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,building_or_construction_service,services_and_business > professional_service > crane_service,crane_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,building_or_construction_service,services_and_business > professional_service > construction_service > engineering_service,engineering_service,engineering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,building_or_construction_service,services_and_business > professional_service > construction_service > gravel_professional,gravel_professional,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,building_or_construction_service,services_and_business > professional_service > construction_service > inspection_service,inspection_service,building_inspection_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > instrumentation_engineer,instrumentation_engineer,engineering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,building_or_construction_service,services_and_business > professional_service > construction_service > ironworker,ironworker,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,building_or_construction_service,services_and_business > professional_service > construction_service > lime_professional,lime_professional,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > marble_and_granite_professional,marble_and_granite_professional,Marble and Granite Professional,building_or_construction_service,services_and_business > professional_service > construction_service > marble_and_granite_professional,marble_and_granite_professional,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,building_or_construction_service,services_and_business > professional_service > construction_service > masonry_contractor,masonry_contractor,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,building_or_construction_service,services_and_business > professional_service > construction_service > mechanical_engineer,mechanical_engineer,engineering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,building_or_construction_service,services_and_business > professional_service > construction_service > metal_material_expert,metal_material_expert,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,building_or_construction_service,services_and_business > professional_service > construction_service > road_contractor,road_contractor,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,building_or_construction_service,services_and_business > professional_service > construction_service > stone_and_masonry,stone_and_masonry,building_construction_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > building_or_construction_service > welder,welder,Welder,building_or_construction_service,services_and_business > professional_service > construction_service > welder,welder,b2b_service,,TRUE,,,,TRUE -services_and_business,1,FALSE,services_and_business > business_to_business,business_to_business,Business to Business,b2b_service,services_and_business > business_to_business,business_to_business,b2b_service,,,,TRUE,b2b_service, -services_and_business,3,FALSE,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business,environmental_and_ecological_service_for_business,Environmental and Ecological Service For Business,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business,environmental_and_ecological_service_for_business,b2b_service,,,,TRUE,environmental_or_ecological_service,TRUE -services_and_business,4,FALSE,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > environmental_renewable_natural_resource,environmental_renewable_natural_resource,Environmental Renewable Natural Resource,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service_for_business > environmental_renewable_natural_resource,environmental_renewable_natural_resource,b2b_service,,,,TRUE,environmental_or_ecological_service,TRUE -services_and_business,1,TRUE,services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,corporate_or_business_office,services_and_business > business,business,business_location,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,corporate_or_business_office,travel_and_transportation > automotive_and_ground_transport > automotive > auto_company,auto_company,corporate_or_business_office,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,corporate_or_business_office,services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,specialty_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,corporate_or_business_office,services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,corporate_or_business_office,services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,food_or_beverage_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,corporate_or_business_office,services_and_business > corporate_or_business_office > clothing_company,clothing_company,clothing_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,corporate_or_business_office,services_and_business > corporate_or_business_office > energy_company,energy_company,utility_energy_infrastructure,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,corporate_or_business_office,services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,ferry_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,corporate_or_business_office,services_and_business > corporate_or_business_office > industrial_company,industrial_company,industrial_commercial_infrastructure,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,corporate_or_business_office,services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,information_technology_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,corporate_or_business_office,services_and_business > business_to_business > b2b_medical_support_service > pharmaceutical_companies,pharmaceutical_companies,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,corporate_or_business_office,services_and_business > corporate_or_business_office > plastics_company,plastics_company,b2b_supplier_distributor,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > private_association,private_association,Private Association,corporate_or_business_office,community_and_government > organization > private_association,private_association,business_location,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,corporate_or_business_office,services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,telecommunications_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,corporate_or_business_office,services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,specialty_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,corporate_or_business_office,services_and_business > corporate_or_business_office > travel_company,travel_company,travel_service,,,,,,TRUE -services_and_business,1,TRUE,services_and_business > design_service,design_service,Design Service,design_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > architect,architect,Architect,design_service,services_and_business > professional_service > architect,architect,architectural_design_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,design_service,services_and_business > professional_service > architectural_designer,architectural_designer,architectural_design_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,design_service,services_and_business > professional_service > graphic_designer,graphic_designer,graphic_design_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > product_design,product_design,Product Design,design_service,services_and_business > professional_service > product_design,product_design,engineering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > sign_making,sign_making,Sign Making,design_service,services_and_business > professional_service > sign_making,sign_making,sign_making_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > design_service > web_designer,web_designer,Web Designer,design_service,services_and_business > professional_service > web_designer,web_designer,web_design_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,environmental_or_ecological_service,services_and_business > business_to_business > business_to_business_service > environmental_and_ecological_service,environmental_and_ecological_service,,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,environmental_or_ecological_service,services_and_business > professional_service > environmental_abatement_service,environmental_abatement_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,environmental_or_ecological_service,community_and_government > organization > environmental_conservation_organization,environmental_conservation_organization,conservation_organization,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,environmental_or_ecological_service,services_and_business > professional_service > environmental_testing,environmental_testing,b2b_service,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,environmental_or_ecological_service,services_and_business > professional_service > forestry_service,forestry_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,environmental_or_ecological_service,services_and_business > professional_service > wildlife_control,wildlife_control,home_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,event_or_party_service,services_and_business > professional_service > event_planning,event_planning,event_or_party_service,,TRUE,TRUE,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,audiovisual_equipment_rental,event_or_party_service,services_and_business > professional_service > event_planning > audiovisual_equipment_rental,audiovisual_equipment_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,event_or_party_service,services_and_business > professional_service > event_planning > balloon_service,balloon_service,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > bartender,bartender,Bartender,event_or_party_service,services_and_business > professional_service > event_planning > bartender,bartender,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,event_or_party_service,services_and_business > professional_service > event_planning > boat_charter,boat_charter,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,event_or_party_service,services_and_business > professional_service > event_planning > bounce_house_rental,bounce_house_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > caricature,caricature,Caricature,event_or_party_service,services_and_business > professional_service > event_planning > caricature,caricature,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > caterer,caterer,Caterer,event_or_party_service,services_and_business > professional_service > event_planning > caterer,caterer,catering_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > event_or_party_service > clown,clown,Clown,event_or_party_service,services_and_business > professional_service > event_planning > clown,clown,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,event_or_party_service,services_and_business > professional_service > event_planning > dj_service,dj_service,dj_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,event_or_party_service,services_and_business > professional_service > event_planning > event_technology_service,event_technology_service,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,event_or_party_service,services_and_business > professional_service > event_planning > face_painting,face_painting,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,event_or_party_service,services_and_business > professional_service > event_planning > floral_designer,floral_designer,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,event_or_party_service,services_and_business > professional_service > event_planning > game_truck_rental,game_truck_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,event_or_party_service,services_and_business > professional_service > event_planning > golf_cart_rental,golf_cart_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,event_or_party_service,services_and_business > professional_service > event_planning > henna_artist,henna_artist,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,event_or_party_service,services_and_business > professional_service > event_planning > karaoke_rental,karaoke_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > kids_recreation_and_party,kids_recreation_and_party,Kids Recreation and Party,event_or_party_service,services_and_business > professional_service > event_planning > kids_recreation_and_party,kids_recreation_and_party,childrens_party_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > event_or_party_service > magician,magician,Magician,event_or_party_service,services_and_business > professional_service > event_planning > magician,magician,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > mohel,mohel,Mohel,event_or_party_service,services_and_business > professional_service > event_planning > mohel,mohel,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > musician,musician,Musician,event_or_party_service,services_and_business > professional_service > event_planning > musician,musician,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,event_or_party_service,services_and_business > professional_service > event_planning > officiating_service,officiating_service,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_and_event_planning,party_and_event_planning,Party and Event Planning,event_or_party_service,services_and_business > professional_service > event_planning > party_and_event_planning,party_and_event_planning,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_bike_rental,party_bike_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_bus_rental,party_bus_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_character,party_character,Party Character,event_or_party_service,services_and_business > professional_service > event_planning > party_character,party_character,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,event_or_party_service,services_and_business > professional_service > event_planning > party_equipment_rental,party_equipment_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,event_or_party_service,services_and_business > professional_service > event_planning > personal_chef,personal_chef,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,event_or_party_service,services_and_business > professional_service > event_planning > photo_booth_rental,photo_booth_rental,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,event_or_party_service,services_and_business > professional_service > event_planning > silent_disco,silent_disco,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,event_or_party_service,services_and_business > professional_service > event_planning > sommelier_service,sommelier_service,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,event_or_party_service,services_and_business > professional_service > event_planning > team_building_activity,team_building_activity,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,event_or_party_service,services_and_business > professional_service > event_planning > trivia_host,trivia_host,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,event_or_party_service,services_and_business > professional_service > event_planning > valet_service,valet_service,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > videographer,videographer,Videographer,event_or_party_service,services_and_business > professional_service > event_planning > videographer,videographer,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,event_or_party_service,services_and_business > professional_service > event_planning > wedding_chapel,wedding_chapel,event_or_party_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,event_or_party_service,services_and_business > professional_service > event_planning > wedding_planning,wedding_planning,wedding_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > family_service,family_service,Family Service,family_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > adoption_service,adoption_service,Adoption Service,family_service,services_and_business > professional_service > adoption_service,adoption_service,adoption_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,family_service,services_and_business > professional_service > child_care_and_day_care,child_care_and_day_care,child_care_or_day_care,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,family_service,services_and_business > professional_service > child_care_and_day_care > day_care_preschool,day_care_preschool,child_care_or_day_care,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,family_service,services_and_business > professional_service > elder_care_planning,elder_care_planning,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > family_service_center,family_service_center,Family Service Center,family_service,community_and_government > family_service_center,family_service_center,family_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > family_service > funeral_service,funeral_service,Funeral Service,family_service,services_and_business > professional_service > funeral_service,funeral_service,funeral_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,family_service,services_and_business > professional_service > funeral_service > cremation_service,cremation_service,funeral_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,family_service,services_and_business > professional_service > funeral_service > mortuary_service,mortuary_service,funeral_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > genealogist,genealogist,Genealogist,family_service,services_and_business > professional_service > genealogist,genealogist,educational_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,family_service,services_and_business > professional_service > mobility_equipment_service,mobility_equipment_service,technical_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > family_service > nanny_service,nanny_service,Nanny Service,family_service,services_and_business > professional_service > nanny_service,nanny_service,family_service,,TRUE,,,, -services_and_business,1,TRUE,services_and_business > financial_service,financial_service,Financial Service,financial_service,services_and_business > financial_service,financial_service,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > accountant,accountant,Accountant,financial_service,services_and_business > financial_service > accountant,accountant,accountant_or_bookkeeper,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,financial_service,services_and_business > professional_service > appraisal_service,appraisal_service,building_appraisal_service,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > financial_service > atm,atm,ATM,atm,services_and_business > financial_service > atm,atm,atm,,,,,, -services_and_business,2,TRUE,services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,bank_or_credit_union,services_and_business > financial_service > bank_credit_union,bank_credit_union,financial_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,bank_or_credit_union,services_and_business > financial_service > bank_credit_union > bank,bank,bank,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,bank_or_credit_union,services_and_business > financial_service > bank_credit_union > credit_union,credit_union,credit_union,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > broker,broker,Broker,financial_service,services_and_business > financial_service > broker,broker,financial_service,,,,,, -services_and_business,3,FALSE,services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,financial_service,services_and_business > financial_service > broker > business_broker,business_broker,financial_service,,,,,, -services_and_business,3,FALSE,services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,financial_service,services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,financial_service,services_and_business > financial_service > business_banking_service,business_banking_service,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > business_financing,business_financing,Business Financing,financial_service,services_and_business > financial_service > business_financing,business_financing,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,financial_service,services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,loan_provider,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,financial_service,services_and_business > financial_service > coin_dealer,coin_dealer,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,financial_service,services_and_business > financial_service > collection_agency,collection_agency,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,financial_service,services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,financial_service,services_and_business > financial_service > currency_exchange,currency_exchange,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,financial_service,services_and_business > professional_service > customs_broker,customs_broker,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,financial_service,services_and_business > financial_service > debt_relief_service,debt_relief_service,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,financial_service,services_and_business > financial_service > financial_advising,financial_advising,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,financial_service,services_and_business > gold_buyer,gold_buyer,specialty_store,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > holding_company,holding_company,Holding Company,financial_service,services_and_business > financial_service > holding_company,holding_company,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,financial_service,services_and_business > financial_service > installment_loans,installment_loans,loan_provider,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,financial_service,services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,loan_provider,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,financial_service,services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,loan_provider,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,financial_service,services_and_business > financial_service > insurance_agency,insurance_agency,insurance_agency,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,financial_service,services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,insurance_agency,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,financial_service,services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,insurance_agency,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,financial_service,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,insurance_agency,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,financial_service,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,insurance_agency,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,financial_service,services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,insurance_agency,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > investing,investing,Investing,financial_service,services_and_business > financial_service > investing,investing,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,financial_service,services_and_business > financial_service > investment_management_company,investment_management_company,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,financial_service,services_and_business > financial_service > money_transfer_service,money_transfer_service,financial_service,,,,,, -services_and_business,2,FALSE,services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,financial_service,services_and_business > real_estate > mortgage_broker,mortgage_broker,loan_provider,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,financial_service,services_and_business > private_establishments_and_corporates > private_equity_firm,private_equity_firm,financial_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,financial_service,services_and_business > professional_service > public_adjuster,public_adjuster,insurance_agency,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,financial_service,services_and_business > real_estate > real_estate_investment,real_estate_investment,financial_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > financial_service > tax_service,tax_service,Tax Service,financial_service,services_and_business > financial_service > tax_service,tax_service,tax_preparation_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > financial_service > trusts,trusts,Trusts,financial_service,services_and_business > financial_service > trusts,trusts,financial_service,,,,,, -services_and_business,1,TRUE,services_and_business > home_service,home_service,Home Service,home_service,services_and_business > home_service,home_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,home_service,services_and_business > professional_service > air_duct_cleaning_service,air_duct_cleaning_service,hvac_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > antenna_service,antenna_service,Antenna Service,home_service,services_and_business > professional_service > antenna_service,antenna_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,home_service,services_and_business > professional_service > appliance_repair_service,appliance_repair_service,applicance_repair_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,home_service,services_and_business > home_service > artificial_turf,artificial_turf,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,home_service,services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,remodeling_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,home_service,services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,home_service,services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpenter,carpenter,Carpenter,home_service,services_and_business > home_service > carpenter,carpenter,carpentry_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,home_service,services_and_business > home_service > carpet_cleaning,carpet_cleaning,carpet_cleaning_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,home_service,services_and_business > professional_service > carpet_dyeing,carpet_dyeing,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,home_service,services_and_business > home_service > carpet_installation,carpet_installation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,roofing_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,home_service,,,,,, -services_and_business,3,FALSE,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,home_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,roofing_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > childproofing,childproofing,Childproofing,home_service,services_and_business > home_service > childproofing,childproofing,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > chimney_service,chimney_service,Chimney Service,home_service,services_and_business > home_service > chimney_service,chimney_service,home_service,,,,,, -services_and_business,3,FALSE,services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,home_service,services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,home_service,services_and_business > professional_service > clock_repair_service,clock_repair_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,home_service,services_and_business > home_service > closet_remodeling,closet_remodeling,remodeling_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > community_book_box,community_book_box,Community Book Box,home_service,services_and_business > professional_service > community_book_box,community_book_box,media_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > contractor,contractor,Contractor,home_service,services_and_business > home_service > contractor,contractor,building_contractor_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,home_service,services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,building_contractor_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,home_service,services_and_business > home_service > contractor > building_contractor,building_contractor,building_contractor_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,home_service,services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,building_contractor_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,home_service,services_and_business > home_service > contractor > paving_contractor,paving_contractor,building_contractor_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,home_service,services_and_business > home_service > countertop_installation,countertop_installation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,home_service,services_and_business > home_service > damage_restoration,damage_restoration,home_service,,,,,, -services_and_business,3,FALSE,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,Fire and Water Damage Restoration,home_service,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,home_service,services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > demolition_service,demolition_service,Demolition Service,home_service,services_and_business > home_service > demolition_service,demolition_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > donation_center,donation_center,Donation Center,home_service,services_and_business > professional_service > donation_center,donation_center,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,home_service,services_and_business > home_service > door_sales_service,door_sales_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > drywall_service,drywall_service,Drywall Service,home_service,services_and_business > home_service > drywall_service,drywall_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > electrician,electrician,Electrician,home_service,services_and_business > home_service > electrician,electrician,electrical_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > excavation_service,excavation_service,Excavation Service,home_service,services_and_business > home_service > excavation_service,excavation_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > exterior_design,exterior_design,Exterior Design,home_service,services_and_business > home_service > exterior_design,exterior_design,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,home_service,services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > feng_shui,feng_shui,Feng Shui,home_service,services_and_business > professional_service > feng_shui,feng_shui,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,home_service,services_and_business > home_service > fire_protection_service,fire_protection_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,home_service,services_and_business > home_service > fireplace_service,fireplace_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > firewood,firewood,Firewood,home_service,services_and_business > home_service > firewood,firewood,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,home_service,services_and_business > home_service > foundation_repair,foundation_repair,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,home_service,services_and_business > home_service > furniture_assembly,furniture_assembly,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,home_service,services_and_business > professional_service > furniture_rental_service,furniture_rental_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,home_service,services_and_business > professional_service > furniture_repair,furniture_repair,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,home_service,services_and_business > professional_service > furniture_reupholstery,furniture_reupholstery,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,home_service,services_and_business > home_service > garage_door_service,garage_door_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,home_service,services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > grout_service,grout_service,Grout Service,home_service,services_and_business > home_service > grout_service,grout_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > gutter_service,gutter_service,Gutter Service,home_service,services_and_business > home_service > gutter_service,gutter_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > handyman,handyman,Handyman,home_service,services_and_business > home_service > handyman,handyman,handyman_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,home_service,services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_automation,home_automation,Home Automation,home_service,services_and_business > home_service > home_automation,home_automation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,home_service,services_and_business > home_service > home_cleaning,home_cleaning,house_cleaning_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,home_service,services_and_business > home_service > home_energy_auditor,home_energy_auditor,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_inspector,home_inspector,Home Inspector,home_service,services_and_business > home_service > home_inspector,home_inspector,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,home_service,services_and_business > home_service > home_network_installation,home_network_installation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_security,home_security,Home Security,home_service,services_and_business > home_service > home_security,home_security,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,home_service,services_and_business > home_service > home_window_tinting,home_window_tinting,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > house_sitting,house_sitting,House Sitting,home_service,services_and_business > home_service > house_sitting,house_sitting,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > hvac_service,hvac_service,HVAC Service,home_service,services_and_business > home_service > hvac_service,hvac_service,hvac_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,home_service,services_and_business > professional_service > hydro_jetting,hydro_jetting,plumbing_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,home_service,services_and_business > professional_service > indoor_landscaping,indoor_landscaping,landscaping_gardening_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,home_service,services_and_business > home_service > insulation_installation,insulation_installation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > interior_design,interior_design,Interior Design,home_service,services_and_business > home_service > interior_design,interior_design,interior_design_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,home_service,services_and_business > home_service > irrigation_service,irrigation_service,landscaping_gardening_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,home_service,services_and_business > professional_service > junk_removal_and_hauling,junk_removal_and_hauling,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,home_service,services_and_business > home_service > key_and_locksmith,key_and_locksmith,locksmith_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,home_service,services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,remodeling_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,home_service,services_and_business > professional_service > knife_sharpening,knife_sharpening,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > landscaping,landscaping,Landscaping,home_service,services_and_business > home_service > landscaping,landscaping,landscaping_gardening_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > landscaping > gardener,gardener,Gardener,home_service,services_and_business > home_service > landscaping > gardener,gardener,landscaping_gardening_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,home_service,services_and_business > home_service > landscaping > landscape_architect,landscape_architect,landscaping_gardening_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,home_service,services_and_business > home_service > landscaping > lawn_service,lawn_service,landscaping_gardening_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,home_service,services_and_business > home_service > landscaping > tree_service,tree_service,landscaping_gardening_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,home_service,services_and_business > professional_service > lawn_mower_repair_service,lawn_mower_repair_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,home_service,services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,home_service,services_and_business > home_service > masonry_concrete,masonry_concrete,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,home_service,services_and_business > professional_service > misting_system_service,misting_system_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,home_service,services_and_business > home_service > mobile_home_repair,mobile_home_repair,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > mover,mover,Mover,home_service,services_and_business > home_service > mover,mover,moving_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > packing_service,packing_service,Packing Service,home_service,services_and_business > home_service > packing_service,packing_service,moving_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > painting,painting,Painting,home_service,services_and_business > home_service > painting,painting,painting_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > patio_covers,patio_covers,Patio Covers,home_service,services_and_business > home_service > patio_covers,patio_covers,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,home_service,services_and_business > professional_service > personal_assistant,personal_assistant,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,home_service,services_and_business > professional_service > pest_control_service,pest_control_service,pest_control_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > plasterer,plasterer,Plasterer,home_service,services_and_business > home_service > plasterer,plasterer,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > plumbing,plumbing,Plumbing,home_service,services_and_business > home_service > plumbing,plumbing,plumbing_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,home_service,services_and_business > home_service > plumbing > backflow_service,backflow_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,home_service,services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,home_service,services_and_business > home_service > pool_cleaning,pool_cleaning,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,home_service,services_and_business > home_service > pressure_washing,pressure_washing,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > recycling_center,recycling_center,Recycling Center,home_service,services_and_business > professional_service > recycling_center,recycling_center,recycling_center,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,home_service,services_and_business > home_service > refinishing_service,refinishing_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > security_systems,security_systems,Security Systems,home_service,services_and_business > home_service > security_systems,security_systems,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,home_service,services_and_business > professional_service > sewing_and_alterations,sewing_and_alterations,clothing_alteration_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,home_service,services_and_business > professional_service > sewing_and_alterations > tailor,tailor,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,home_service,services_and_business > home_service > shades_and_blinds,shades_and_blinds,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > shutters,shutters,Shutters,home_service,services_and_business > home_service > shutters,shutters,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > siding,siding,Siding,home_service,services_and_business > home_service > siding,siding,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,home_service,services_and_business > professional_service > snow_removal_service,snow_removal_service,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > solar_installation,solar_installation,Solar Installation,home_service,services_and_business > home_service > solar_installation,solar_installation,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,home_service,services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,home_service,services_and_business > home_service > structural_engineer,structural_engineer,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > stucco_service,stucco_service,Stucco Service,home_service,services_and_business > home_service > stucco_service,stucco_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,home_service,services_and_business > home_service > television_service_provider,television_service_provider,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > tiling,tiling,Tiling,home_service,services_and_business > home_service > tiling,tiling,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,home_service,services_and_business > professional_service > tv_mounting,tv_mounting,technical_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,home_service,services_and_business > home_service > wallpaper_installer,wallpaper_installer,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,home_service,services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,applicance_repair_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > water_delivery,water_delivery,Water Delivery,home_service,services_and_business > professional_service > water_delivery,water_delivery,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,home_service,services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,applicance_repair_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,home_service,services_and_business > home_service > water_purification_service,water_purification_service,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > waterproofing,waterproofing,Waterproofing,home_service,services_and_business > home_service > waterproofing,waterproofing,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > well_drilling,well_drilling,Well Drilling,home_service,services_and_business > professional_service > well_drilling,well_drilling,home_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > home_service > window_washing,window_washing,Window Washing,home_service,services_and_business > home_service > window_washing,window_washing,home_service,,,,,, -services_and_business,2,FALSE,services_and_business > home_service > windows_installation,windows_installation,Windows Installation,home_service,services_and_business > home_service > windows_installation,windows_installation,home_service,,,,,, -services_and_business,3,FALSE,services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,home_service,services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,home_service,,,,,, -services_and_business,1,TRUE,services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,housing_or_property_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > housing_or_property_service > apartment,apartment,Apartment,apartment,services_and_business > real_estate > apartment,apartment,apartment_building,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > housing_or_property_service > condominium,condominium,Condominium,condominium,services_and_business > real_estate > condominium,condominium,housing,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,housing_or_property_service,health_care > halfway_house,halfway_house,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,housing_or_property_service,community_and_government > low_income_housing,low_income_housing,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,housing_or_property_service,services_and_business > real_estate > mobile_home_park,mobile_home_park,housing,,TRUE,,,,TRUE -services_and_business,2,TRUE,services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,senior_living_facility,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,senior_living_facility,health_care > assisted_living_facility,assisted_living_facility,senior_living_facility,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,senior_living_facility,health_care > memory_care,memory_care,healthcare_location,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,senior_living_facility,community_and_government > retirement_home,retirement_home,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,housing_or_property_service,services_and_business > real_estate > university_housing,university_housing,housing,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,industrial_facility_or_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,industrial_facility_or_service,services_and_business > professional_service > hazardous_waste_disposal,hazardous_waste_disposal,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,industrial_facility_or_service,services_and_business > professional_service > powder_coating_service,powder_coating_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,industrial_facility_or_service,services_and_business > professional_service > sandblasting_service,sandblasting_service,b2b_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > laundry_service,laundry_service,Laundry Service,laundry_service,services_and_business > professional_service > laundry_service,laundry_service,laundry_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,laundry_service,services_and_business > professional_service > laundry_service > dry_cleaning,dry_cleaning,dry_cleaning_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > laundry_service > laundromat,laundromat,Laundromat,laundry_service,services_and_business > professional_service > laundry_service > laundromat,laundromat,laundromat,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > legal_service,legal_service,Legal Service,legal_service,services_and_business > professional_service > legal_service,legal_service,legal_service,,TRUE,,,, -services_and_business,2,TRUE,services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,attorney_or_law_firm,services_and_business > professional_service > lawyer,lawyer,attorney_or_law_firm,,TRUE,TRUE,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,attorney_or_law_firm,services_and_business > professional_service > lawyer > appellate_practice_lawyer,appellate_practice_lawyer,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > bankruptcy_law,bankruptcy_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > business_law,business_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,attorney_or_law_firm,services_and_business > professional_service > lawyer > civil_rights_lawyer,civil_rights_lawyer,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > contract_law,contract_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > criminal_defense_law,criminal_defense_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > disability_law,disability_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,divorce_and_family_law,Divorce and Family Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > divorce_and_family_law,divorce_and_family_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > dui_law,dui_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > employment_law,employment_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > entertainment_law,entertainment_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > estate_planning_law,estate_planning_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,attorney_or_law_firm,services_and_business > professional_service > lawyer > general_litigation,general_litigation,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > immigration_law,immigration_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,ip_and_internet_law,IP and Internet Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > ip_and_internet_law,ip_and_internet_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > medical_law,medical_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,attorney_or_law_firm,services_and_business > professional_service > lawyer > paralegal_service,paralegal_service,paralegal_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > personal_injury_law,personal_injury_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > real_estate_law,real_estate_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > social_security_law,social_security_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > tax_law,tax_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > traffic_ticketing_law,traffic_ticketing_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,wills_trusts_and_probate,Wills Trusts and Probate,attorney_or_law_firm,services_and_business > professional_service > lawyer > wills_trusts_and_probate,wills_trusts_and_probate,will_trust_probate_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,attorney_or_law_firm,services_and_business > professional_service > lawyer > workers_compensation_law,workers_compensation_law,attorney_or_law_firm,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,legal_service,services_and_business > professional_service > bail_bonds_service,bail_bonds_service,bail_bonds_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,legal_service,services_and_business > professional_service > legal_service > court_reporter,court_reporter,legal_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > legal_service > mediator,mediator,Mediator,legal_service,services_and_business > professional_service > mediator,mediator,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > legal_service > notary_public,notary_public,Notary Public,legal_service,services_and_business > professional_service > notary_public,notary_public,notary_public,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > legal_service > patent_law,patent_law,Patent Law,legal_service,services_and_business > professional_service > patent_law,patent_law,legal_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,legal_service,services_and_business > professional_service > private_investigation,private_investigation,legal_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > legal_service > process_server,process_server,Process Server,legal_service,services_and_business > professional_service > legal_service > process_server,process_server,legal_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,legal_service,services_and_business > professional_service > tenant_and_eviction_law,tenant_and_eviction_law,legal_service,,TRUE,,,, -services_and_business,1,TRUE,services_and_business > media_service,media_service,Media Service,media_service,services_and_business > media_and_news,media_and_news,media_service,,TRUE,TRUE,,, -services_and_business,2,FALSE,services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,media_service,services_and_business > professional_service > art_restoration_service,art_restoration_service,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > bookbinding,bookbinding,Bookbinding,media_service,services_and_business > professional_service > bookbinding,bookbinding,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > calligraphy,calligraphy,Calligraphy,media_service,services_and_business > professional_service > calligraphy,calligraphy,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,media_service,services_and_business > professional_service > commissioned_artist,commissioned_artist,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,media_service,services_and_business > private_establishments_and_corporates > corporate_entertainment_service,corporate_entertainment_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,media_service,services_and_business > professional_service > digitizing_service,digitizing_service,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > engraving,engraving,Engraving,media_service,services_and_business > professional_service > engraving,engraving,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_critic,media_critic,Media Critic,media_service,services_and_business > media_and_news > media_critic,media_critic,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,media_service,services_and_business > media_and_news > media_critic > movie_critic,movie_critic,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,media_service,services_and_business > media_and_news > media_critic > music_critic,music_critic,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,media_service,services_and_business > media_and_news > media_critic > video_game_critic,video_game_critic,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_news_company,media_news_company,Media News Company,media_service,services_and_business > media_and_news > media_news_company,media_news_company,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,media_service,services_and_business > media_and_news > media_news_company > animation_studio,animation_studio,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,media_service,services_and_business > media_and_news > media_news_company > book_magazine_distribution,book_magazine_distribution,print_media_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,media_service,services_and_business > media_and_news > media_news_company > broadcasting_media_production,broadcasting_media_production,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,media_service,services_and_business > media_and_news > media_news_company > game_publisher,game_publisher,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,media_service,services_and_business > media_and_news > media_news_company > media_agency,media_agency,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,media_service,services_and_business > media_and_news > media_news_company > movie_television_studio,movie_television_studio,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > music_production,music_production,Music Production,media_service,services_and_business > media_and_news > media_news_company > music_production,music_production,music_production_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > publisher,publisher,Publisher,media_service,services_and_business > media_and_news > media_news_company > topic_publisher,publisher,,,TRUE,TRUE,,,TRUE -services_and_business,3,TRUE,services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,radio_station,services_and_business > media_and_news > media_news_company > radio_station,radio_station,radio_station,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,media_service,services_and_business > media_and_news > media_news_company > social_media_company,social_media_company,media_service,,TRUE,,,, -services_and_business,3,TRUE,services_and_business > media_service > media_news_company > television_station,television_station,Television Station,television_station,services_and_business > media_and_news > media_news_company > television_station,television_station,television_station,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,media_service,services_and_business > media_and_news > media_news_company > weather_forecast_service,weather_forecast_service,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_news_website,media_news_website,Media News Website,media_service,services_and_business > media_and_news > media_news_website,media_news_website,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,media_service,services_and_business > media_and_news > media_restoration_service,media_restoration_service,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > music_production_service,music_production_service,Music Production Service,media_service,services_and_business > professional_service > music_production_service,music_production_service,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,media_service,services_and_business > professional_service > musical_instrument_service,musical_instrument_service,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,media_service,services_and_business > professional_service > musical_instrument_service > piano_service,piano_service,media_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,media_service,services_and_business > professional_service > musical_instrument_service > vocal_coach,vocal_coach,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > photography_service,photography_service,Photography Service,media_service,services_and_business > professional_service > event_planning > photographer,photographer,photography_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,media_service,services_and_business > professional_service > event_planning > boudoir_photography,boudoir_photography,photography_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,media_service,services_and_business > professional_service > event_planning > event_photography,event_photography,photography_service,,TRUE,TRUE,,,TRUE -services_and_business,3,FALSE,services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,media_service,services_and_business > professional_service > event_planning > session_photography,session_photography,photography_service,,TRUE,TRUE,,,TRUE -services_and_business,2,FALSE,services_and_business > media_service > print_media,print_media,Print Media,media_service,services_and_business > media_and_news > print_media,print_media,print_media_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > media_service > record_label,record_label,Record Label,media_service,services_and_business > professional_service > record_label,record_label,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,media_service,services_and_business > professional_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > studio_taping,studio_taping,Studio Taping,media_service,services_and_business > studio_taping,studio_taping,entertainment_location,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,media_service,services_and_business > media_and_news > theatrical_production,theatrical_production,threatre_venue,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > media_service > video_film_production,video_film_production,Video Film Production,media_service,services_and_business > professional_service > video_film_production,video_film_production,media_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > media_service > weather_station,weather_station,Weather Station,media_service,community_and_government > weather_station,weather_station,media_service,,TRUE,,,, -services_and_business,1,TRUE,services_and_business > printing_service,printing_service,Printing Service,printing_service,services_and_business > professional_service > printing_service,printing_service,printing_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > printing_service > 3d_printing_service,3d_printing_service,3D Printing Service,printing_service,services_and_business > professional_service > 3d_printing_service,3d_printing_service,printing_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,printing_service,services_and_business > professional_service > commercial_printer,commercial_printer,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,printing_service,services_and_business > professional_service > duplication_service,duplication_service,media_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,printing_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-Shirt Printing Service,printing_service,services_and_business > professional_service > screen_printing_t_shirt_printing,screen_printing_t_shirt_printing,printing_service,,TRUE,TRUE,,, -services_and_business,1,FALSE,services_and_business > private_establishments_and_corporates,private_establishments_and_corporates,Private Establishments and Corporates,corporate_or_business_office,services_and_business > private_establishments_and_corporates,private_establishments_and_corporates,corporate_or_business_office,,,,TRUE,corporate_or_business_office, -services_and_business,2,FALSE,services_and_business > private_establishments_and_corporates > corporate_office,corporate_office,Corporate Office,corporate_or_business_office,services_and_business > private_establishments_and_corporates > corporate_office,corporate_office,corporate_or_business_office,,,,TRUE,corporate_or_business_office, -services_and_business,1,TRUE,services_and_business > professional_service,professional_service,Professional Service,professional_service,services_and_business > professional_service,professional_service,service_location,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,professional_service,services_and_business > professional_service > advertising_agency,advertising_agency,business_advertising_marketing,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,professional_service,services_and_business > professional_service > bank_equipment_service,bank_equipment_service,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > billing_service,billing_service,Billing Service,professional_service,services_and_business > professional_service > billing_service,billing_service,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,professional_service,services_and_business > professional_service > bookkeeper,bookkeeper,accountant_or_bookkeeper,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,professional_service,services_and_business > professional_service > business_consulting,business_consulting,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,professional_service,services_and_business > professional_service > career_counseling,career_counseling,educational_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,professional_service,services_and_business > professional_service > certification_agency,certification_agency,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,professional_service,services_and_business > professional_service > cleaning_service,cleaning_service,business_cleaning_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,professional_service,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,business_cleaning_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,professional_service,services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,business_cleaning_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,professional_service,services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,business_cleaning_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,professional_service,services_and_business > professional_service > copywriting_service,copywriting_service,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,professional_service,services_and_business > business_to_business > business_to_business_service > coworking_space,coworking_space,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,professional_service,services_and_business > professional_service > e_commerce_service,e_commerce_service,software_development,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,professional_service,services_and_business > professional_service > editorial_service,editorial_service,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,professional_service,services_and_business > professional_service > employment_agency,employment_agency,human_resource_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,professional_service,services_and_business > professional_service > employment_agency > temp_agency,temp_agency,human_resource_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,professional_service,services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,b2b_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,professional_service,services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,social_or_community_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,professional_service,services_and_business > professional_service > internet_marketing_service,internet_marketing_service,business_advertising_marketing,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,professional_service,services_and_business > professional_service > marketing_agency,marketing_agency,business_advertising_marketing,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,professional_service,services_and_business > professional_service > merchandising_service,merchandising_service,business_advertising_marketing,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,professional_service,services_and_business > professional_service > payroll_service,payroll_service,human_resource_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > public_relations,public_relations,Public Relations,professional_service,services_and_business > professional_service > public_relations,public_relations,business_management_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,professional_service,services_and_business > professional_service > shredding_service,shredding_service,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,professional_service,services_and_business > professional_service > social_media_agency,social_media_agency,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,professional_service,services_and_business > professional_service > talent_agency,talent_agency,human_resource_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > translation_service,translation_service,Translation Service,professional_service,services_and_business > professional_service > translation_service,translation_service,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > typing_service,typing_service,Typing Service,professional_service,services_and_business > professional_service > typing_service,typing_service,media_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > professional_service > writing_service,writing_service,Writing Service,professional_service,services_and_business > professional_service > writing_service,writing_service,media_service,,,,,,TRUE -services_and_business,1,FALSE,services_and_business > public_utility_provider,public_utility_provider,Public Utility Provider,public_utility,services_and_business > public_utility_provider,public_utility_provider,public_utility_service,,,,TRUE,public_utility,TRUE -services_and_business,1,FALSE,services_and_business > real_estate,real_estate,Real Estate,real_estate_service,services_and_business > real_estate,real_estate,real_estate_service,,,,TRUE,real_estate_service, -services_and_business,1,TRUE,services_and_business > real_estate_service,real_estate_service,Real Estate Service,real_estate_service,services_and_business > real_estate > real_estate_service,real_estate_service,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > builder,builder,Builder,real_estate_service,services_and_business > real_estate > builder,builder,building_contractor_service,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,real_estate_service,services_and_business > real_estate > builder > home_developer,home_developer,real_estate_developer,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,real_estate_service,services_and_business > real_estate > commercial_real_estate,commercial_real_estate,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,real_estate_service,services_and_business > real_estate > display_home_center,display_home_center,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,real_estate_service,services_and_business > real_estate > real_estate_service > escrow_service,escrow_service,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,real_estate_service,services_and_business > real_estate > estate_liquidation,estate_liquidation,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > home_organization,home_organization,Home Organization,real_estate_service,community_and_government > organization > home_organization,home_organization,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > home_staging,home_staging,Home Staging,real_estate_service,services_and_business > real_estate > home_staging,home_staging,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,real_estate_service,services_and_business > real_estate > homeowner_association,homeowner_association,home_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,real_estate_service,services_and_business > real_estate > housing_cooperative,housing_cooperative,social_or_community_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,real_estate_service,services_and_business > real_estate > kitchen_incubator,kitchen_incubator,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,real_estate_service,services_and_business > real_estate > real_estate_service > land_surveying,land_surveying,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,real_estate_service,services_and_business > real_estate > mobile_home_dealer,mobile_home_dealer,housing,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > property_management,property_management,Property Management,real_estate_service,services_and_business > real_estate > property_management,property_management,property_management_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,real_estate_service,services_and_business > real_estate > real_estate_agent,real_estate_agent,real_estate_agency,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,real_estate_service,services_and_business > real_estate > real_estate_agent > apartment_agent,apartment_agent,property_management_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,real_estate_service,services_and_business > real_estate > real_estate_service > real_estate_photography,real_estate_photography,real_estate_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,real_estate_service,services_and_business > real_estate > shared_office_space,shared_office_space,real_estate_service,,TRUE,,,, -services_and_business,1,TRUE,services_and_business > rental_service,rental_service,Rental Service,rental_service,services_and_business > rental_service,rental_service,property_management_service,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,rental_service,services_and_business > real_estate > art_space_rental,art_space_rental,artspace,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,rental_service,services_and_business > professional_service > bus_rental,bus_rental,vehicle_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,rental_service,services_and_business > rental_service > clothing_rental,clothing_rental,clothing_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,rental_service,services_and_business > professional_service > junk_removal_and_hauling > dumpster_rental,dumpster_rental,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,rental_service,services_and_business > professional_service > machine_and_tool_rental,machine_and_tool_rental,technical_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,rental_service,services_and_business > rental_service > rental_kiosk,rental_kiosk,specialty_store,,,,,,TRUE -services_and_business,2,FALSE,services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,vehicle_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,auto_rental_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,vehicle_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,vehicle_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,vehicle_service,,,,,,TRUE -services_and_business,3,FALSE,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,rental_service,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,truck_rental_service,,,,,,TRUE -services_and_business,1,TRUE,services_and_business > security_service,security_service,Security Service,security_service,services_and_business > professional_service > security_service,security_service,security_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,security_service,services_and_business > professional_service > fingerprinting_service,fingerprinting_service,b2b_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,shipping_or_delivery_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > courier_and_delivery_service,courier_and_delivery_service,Courier and Delivery Service,shipping_or_delivery_service,services_and_business > professional_service > courier_and_delivery_service,courier_and_delivery_service,courier_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,shipping_or_delivery_service,services_and_business > professional_service > mailbox_center,mailbox_center,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,packaging_contractors_and_service,Packaging Contractors and Service,shipping_or_delivery_service,services_and_business > professional_service > packaging_contractors_and_service,packaging_contractors_and_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,shipping_or_delivery_service,community_and_government > post_office,post_office,post_office,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,shipping_or_delivery_service,services_and_business > professional_service > shipping_center,shipping_center,shipping_center,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,shipping_or_delivery_service,community_and_government > post_office > shipping_collection_service,shipping_collection_service,post_office,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,shipping_or_delivery_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_shipping,vehicle_shipping,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > storage_facility,storage_facility,Storage Facility,storage_facility,services_and_business > professional_service > storage_facility,storage_facility,storage_facility,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,storage_facility,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_storage_facility,automotive_storage_facility,storage_facility,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > boat_storage_facility,boat_storage_facility,storage_facility,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > package_locker,package_locker,Package Locker,storage_facility,services_and_business > professional_service > package_locker,package_locker,shipping_delivery_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > storage_facility > rv_and_boat_storage_facility,rv_and_boat_storage_facility,RV and Boat Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > rv_and_boat_storage_facility,rv_and_boat_storage_facility,storage_facility,,TRUE,,TRUE,boat_storage_facility, -services_and_business,2,FALSE,services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > rv_storage_facility,rv_storage_facility,storage_facility,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,storage_facility,services_and_business > professional_service > storage_facility > self_storage_facility,self_storage_facility,self_storage_facility,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > technical_service,technical_service,Technical Service,technical_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,technical_service,services_and_business > professional_service > acoustical_consultant,acoustical_consultant,service_location,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,technical_service,services_and_business > professional_service > bike_repair_maintenance,bike_repair_maintenance,vehicle_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,technical_service,services_and_business > professional_service > commercial_refrigeration,commercial_refrigeration,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,technical_service,services_and_business > professional_service > computer_hardware_company,computer_hardware_company,technical_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,technical_service,services_and_business > professional_service > electronics_repair_shop,electronics_repair_shop,electronic_repiar_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,technical_service,services_and_business > professional_service > elevator_service,elevator_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,technical_service,services_and_business > professional_service > generator_installation_repair,generator_installation_repair,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,technical_service,services_and_business > professional_service > hydraulic_repair_service,hydraulic_repair_service,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,technical_service,services_and_business > professional_service > internet_service_provider,internet_service_provider,internet_service_provider,,TRUE,,,,TRUE -services_and_business,3,FALSE,services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,technical_service,services_and_business > professional_service > internet_service_provider > web_hosting_service,web_hosting_service,internet_service_provider,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,technical_service,services_and_business > professional_service > it_service_and_computer_repair,it_service_and_computer_repair,technical_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > data_recovery,data_recovery,Data Recovery,technical_service,services_and_business > professional_service > it_service_and_computer_repair > data_recovery,data_recovery,technical_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,technical_service,services_and_business > professional_service > it_service_and_computer_repair > it_consultant,it_consultant,technical_service,,TRUE,,,, -services_and_business,3,FALSE,services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,technical_service,services_and_business > professional_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,electronic_repiar_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,technical_service,services_and_business > professional_service > jewelry_repair_service,jewelry_repair_service,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > laboratory,laboratory,Laboratory,technical_service,services_and_business > professional_service > laboratory,laboratory,b2b_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,technical_service,services_and_business > professional_service > machine_shop,machine_shop,machine_shop,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,technical_service,services_and_business > professional_service > metal_detector_service,metal_detector_service,technical_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > technical_service > software_development,software_development,Software Development,technical_service,services_and_business > professional_service > software_development,software_development,software_development,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,technical_service,services_and_business > professional_service > taxidermist,taxidermist,personal_service,,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,technical_service,services_and_business > professional_service > telephone_service,telephone_service,technical_service,,TRUE,,,, -services_and_business,2,FALSE,services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,technical_service,services_and_business > professional_service > watch_repair_service,watch_repair_service,personal_service,,TRUE,,,,TRUE -services_and_business,1,TRUE,services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,telecommunications_service,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > telecommunications_service > telecommunications,telecommunications,Telecommunications,telecommunications_service,services_and_business > professional_service > it_service_and_computer_repair > telecommunications,telecommunications,telecommunications_service,,TRUE,,TRUE,telecommunications_service, -services_and_business,1,TRUE,services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,utility_energy_infrastructure,,,,TRUE,TRUE,,,,TRUE -services_and_business,2,FALSE,services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,utility_energy_infrastructure,services_and_business > professional_service > construction_service > wind_energy,wind_energy,utility_energy_infrastructure,,TRUE,,,, -shopping,0,FALSE,shopping,shopping,Shopping,,shopping,shopping,retail_location,,,,,,TRUE -shopping,1,TRUE,shopping > convenience_store,convenience_store,Convenience Store,convenience_store,shopping > convenience_store,convenience_store,convenience_store,,,,,, -shopping,1,TRUE,shopping > department_store,department_store,Department Store,department_store,shopping > department_store,department_store,department_store,,,,,, -shopping,1,TRUE,shopping > discount_store,discount_store,Discount Store,discount_store,shopping > discount_store,discount_store,discount_store,,,,,, -shopping,1,TRUE,shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store,fashion_and_apparel_store,fashion_or_apparel_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,baby_gear_and_nursery_store,Baby Gear and Nursery Store,fashion_and_apparel_store,shopping > specialty_store > baby_gear_and_furniture_store,baby_gear_and_furniture_store,specialty_store,,TRUE,TRUE,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store,clothing_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,Plus Size Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,clothing_store,,,,,,TRUE -shopping,4,FALSE,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,Custom T Shirt Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,clothing_store,,,,,,TRUE -shopping,4,FALSE,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,clothing_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,clothing_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,eyewear_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,eyewear_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,fashion_or_apparel_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,fashion_or_apparel_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,fashion_or_apparel_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,fashion_and_apparel_store,shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,fashion_or_apparel_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,jewelry_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,fashion_and_apparel_store,services_and_business > professional_service > diamond_dealer,diamond_dealer,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,fashion_and_apparel_store,services_and_business > professional_service > goldsmith,goldsmith,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,jewelry_store,,,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,fashion_and_apparel_store,shopping > specialty_store > leather_goods_store,leather_goods_store,fashion_or_apparel_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,fashion_and_apparel_store,shopping > specialty_store > luggage_store,luggage_store,specialty_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > shoe_store,shoe_store,shoe_store,,,,,,TRUE -shopping,3,FALSE,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,fashion_and_apparel_store,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,shoe_store,,,,,,TRUE -shopping,1,TRUE,shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,food_and_beverage_store,shopping > food_and_beverage_store,food_and_beverage_store,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,food_and_beverage_store,shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,food_and_beverage_store,shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,specialty_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,food_and_beverage_store,shopping > food_and_beverage_store > butcher_shop,butcher_shop,butcher_shop,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,food_and_beverage_store,shopping > food_and_beverage_store > cheese_shop,cheese_shop,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,food_and_beverage_store,shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > csa_farm,csa_farm,CSA Farm,food_and_beverage_store,shopping > food_and_beverage_store > csa_farm,csa_farm,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,food_and_beverage_store,shopping > food_and_beverage_store > fishmonger,fishmonger,food_or_beverage_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,food_and_beverage_store,shopping > food_and_beverage_store > food_delivery_service > pizza_delivery_service,pizza_delivery_service,pizzaria,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store,grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,food_and_beverage_store,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,grocery_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,food_and_beverage_store,shopping > food_and_beverage_store > health_food_store,health_food_store,grocery_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,food_and_beverage_store,shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,food_and_beverage_store,shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,food_and_beverage_store,shopping > food_and_beverage_store > imported_food_store,imported_food_store,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,food_and_beverage_store,shopping > food_and_beverage_store > liquor_store,liquor_store,liquor_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,food_and_beverage_store,shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,food_and_beverage_store,shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,food_or_beverage_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,food_and_beverage_store,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,food_and_beverage_store,shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,farm,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,food_and_beverage_store,shopping > food_and_beverage_store > seafood_market,seafood_market,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,food_and_beverage_store,shopping > food_and_beverage_store > smokehouse,smokehouse,food_or_beverage_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,food_or_beverage_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,grocery_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,food_or_beverage_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,food_or_beverage_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,produce_store,,,,,,TRUE -shopping,3,FALSE,shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,food_and_beverage_store,shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,grocery_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,food_and_beverage_store,shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,specialty_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,food_and_beverage_store,shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,specialty_store,,,,,,TRUE -shopping,2,FALSE,shopping > food_and_beverage_store > water_store,water_store,Water Store,food_and_beverage_store,shopping > food_and_beverage_store > water_store,water_store,food_or_beverage_store,,,,,,TRUE -shopping,1,TRUE,shopping > kiosk,kiosk,Kiosk,kiosk,shopping > kiosk,kiosk,casual_eatery,,,,,,TRUE -shopping,1,TRUE,shopping > market,market,Market,market,shopping > market,market,retail_location,,,,,,TRUE -shopping,2,FALSE,shopping > market > bazaar,bazaar,Bazaar,market,shopping > specialty_store > bazaar,bazaar,specialty_store,,TRUE,,,,TRUE -shopping,2,TRUE,shopping > market > farmers_market,farmers_market,Farmers Market,farmers_market,shopping > market > farmers_market,farmers_market,farmers_market,,,,,, -shopping,2,FALSE,shopping > market > health_market,health_market,Health Market,market,shopping > specialty_store > health_market,health_market,specialty_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > market > holiday_market,holiday_market,Holiday Market,market,shopping > market > holiday_market,holiday_market,festival_venue,,,,,,TRUE -shopping,2,FALSE,shopping > market > market_stall,market_stall,Market Stall,market,shopping > market > market_stall,market_stall,specialty_store,,,,,,TRUE -shopping,2,FALSE,shopping > market > night_market,night_market,Night Market,market,shopping > market > night_market,night_market,specialty_store,,,,,,TRUE -shopping,2,FALSE,shopping > market > public_market,public_market,Public Market,market,shopping > market > public_market,public_market,retail_location,,,,,,TRUE -shopping,2,FALSE,shopping > market > shopping_passage,shopping_passage,Shopping Passage,market,shopping > shopping_passage,shopping_passage,retail_location,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > market > street_vendor,street_vendor,Street Vendor,market,food_and_drink > casual_eatery > street_vendor,street_vendor,casual_eatery,,TRUE,,,,TRUE -shopping,1,FALSE,shopping > online_shop,online_shop,Online Shop,specialty_store,shopping > online_shop,online_shop,specialty_store,,,,TRUE,shopping, -shopping,1,TRUE,shopping > second_hand_store,second_hand_store,Second Hand Store,second_hand_store,shopping > second_hand_store,second_hand_store,second_hand_shop,,,,,,TRUE -shopping,2,FALSE,shopping > second_hand_store > antique_store,antique_store,Antique Store,second_hand_store,shopping > second_hand_store > antique_store,antique_store,antique_shop,,,,,,TRUE -shopping,2,FALSE,shopping > second_hand_store > flea_market,flea_market,Flea Market,second_hand_store,shopping > second_hand_store > flea_market,flea_market,second_hand_shop,,,,,,TRUE -shopping,2,FALSE,shopping > second_hand_store > junkyard,junkyard,Junkyard,second_hand_store,services_and_business > professional_service > junkyard,junkyard,second_hand_shop,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,second_hand_store,shopping > specialty_store > pawn_shop,pawn_shop,second_hand_shop,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,second_hand_store,shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,second_hand_shop,,,,,,TRUE -shopping,1,TRUE,shopping > shopping_mall,shopping_mall,Shopping Mall,shopping_mall,shopping > shopping_center,shopping_center,shopping_mall,,TRUE,TRUE,,, -shopping,1,TRUE,shopping > shopping_service,shopping_service,Shopping Service,shopping_service,,,,TRUE,TRUE,,,,TRUE -shopping,2,FALSE,shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,shopping_service,shopping > personal_shopper,personal_shopper,personal_service,,TRUE,,,,TRUE -shopping,1,TRUE,shopping > specialty_store,specialty_store,Specialty Store,specialty_store,shopping > specialty_store,specialty_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > adult_store,adult_store,Adult Store,specialty_store,shopping > specialty_store > adult_store,adult_store,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,animal_and_pet_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,animal_and_pet_store,shopping > specialty_store > horse_equipment_shop,horse_equipment_shop,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,Livestock Feed and Supply Store,animal_and_pet_store,shopping > specialty_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,animal_and_pet_store,shopping > specialty_store > pet_store,pet_store,pet_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,animal_and_pet_store,shopping > specialty_store > pet_store > aquatic_pet_store,aquatic_pet_store,pet_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,animal_and_pet_store,shopping > specialty_store > pet_store > bird_shop,bird_shop,pet_store,,TRUE,TRUE,,,TRUE -shopping,4,FALSE,shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,animal_and_pet_store,shopping > specialty_store > pet_store > reptile_shop,reptile_shop,pet_store,,TRUE,TRUE,,,TRUE -shopping,2,TRUE,shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store,arts_and_crafts_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > art_supply_store,art_supply_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > atelier,atelier,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > cooking_classes,cooking_classes,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > costume_store,costume_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store,craft_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,Embroidery and Crochet Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,knitting_supply_store,Knitting Supply Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > craft_store > knitting_supply_store,knitting_supply_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > fabric_store,fabric_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > framing_store,framing_store,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,arts_crafts_and_hobby_store,shopping > specialty_store > arts_and_crafts_store > hobby_shop,hobby_shop,art_craft_hobby_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > auction_house,auction_house,Auction House,specialty_store,shopping > specialty_store > auction_house,auction_house,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,specialty_store,shopping > specialty_store > auction_house > car_auction,car_auction,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store,books_mags_music_video_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore,bookstore,bookstore,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > academic_bookstore,academic_bookstore,bookstore,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,comic_books_store,Comic Books Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > comic_books_store,comic_books_store,bookstore,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > bookstore > used_bookstore,used_bookstore,bookstore,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,music_and_dvd_store,Music and DVD Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > music_and_dvd_store,music_and_dvd_store,music_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,Newspaper and Magazines Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,bookstore,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,video_and_video_game_rental,Video and Video Game Rental,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > video_and_video_game_rental,video_and_video_game_rental,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > video_game_store,video_game_store,electronics_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,books_music_and_video_store,shopping > specialty_store > books_mags_music_video_store > vinyl_record_store,vinyl_record_store,music_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,specialty_store,shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,specialty_store,shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,specialty_store,shopping > specialty_store > duty_free_store,duty_free_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,specialty_store,shopping > specialty_store > educational_supply_store,educational_supply_store,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > electronics_store,electronics_store,Electronics Store,electronics_store,shopping > specialty_store > electronics_store,electronics_store,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,electronics_store,shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,electronics_store,shopping > specialty_store > electronics_store > battery_store,battery_store,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,electronics_store,shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,specialty_store,,,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,electronics_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > car_stereo_store,car_stereo_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,electronics_store,shopping > specialty_store > electronics_store > computer_store,computer_store,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,electronics_store,shopping > specialty_store > electronics_store > drone_store,drone_store,specialty_store,,,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,electronics_store,shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,electronics_store,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,electronics_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,electronics_store,shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,electronics_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,specialty_store,shopping > specialty_store > agricultural_seed_store,agricultural_seed_store,specialty_store,,TRUE,,,, -shopping,3,FALSE,shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,specialty_store,shopping > specialty_store > farming_equipment_store,farming_equipment_store,specialty_store,,TRUE,,,, -shopping,2,FALSE,shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,specialty_store,shopping > specialty_store > firework_store,firework_store,specialty_store,,TRUE,TRUE,,, -shopping,2,TRUE,shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop,flowers_and_gifts_shop,flower_shop,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > florist,florist,flower_shop,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > flower_market,flower_market,flower_shop,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_shop > gift_shop,gift_shop,gift_shop,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,specialty_store,shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,specialty_store,shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,specialty_store,services_and_business > professional_service > gunsmith,gunsmith,specialty_store,,TRUE,,,, -shopping,2,TRUE,shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store,home_and_garden_store,specialty_store,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > appliance_store,appliance_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,Bedding and Bath Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,hardware_home_and_garden_store,shopping > specialty_store > building_supply_store,building_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,hardware_home_and_garden_store,shopping > specialty_store > building_supply_store > lumber_store,lumber_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > candle_store,candle_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,hardware_home_and_garden_store,shopping > specialty_store > carpet_store,carpet_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > christmas_tree_store,christmas_tree_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,do_it_yourself_store,Do It Yourself Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > do_it_yourself_store,do_it_yourself_store,home_improvement_center,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > electrical_supply_store,electrical_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,hardware_home_and_garden_store,shopping > specialty_store > flooring_store,flooring_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > furniture_accessory_store,furniture_accessory_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > furniture_store,furniture_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > grilling_equipment_store,grilling_equipment_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hardware_store,hardware_store,hardware_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,Welding Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > holiday_decor_store,holiday_decor_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_decor_store,home_decor_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_goods_store,home_goods_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > home_improvement_store,home_improvement_store,home_improvement_center,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,Hot Tub and Pool Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,Kitchen and Bath Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,Bathroom Fixture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,Kitchen Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > lawn_mower_store,lawn_mower_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > lighting_store,lighting_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > linen_store,linen_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > mattress_store,mattress_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,Nursery and Gardening Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,Hydroponic Gardening Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > paint_store,paint_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > rug_store,rug_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > tile_store,tile_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > wallpaper_store,wallpaper_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > window_treatment_store,window_treatment_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,hardware_home_and_garden_store,shopping > specialty_store > home_and_garden_store > woodworking_supply_store,woodworking_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,specialty_store,shopping > specialty_store > medical_supply_store,medical_supply_store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,specialty_store,shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,specialty_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,specialty_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > musical_instrument_and_pro_audio_store,musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,musical_instrument_and_pro_audio_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > dj_equipment_store,dj_equipment_store,DJ Equipment Store,musical_instrument_and_pro_audio_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store,musical_instrument_store,Musical Instrument Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store,musical_instrument_store,specialty_store,,TRUE,TRUE,,,TRUE -shopping,4,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,guitar_store,Guitar Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store > guitar_store,guitar_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,piano_store,Piano Store,musical_instrument_and_pro_audio_store,shopping > specialty_store > musical_instrument_store > piano_store,piano_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > musical_instrument_and_pro_audio_store > pro_audio_store,pro_audio_store,Pro Audio Store,musical_instrument_and_pro_audio_store,,,,TRUE,TRUE,,,,TRUE -shopping,2,TRUE,shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,office_supply_store,shopping > specialty_store > office_equipment,office_equipment,specialty_store,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,office_supply_store,shopping > specialty_store > packing_supply_store,packing_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,office_supply_store,shopping > specialty_store > pen_store,pen_store,specialty_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > outlet_store,outlet_store,Outlet Store,specialty_store,shopping > outlet_store,outlet_store,retail_location,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,specialty_store,shopping > specialty_store > party_supply_store,party_supply_store,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,personal_care_and_beauty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > personal_care_and_beauty_store > bath_and_body_store,bath_and_body_store,Bath and Body Store,personal_care_and_beauty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store,cosmetic_and_beauty_supply_store,specialty_store,,TRUE,TRUE,,,TRUE -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,cosmetics_and_fragrance_store,Cosmetics and Fragrance Store,personal_care_and_beauty_store,,,,TRUE,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,hair_supply_store,Hair Supply Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > hair_supply_store,hair_supply_store,specialty_store,,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > perfume_store,perfume_store,Perfume Store,personal_care_and_beauty_store,shopping > specialty_store > perfume_store,perfume_store,specialty_store,,TRUE,,TRUE,cosmetics_and_fragrance_store,TRUE -shopping,4,FALSE,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,personal_care_and_beauty_store,shopping > specialty_store > cosmetic_and_beauty_supply_store > wig_store,wig_store,fashion_or_apparel_store,,TRUE,,,,TRUE -shopping,2,TRUE,shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,pharmacy_and_drug_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,pharmacy_and_drug_store,shopping > specialty_store > drugstore,drugstore,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,pharmacy_and_drug_store,shopping > specialty_store > pharmacy,pharmacy,pharmacy,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,specialty_store,shopping > specialty_store > pop_up_store,pop_up_store,retail_location,,,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > props,props,Props,specialty_store,shopping > specialty_store > props,props,specialty_store,,,,TRUE,specialty_store, -shopping,2,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > hindu_goods_store,hindu_goods_store,Hindu Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > islamic_goods_store,islamic_goods_store,Islamic Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > jewish_goods_store,jewish_goods_store,Jewish Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spirit_store,mind_body_spirit_store,Mind Body Spirit Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > religious_items_store,religious_items_store,Religious Items Store,specialty_store,shopping > specialty_store > religious_items_store,religious_items_store,specialty_store,,TRUE,,TRUE,religious_and_spiritual_goods_store, -shopping,3,FALSE,shopping > specialty_store > religious_and_spiritual_goods_store > spiritual_items_store,spiritual_items_store,Spiritual Items Store,specialty_store,shopping > specialty_store > spiritual_items_store,spiritual_items_store,specialty_store,,TRUE,,TRUE,religious_and_spiritual_goods_store, -shopping,2,FALSE,shopping > specialty_store > safe_store,safe_store,Safe Store,specialty_store,shopping > specialty_store > safe_store,safe_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,specialty_store,shopping > specialty_store > safety_equipment_store,safety_equipment_store,specialty_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,specialty_store,shopping > specialty_store > e_cigarette_store,e_cigarette_store,specialty_store,,TRUE,TRUE,,, -shopping,3,FALSE,shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,specialty_store,shopping > specialty_store > cannabis_dispensary,cannabis_dispensary,specialty_store,,TRUE,,,, -shopping,2,FALSE,shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,specialty_store,shopping > specialty_store > souvenir_store,souvenir_store,gift_shop,,,,,,TRUE -shopping,2,TRUE,shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store,sporting_goods_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > archery_store,archery_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > bike_store,bike_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > dive_store,dive_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,sporting_goods_store,shopping > specialty_store > pool_and_billiards,pool_and_billiards,specialty_store,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > skate_store,skate_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,sporting_goods_store,,,,,, -shopping,4,FALSE,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > surf_store,surf_store,sporting_goods_store,,,,,, -shopping,3,FALSE,shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,sporting_goods_store,shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,sporting_goods_store,,,,,, -shopping,2,FALSE,shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,specialty_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,specialty_store,shopping > specialty_store > army_and_navy_store,army_and_navy_store,specialty_store,,TRUE,,,, -shopping,3,FALSE,shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,specialty_store,shopping > specialty_store > military_surplus_store,military_surplus_store,specialty_store,,TRUE,,,, -shopping,2,TRUE,shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,toys_and_games_store,,,,TRUE,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,toys_and_games_store,shopping > specialty_store > tabletop_games_store,tabletop_games_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,toys_and_games_store,shopping > specialty_store > toy_store,toy_store,toy_store,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > specialty_store > trophy_store,trophy_store,Trophy Store,specialty_store,shopping > specialty_store > trophy_store,trophy_store,specialty_store,,,,,, -shopping,2,TRUE,shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,specialty_store,,,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,specialty_store,,,,,,TRUE -shopping,4,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store > automotive_parts_and_accessories,automotive_parts_and_accessories,Automotive Parts and Accessories,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories,automotive_parts_and_accessories,specialty_store,,TRUE,,TRUE,auto_parts_store,TRUE -shopping,4,FALSE,shopping > specialty_store > vehicle_parts_store > auto_parts_store > interlock_system,interlock_system,Interlock System,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > interlock_system,interlock_system,specialty_store,,TRUE,,TRUE,auto_parts_store,TRUE -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,vehicle_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,specialty_store,,,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorcycle_gear,motorcycle_gear,specialty_store,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > motorsports_store,motorsports_store,specialty_store,,TRUE,,,,TRUE -shopping,3,FALSE,shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,vehicle_parts_store,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories,recreational_vehicle_parts_and_accessories,specialty_store,,TRUE,TRUE,,,TRUE -shopping,1,TRUE,shopping > superstore,superstore,Superstore,superstore,shopping > superstore,superstore,retail_location,,,,,,TRUE -shopping,1,TRUE,shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer,vehicle_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,vehicle_dealer,travel_and_transportation > aircraft_and_air_transport > aircraft_dealer,aircraft_dealer,vehicle_dealer,,TRUE,,,, -shopping,2,TRUE,shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,auto_dealer,shopping > vehicle_dealer > car_dealer,car_dealer,car_dealer,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,auto_dealer,services_and_business > professional_service > car_broker,car_broker,car_dealer,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,auto_dealer,travel_and_transportation > automotive_and_ground_transport > automotive > automobile_leasing,automobile_leasing,vehicle_dealer,,TRUE,TRUE,,,TRUE -shopping,3,FALSE,shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,auto_dealer,shopping > vehicle_dealer > car_dealer > used_car_dealer,used_car_dealer,car_dealer,,TRUE,TRUE,,,TRUE -shopping,2,FALSE,shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,vehicle_dealer,travel_and_transportation > watercraft_and_water_transport > boat_dealer,boat_dealer,boat_dealer,,TRUE,,,,TRUE -shopping,2,FALSE,shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,vehicle_dealer,shopping > vehicle_dealer > forklift_dealer,forklift_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,vehicle_dealer,shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,vehicle_dealer,shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,motorcycle_dealer,,,,,,TRUE -shopping,2,FALSE,shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,vehicle_dealer,shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,recreational_vehicle_dealer,,,,,,TRUE -shopping,2,FALSE,shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,vehicle_dealer,shopping > vehicle_dealer > scooter_dealer,scooter_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,vehicle_dealer,shopping > vehicle_dealer > trailer_dealer,trailer_dealer,vehicle_dealer,,,,,, -shopping,2,FALSE,shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,vehicle_dealer,shopping > vehicle_dealer > truck_dealer,truck_dealer,truck_dealer,,,,,,TRUE -shopping,1,TRUE,shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,warehouse_club_store,shopping > wholesale_store,wholesale_store,warehouse_club,,TRUE,TRUE,,,TRUE -sports_and_recreation,0,FALSE,sports_and_recreation,sports_and_recreation,Sports and Recreation,,sports_and_recreation,sports_and_recreation,recreational_location,,,,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > park,park,Park,park,sports_and_recreation > park,park,park,,,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > dog_park,dog_park,Dog Park,dog_park,sports_and_recreation > park > dog_park,dog_park,dog_park,,,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,park,sports_and_recreation > park > mountain_bike_park,mountain_bike_park,park,,,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > national_park,national_park,National Park,national_park,sports_and_recreation > park > national_park,national_park,national_park,,,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > park > playground,playground,Playground,playground,sports_and_recreation > sports_and_recreation_venue > playground,playground,playground,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > state_park,state_park,State Park,park,sports_and_recreation > park > state_park,state_park,park,,,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > park > water_park,water_park,Water Park,park,sports_and_recreation > park > water_park,water_park,park,,,,,, -sports_and_recreation,1,TRUE,sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service,sports_and_recreation_rental_and_service,recreational_equipment_rental_service,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > atv_rental_tour,atv_rental_tour,recreational_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > beach_equipment_rental,beach_equipment_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > bike_rental,bike_rental,bicycle_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service,boat_hire_service,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_rental_and_training,boat_rental_and_training,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,Canoe and Kayak Hire Service,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > boat_hire_service > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > jet_skis_rental,jet_skis_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > paddleboard_rental,paddleboard_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > scooter_rental,scooter_rental,scooter_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sledding_rental,sledding_rental,winter_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > snorkeling_equipment_rental,snorkeling_equipment_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,recreational_equipment_rental,sports_and_recreation > sports_and_recreation_rental_and_service > sport_equipment_rental,sport_equipment_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,recreational_equipment_rental,sports_and_recreation > water_sport > surfing > surfboard_rental,surfboard_rental,water_sport_equipment_rental_service,,TRUE,,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,recreational_trail_or_path,sports_and_recreation > trail,trail,recreational_trail,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,recreational_trail_or_path,sports_and_recreation > park > backpacking_area,backpacking_area,recreational_trail,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,recreational_trail_or_path,sports_and_recreation > sports_and_recreation_venue > bike_path,bike_path,bicycle_path,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,recreational_trail_or_path,sports_and_recreation > trail > hiking_trail,hiking_trail,hiking_trail,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,recreational_trail_or_path,sports_and_recreation > trail > mountain_bike_trail,mountain_bike_trail,recreational_trail,,TRUE,,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > sport_league,sport_league,Sport League,sport_league,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,sport_league,sports_and_recreation > sports_club_and_league > amateur_sports_league,amateur_sports_league,amateur_sport_league,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > esports_league,esports_league,Esports League,sport_league,sports_and_recreation > sports_club_and_league > esports_league,esports_league,sport_league,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,sport_league,sports_and_recreation > sports_club_and_league > professional_sports_league,professional_sports_league,pro_sport_league,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,sport_league,sports_and_recreation > sports_club_and_league > school_sports_league,school_sports_league,school_sport_league,,TRUE,TRUE,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue,sports_and_recreation_venue,sport_fitness_facility,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,sport_or_fitness_facility,sports_and_recreation > adventure_sport,adventure_sport,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,sport_or_fitness_facility,sports_and_recreation > adventure_sport > axe_throwing,axe_throwing,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > bungee_jumping_center,bungee_jumping_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > challenge_courses_center,challenge_courses_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > cliff_jumping_center,cliff_jumping_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,sport_or_fitness_facility,sports_and_recreation > adventure_sport > climbing_service,climbing_service,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > high_gliding_center,high_gliding_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,sport_or_fitness_facility,sports_and_recreation > adventure_sport > rock_climbing_spot,rock_climbing_spot,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,sport_or_fitness_facility,sports_and_recreation > adventure_sport > ziplining_center,ziplining_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > adventure_sports_center,adventure_sports_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > atv_recreation_park,atv_recreation_park,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > batting_cage,batting_cage,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > bowling_alley,bowling_alley,bowling_alley,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > boxing_class,boxing_class,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > boxing_gym,boxing_gym,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > cardio_class,cardio_class,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > climbing_class,climbing_class,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > curling_center,curling_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,sport_or_fitness_facility,sports_and_recreation > curling_ice,curling_ice,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > cycling_class,cycling_class,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > dance_studio,dance_studio,specialty_school,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center,diving_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center > free_diving_center,free_diving_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > diving_center > scuba_diving_center,scuba_diving_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction,diving_instruction,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > free_diving_instruction,free_diving_instruction,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,fitness_studio,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > aerial_fitness_center,aerial_fitness_center,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > barre_class,barre_class,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > boot_camp,boot_camp,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > pilates_studio,pilates_studio,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > qi_gong_studio,qi_gong_studio,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > tai_chi_studio,tai_chi_studio,fitness_studio,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,fitness_studio,sports_and_recreation > sports_and_fitness_instruction > yoga_studio,yoga_studio,fitness_studio,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > fitness_trainer,fitness_trainer,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > flyboarding_center,flyboarding_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > flyboarding_rental,flyboarding_rental,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,golf_course,sports_and_recreation > sports_and_recreation_venue > golf_course,golf_course,golf_course,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > golf_course > driving_range,driving_range,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > golf_instructor,golf_instructor,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,gym,sports_and_recreation > sports_and_recreation_venue > gym,gym,gym,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > gym > cycle_studio,cycle_studio,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > gymnastics_center,gymnastics_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hang_gliding_center,hang_gliding_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink,hockey_rink,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink > ice_hockey_rink,ice_hockey_rink,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > hockey_rink > roller_hockey_rink,roller_hockey_rink,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > horse_riding,horse_riding,equestrian_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > horse_riding > equestrian_facility,equestrian_facility,equestrian_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_rental_and_service > horseback_riding_service,horseback_riding_service,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,sport_or_fitness_facility,sports_and_recreation > indoor_playcenter,indoor_playcenter,entertainment_location,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > kiteboarding,kiteboarding,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > kiteboarding_instruction,kiteboarding_instruction,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,sport_or_fitness_facility,sports_and_recreation > laser_tag,laser_tag,entertainment_location,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > miniature_golf_course,miniature_golf_course,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > paddleboarding_center,paddleboarding_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > paddleboarding_lessons,paddleboarding_lessons,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,sport_or_fitness_facility,sports_and_recreation > paintball,paintball,entertainment_location,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_rental_and_service > parasailing_ride_service,parasailing_ride_service,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > pool_billiards,pool_billiards,pool_hall,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > pool_billiards > pool_hall,pool_hall,pool_hall,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track,race_track,race_track,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > go_kart_track,go_kart_track,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > horse_racing_track,horse_racing_track,race_track,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > motor_race_track,motor_race_track,race_track,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > track_and_field_track,track_and_field_track,Track and Field Track,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > track_and_field_track,track_and_field_track,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > race_track > velodrome,velodrome,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > racing_experience,racing_experience,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > rock_climbing_gym,rock_climbing_gym,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > rock_climbing_instructor,rock_climbing_instructor,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,sport_or_fitness_facility,sports_and_recreation > running_and_track,running_and_track,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,sport_or_fitness_facility,sports_and_recreation > running_and_track > running,running,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > running_and_track > track_field_event,track_field_event,Track Field Event,sport_or_fitness_facility,sports_and_recreation > running_and_track > track_field_event,track_field_event,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > self_defense_class,self_defense_class,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > shooting_range,shooting_range,shooting_range,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > archery_range,archery_range,shooting_range,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,skate_park,sports_and_recreation > sports_and_recreation_venue > skate_park,skate_park,skate_park,,TRUE,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink,skating_rink,skating_rink,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > ice_skating_rink,ice_skating_rink,skating_rink,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,skating_rink,sports_and_recreation > sports_and_recreation_venue > skating_rink > roller_skating_rink,roller_skating_rink,skating_rink,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > ski_and_snowboard_school,ski_and_snowboard_school,specialty_school,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving,sky_diving,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,Sky Diving Drop Zone,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > sky_diving > skydiving_center,skydiving_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,sport_or_fitness_facility,sports_and_recreation > snow_sport,snow_sport,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,sport_or_fitness_facility,sports_and_recreation > snow_sport > bobsledding_field,bobsledding_field,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_area,ski_area,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_chairlift,ski_chairlift,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_chalet,ski_chalet,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,sport_or_fitness_facility,sports_and_recreation > snow_sport > ski_resort_area,ski_resort_area,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,sport_or_fitness_facility,sports_and_recreation > snow_sport > snowboarding_center,snowboarding_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,sport_court,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,sport_court,sports_and_recreation > sports_and_recreation_venue > badminton_court,badminton_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > basketball_court,basketball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > beach_volleyball_court,beach_volleyball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > bocce_ball_court,bocce_ball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > handball_court,handball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > pickleball_court,pickleball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > racquetball_court,racquetball_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,sport_court,sports_and_recreation > sports_and_recreation_venue > squash_court,squash_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,sport_court,sports_and_recreation > sports_and_recreation_venue > hockey_field > street_hockey_court,street_hockey_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,sport_court,sports_and_recreation > sports_and_recreation_venue > tennis_court,tennis_court,sport_court,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,sport_court,sports_and_recreation > sports_and_recreation_venue > volleyball_court,volleyball_court,sport_court,,TRUE,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,sport_field,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,sport_field,sports_and_recreation > sports_and_recreation_venue > airsoft_field,airsoft_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,sport_field,sports_and_recreation > sports_and_recreation_venue > american_football_field,american_football_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,sport_field,sports_and_recreation > sports_and_recreation_venue > baseball_field,baseball_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,sport_field,sports_and_recreation > sports_and_recreation_venue > disc_golf_course,disc_golf_course,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,sport_field,sports_and_recreation > sports_and_recreation_venue > futsal_field,futsal_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,sport_field,sports_and_recreation > sports_and_recreation_venue > hockey_field,hockey_field,sport_field,,TRUE,,,, -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,sport_field,sports_and_recreation > sports_and_recreation_venue > hockey_field > field_hockey_pitch,field_hockey_pitch,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,sport_field,sports_and_recreation > sports_and_recreation_venue > lacrosse_field,lacrosse_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,sport_field,sports_and_recreation > sports_and_recreation_venue > rugby_pitch,rugby_pitch,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,sport_field,sports_and_recreation > sports_and_recreation_venue > soccer_field,soccer_field,sport_field,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,sport_field,sports_and_recreation > sports_and_recreation_venue > softball_field,softball_field,sport_field,,TRUE,,,, -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,sports_complex,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction > surfing_school,surfing_school,specialty_school,,TRUE,,,,TRUE -sports_and_recreation,2,TRUE,sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,swimming_pool,sports_and_recreation > sports_and_recreation_venue > swimming_pool,swimming_pool,swimming_pool,,TRUE,,,, -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,swimming_pool,sports_and_recreation > sports_and_fitness_instruction > swimming_instructor,swimming_instructor,swimming_pool,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > trampoline_park,trampoline_park,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > tubing_provider,tubing_provider,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,sport_or_fitness_facility,sports_and_recreation > water_sport,water_sport,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,sport_or_fitness_facility,sports_and_recreation > water_sport > boating_place,boating_place,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing,fishing,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing > fishing_area,fishing_area,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,sport_or_fitness_facility,sports_and_recreation > water_sport > fishing > fishing_charter,fishing_charter,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,sport_or_fitness_facility,sports_and_recreation > water_sport > rafting_kayaking_area,rafting_kayaking_area,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,sport_or_fitness_facility,sports_and_recreation > water_sport > sailing_area,sailing_area,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,sport_or_fitness_facility,sports_and_recreation > water_sport > snorkeling,snorkeling,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,sport_or_fitness_facility,sports_and_recreation > water_sport > surfing,surfing,recreational_location,,TRUE,,,,TRUE -sports_and_recreation,4,FALSE,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,sport_or_fitness_facility,sports_and_recreation > water_sport > surfing > windsurfing_center,windsurfing_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,sport_or_fitness_facility,sports_and_recreation > sports_and_recreation_venue > wildlife_hunting_range,wildlife_hunting_range,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league,sports_club_and_league,sport_recreation_club,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > beach_volleyball_club,beach_volleyball_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > curling_club,curling_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > fencing_club,fencing_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > fishing_club,fishing_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > football_club,football_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > go_kart_club,go_kart_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > golf_club,golf_club,golf_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > golf_club > indoor_golf_center,indoor_golf_center,sport_fitness_facility,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > gymnastics_club,gymnastics_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club,hockey_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > field_hockey_club,field_hockey_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > ice_hockey_club,ice_hockey_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > roller_hockey_club,roller_hockey_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > hockey_club > street_hockey_club,street_hockey_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > lacrosse_club,lacrosse_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > lawn_bowling_club,lawn_bowling_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club,martial_arts_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,Chinese Martial Arts Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > karate_club,karate_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > kickboxing_club,kickboxing_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,muay_thai_club,Muay Thai Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > muay_thai_club,muay_thai_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > martial_arts_club > taekwondo_club,taekwondo_club,martial_arts_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > naturist_club,naturist_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > paddle_tennis_club,paddle_tennis_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > pickleball_club,pickleball_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > rowing_club,rowing_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club,running_and_track_club,Running and Track Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club,running_and_track_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club > running_club,running_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,3,FALSE,sports_and_recreation > sport_or_recreation_club > running_and_track_club > track_and_field_club,track_and_field_club,Track and Field Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > running_and_track_club > track_and_field_club,track_and_field_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > sailing_club,sailing_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > soccer_club,soccer_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > surf_lifesaving_club,surf_lifesaving_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > table_tennis_club,table_tennis_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,sport_or_recreation_club,sports_and_recreation > sports_club_and_league > volleyball_club,volleyball_club,sport_recreation_club,,TRUE,,,,TRUE -sports_and_recreation,1,TRUE,sports_and_recreation > sport_team,sport_team,Sport Team,sport_team,,,,TRUE,TRUE,,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,sport_team,sports_and_recreation > sports_club_and_league > amateur_sports_team,amateur_sports_team,amateur_sport_team,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,sport_team,sports_and_recreation > sports_club_and_league > esports_team,esports_team,sport_team,,TRUE,,,, -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,sport_team,sports_and_recreation > sports_club_and_league > professional_sports_team,professional_sports_team,pro_sport_team,,TRUE,TRUE,,,TRUE -sports_and_recreation,2,FALSE,sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,sport_team,sports_and_recreation > sports_club_and_league > school_sports_team,school_sports_team,school_sport_team,,TRUE,TRUE,,,TRUE -sports_and_recreation,1,FALSE,sports_and_recreation > sports_and_fitness_instruction,sports_and_fitness_instruction,Sports and Fitness Instruction,sport_or_fitness_facility,sports_and_recreation > sports_and_fitness_instruction,sports_and_fitness_instruction,sport_fitness_facility,,,,TRUE,sport_or_fitness_facility,TRUE -travel_and_transportation,0,FALSE,travel_and_transportation,travel_and_transportation,Travel and Transportation,,travel_and_transportation,travel_and_transportation,transportation_location,,,,,,TRUE -travel_and_transportation,1,TRUE,travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility,air_transport_facility_or_service,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies,aircraft_parts_and_supplies,Aircraft Parts and Supplies,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies,aircraft_parts_and_supplies,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,avionics_shop,Avionics Shop,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > aircraft_parts_and_supplies > avionics_shop,avionics_shop,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airline,airline,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airline_ticket_agency,airline_ticket_agency,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,airport,travel_and_transportation > aircraft_and_air_transport > airport,airport,airport,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,airport,travel_and_transportation > aircraft_and_air_transport > airport > airport_terminal,airport_terminal,airport_terminal,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,airport,travel_and_transportation > aircraft_and_air_transport > airport > balloon_port,balloon_port,airport,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,airport,travel_and_transportation > aircraft_and_air_transport > airport > gliderport,gliderport,airport,,TRUE,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,airport,travel_and_transportation > aircraft_and_air_transport > airport > heliport,heliport,heliport,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,airport,travel_and_transportation > aircraft_and_air_transport > airport > seaplane_base,seaplane_base,airport,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,airport,travel_and_transportation > aircraft_and_air_transport > airport > ultralight_airport,ultralight_airport,airport,,TRUE,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > airport_shuttle,airport_shuttle,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport > private_jet_charter,private_jet_charter,air_transport_facility_service,,TRUE,,,,TRUE -travel_and_transportation,1,FALSE,travel_and_transportation > aircraft_and_air_transport,aircraft_and_air_transport,Aircraft and Air Transport,air_transport_facility_or_service,travel_and_transportation > aircraft_and_air_transport,aircraft_and_air_transport,air_transport_facility_service,,,,TRUE,air_transport_facility_or_service,TRUE -travel_and_transportation,1,TRUE,travel_and_transportation > fueling_station,fueling_station,Fueling Station,fueling_station,travel_and_transportation > automotive_and_ground_transport > fueling_station,fueling_station,fueling_station,,TRUE,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,ev_charging_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > ev_charging_station,ev_charging_station,ev_charging_station,,TRUE,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station,gas_station,gas_station,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > fuel_dock,fuel_dock,gas_station,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,gas_station,travel_and_transportation > automotive_and_ground_transport > fueling_station > gas_station > truck_gas_station,truck_gas_station,gas_station,,TRUE,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,ground_transport_facility_or_service,travel_and_transportation > automotive_and_ground_transport,automotive_and_ground_transport,transportation_location,,TRUE,TRUE,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > automotive,automotive,Automotive,ground_transport_facility_or_service,travel_and_transportation > automotive_and_ground_transport > automotive,automotive,transportation_location,,TRUE,,TRUE,automotive_service,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service,bikes_and_bike_service,Bikes and Bike Service,ground_transport_facility_or_service,travel_and_transportation > bikes_and_bike_service,bikes_and_bike_service,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,bike_sharing_location,Bike Sharing Location,ground_transport_facility_or_service,travel_and_transportation > bikes_and_bike_service > bike_sharing_location,bike_sharing_location,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,public_transit_facility_or_service,Public Transit Facility or Service,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit,buses_and public_transit,transportation_location,,TRUE,TRUE,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,bus_station,Bus Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_station,bus_station,bus_station,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,bus_ticket_agency,Bus Ticket Agency,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > bus_ticket_agency,bus_ticket_agency,travel_ticket_office,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,cable_car_service,Cable Car Service,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > cable_car_service,cable_car_service,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,coach_bus,Coach Bus,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > coach_bus,coach_bus,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > light_rail_and_subway_station,light_rail_and_subway_station,Light Rail and Subway Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > light_rail_and_subway_station,light_rail_and_subway_station,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,metro_station,Metro Station,public_transit_facility_or_service,travel_and_transportation > automotive_and_ground_transport > buses_and public_transit > metro_station,metro_station,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,rail_facility_or_service,Rail Facility or Service,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport,trains_and_rail_transport,transportation_location,,TRUE,TRUE,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_service,railway_service,Railway Service,rail_facility_or_service,community_and_government > railway_service,railway_service,transportation_location,,TRUE,,TRUE,rail_facility_or_service,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,railway_ticket_agent,Railway Ticket Agent,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > railway_ticket_agent,railway_ticket_agent,travel_ticket_office,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,rail_facility_or_service,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train,train,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,train_station,travel_and_transportation > automotive_and_ground_transport > trains_and_rail_transport > train_station,train_station,train_station,,TRUE,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,ground_transport_facility_or_service,travel_and_transportation > road_structures_and_service,road_structures_and_service,transportation_location,,TRUE,,,,TRUE -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,rest_stop,Rest Stop,rest_stop,travel_and_transportation > road_structures_and_service > rest_stop,rest_stop,rest_stop,,TRUE,,,, -travel_and_transportation,3,TRUE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,toll_station,travel_and_transportation > road_structures_and_service > toll_station,toll_station,toll_station,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,ground_transport_facility_or_service,travel_and_transportation > road_structures_and_service > truck_stop,truck_stop,rest_stop,,TRUE,,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,taxi_or_ride_share_service,Taxi or Ride Share Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share,taxi_and_ride_share,taxi_or_ride_share_service,,TRUE,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,car_sharing,Car Sharing,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > car_sharing,car_sharing,taxi_or_ride_share_service,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,limo_service,Limo Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > limo_service,limo_service,taxi_or_ride_share_service,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,pedicab_service,Pedicab Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > pedicab_service,pedicab_service,taxi_or_ride_share_service,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,ride_share_service,Ride Share Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > ride_sharing,ride_sharing,ride_share_service,,TRUE,TRUE,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,taxi_service,Taxi Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service,taxi_service,taxi_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,taxi_stand,Taxi Stand,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > taxi_service > taxi_stand,taxi_stand,taxi_or_ride_share_service,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,town_car_service,Town Car Service,taxi_or_ride_share_service,travel_and_transportation > automotive_and_ground_transport > taxi_and_ride_share > town_car_service,town_car_service,taxi_or_ride_share_service,,TRUE,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > parking,parking,Parking,parking,travel_and_transportation > automotive_and_ground_transport > parking,parking,parking,,TRUE,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,parking,travel_and_transportation > bikes_and_bike_service > bike_parking,bike_parking,parking,,TRUE,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,parking,travel_and_transportation > automotive_and_ground_transport > parking > motorcycle_parking,motorcycle_parking,parking,,TRUE,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,park_and_ride,travel_and_transportation > automotive_and_ground_transport > parking > park_and_ride,park_and_ride,park_and_ride,,TRUE,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,parking_garage,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,parking_lot,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,1,FALSE,travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,ground_transport_facility_or_service,travel_and_transportation > transport_interchange,transport_interchange,transportation_location,,,,,,TRUE -travel_and_transportation,1,TRUE,travel_and_transportation > travel_service,travel_service,Travel Service,travel_service,travel_and_transportation > travel,travel,travel_service,,TRUE,TRUE,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,travel_service,travel_and_transportation > travel > agriturism,agriturism,travel_service,,TRUE,TRUE,,, -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,travel_service,travel_and_transportation > travel > luggage_storage,luggage_storage,luggage_storage,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,travel_service,travel_and_transportation > travel > passport_and_visa_service,passport_and_visa_service,passport_visa_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,travel_service,travel_and_transportation > travel > passport_and_visa_service > visa_agent,visa_agent,passport_visa_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,travel_service,travel_and_transportation > travel > tour,tour,tour_operator,,TRUE,TRUE,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,travel_service,travel_and_transportation > travel > tour > aerial_tour,aerial_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,travel_service,travel_and_transportation > travel > tour > architectural_tour,architectural_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,travel_service,travel_and_transportation > travel > tour > art_tour,art_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,travel_service,travel_and_transportation > travel > tour > beer_tour,beer_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,travel_service,travel_and_transportation > travel > tour > bike_tour,bike_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,travel_service,travel_and_transportation > travel > tour > boat_tour,boat_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,travel_service,travel_and_transportation > travel > tour > bus_tour,bus_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,travel_service,travel_and_transportation > travel > tour > cannabis_tour,cannabis_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,travel_service,travel_and_transportation > travel > tour > food_tour,food_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,travel_service,travel_and_transportation > travel > tour > historical_tour,historical_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,travel_service,travel_and_transportation > travel > tour > hot_air_balloons_tour,hot_air_balloons_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,travel_service,travel_and_transportation > travel > tour > scooter_tour,scooter_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,travel_service,travel_and_transportation > travel > tour > sightseeing_tour_agency,sightseeing_tour_agency,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,travel_service,travel_and_transportation > travel > tour > walking_tour,walking_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,travel_service,travel_and_transportation > travel > tour > whale_watching_tour,whale_watching_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,travel_service,travel_and_transportation > travel > tour > wine_tour,wine_tour,tour_operator,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,travel_service,travel_and_transportation > travel > travel_agent,travel_agent,travel_agent,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,travel_service,travel_and_transportation > travel > vacation_rental_agent,vacation_rental_agent,property_management_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,travel_service,travel_and_transportation > travel > visitor_center,visitor_center,visitor_information_center,,TRUE,,,,TRUE -travel_and_transportation,1,TRUE,travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,vehicle_service,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,vehicle_service,travel_and_transportation > aircraft_and_air_transport > aircraft_repair,aircraft_repair,vehicle_service,,TRUE,TRUE,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair,automotive_services_and_repair,vehicle_service,,TRUE,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_body_shop,auto_body_shop,auto_body_shop,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_customization,auto_customization,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_detailing,auto_detailing,auto_detailing_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service,auto_glass_service,auto_glass_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting,car_window_tinting,auto_glass_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,Windshield Installation and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,auto_glass_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_restoration_service,auto_restoration_service,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_security,auto_security,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > auto_upholstery,auto_upholstery,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automobile_registration_service,automobile_registration_service,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_consultant,automotive_consultant,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair,automotive_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > auto_electrical_repair,auto_electrical_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,brake_service_and_repair,Brake Service and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > brake_service_and_repair,brake_service_and_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > diy_auto_shop,diy_auto_shop,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > engine_repair_service,engine_repair_service,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,Exhaust and Muffler Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > hybrid_car_repair,hybrid_car_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,Tire Dealer and Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > trailer_repair,trailer_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > transmission_repair,transmission_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,4,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,Wheel and Rim Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_wheel_polishing_service,automotive_wheel_polishing_service,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > car_buyer,car_buyer,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_inspection,car_inspection,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_stereo_installation,car_stereo_installation,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > car_wash,car_wash,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,automotive_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > emergency_roadside_service,emergency_roadside_service,emergency_roadside_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > emissions_inspection,emissions_inspection,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > oil_change_station,oil_change_station,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > tire_shop,tire_shop,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > towing_service,towing_service,towing_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > truck_repair,truck_repair,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,automotive_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > vehicle_wrap,vehicle_wrap,vehicle_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,vehicle_service,travel_and_transportation > watercraft_and_water_transport > boat_service_and_repair,boat_service_and_repair,vehicle_service,,TRUE,TRUE,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,vehicle_service,services_and_business > professional_service > mooring_service,mooring_service,b2b_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,vehicle_service,services_and_business > professional_service > delegated_driver_service,delegated_driver_service,vehicle_service,,TRUE,,,, -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,vehicle_service,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > motorcycle_repair,motorcycle_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,vehicle_service,,,,TRUE,TRUE,,,,TRUE -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > automotive > automotive_services_and_repair > automotive_repair > recreation_vehicle_repair,recreation_vehicle_repair,auto_repair_service,,TRUE,,,,TRUE -travel_and_transportation,2,FALSE,travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,vehicle_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance,roadside_assistance,vehicle_service,,TRUE,,,, -travel_and_transportation,3,FALSE,travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,vehicle_service,travel_and_transportation > automotive_and_ground_transport > roadside_assistance > mobile_dent_repair,mobile_dent_repair,vehicle_service,,TRUE,,,, -travel_and_transportation,1,TRUE,travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,water_transport_facility_or_service,travel_and_transportation > watercraft_and_water_transport,watercraft_and_water_transport,transportation_location,,TRUE,TRUE,,,TRUE -travel_and_transportation,2,TRUE,travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,ferry_service,travel_and_transportation > watercraft_and_water_transport > ferry_service,ferry_service,ferry_service,,TRUE,,,, -travel_and_transportation,2,TRUE,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,water_taxi_service,travel_and_transportation > watercraft_and_water_transport > water_taxi,water_taxi,water_taxi_service,,TRUE,TRUE,,, -travel_and_transportation,2,FALSE,travel_and_transportation > watercraft_and_water_transport > waterway,waterway,Waterway,water_feature,travel_and_transportation > watercraft_and_water_transport > waterway,waterway,waterway,,,,TRUE,water_feature,TRUE \ No newline at end of file diff --git a/docs/guides/places/index.mdx b/docs/guides/places/index.mdx index f5091bbf7..54128333f 100644 --- a/docs/guides/places/index.mdx +++ b/docs/guides/places/index.mdx @@ -51,7 +51,7 @@ Overture defines a place as a *concrete, physically identifiable, stationary des - **[Release artifacts and updates](#release-artifacts-and-updates)**: Monthly cadence, GERS registry, bridge files, and the changelog. - **[Data access and retrieval](#data-access-and-retrieval)**: Cloud locations and options for downloading just the data you need. - **[Querying and analysis](#querying-and-analysis)**: Example queries by property, plus advanced examples combining places with other datasets. -- **[Tools and libraries](#tools-and-libraries)**: Tools from Overture and the wider ecosystem, including the interactive [Taxonomy Browser](./taxonomy-browser). +- **[Tools and libraries](#tools-and-libraries)**: Tools from Overture and the wider ecosystem, including the interactive [Taxonomy Explorer](./taxonomy-explorer). ## What is a place? @@ -375,7 +375,7 @@ For transit features such as bus stops and platforms, which are excluded from pl Tools from Overture and the wider ecosystem can help you explore, visualize, and work with places data: -- **[Taxonomy Browser](./taxonomy-browser)**: An interactive tool for exploring and comparing releases of the Overture Places category taxonomy hierarchy. +- **[Taxonomy Explorer](./taxonomy-explorer)**: An interactive tool for exploring and comparing releases of the Overture Places category taxonomy hierarchy. - **Taxonomy visualizations**: Interactive visual maps of the OPC and basic-category taxonomies, including views of how many places fall within each category. {/* TODO: add links to Ron Rice's taxonomy visualization tools */} - **[Overture Maps Explorer](https://explore.overturemaps.org/)**: A browser-based tool for viewing and downloading modest amounts of Overture data. - **POI library**: A cross-dataset point-of-interest library, presented at State of the Map, that combines Overture, Foursquare, and OpenStreetMap data for users looking for the most inclusive dataset. {/* TODO: add link to the POI library */} diff --git a/docs/guides/places/taxonomy-browser.mdx b/docs/guides/places/taxonomy-browser.mdx deleted file mode 100644 index 841e46658..000000000 --- a/docs/guides/places/taxonomy-browser.mdx +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: Taxonomy Browser -description: Browse and explore the Overture Places taxonomy hierarchy ---- - -import TaxonomyBrowser from '@site/src/components/taxonomyBrowser'; -import originalCsv from '!!raw-loader!./csv/2025-04-01-Original-Taxonomy.csv'; -import basicLevelCsv from '!!raw-loader!./csv/2025-09-29-Basic-Level-Category.csv'; -import decemberCsv from '!!raw-loader!./csv/2025-12-05-Categories-Hierarchies.csv'; -import marchCsv from '!!raw-loader!./csv/2026-03-04-categories-hierarchies.csv'; -import originalCountsCsv from '!!raw-loader!./csv/2025-04-01-counts.csv'; -import basicLevelCountsCsv from '!!raw-loader!./csv/2025-10-22-counts.csv'; -import decemberCountsCsv from '!!raw-loader!./csv/2025-12-05-counts.csv'; - -# Taxonomy Browser - -Explore and compare updates to the Overture Taxonomy. - - diff --git a/docs/guides/places/taxonomy-explorer.mdx b/docs/guides/places/taxonomy-explorer.mdx new file mode 100644 index 000000000..1cd7b2780 --- /dev/null +++ b/docs/guides/places/taxonomy-explorer.mdx @@ -0,0 +1,37 @@ +--- +title: Taxonomy Explorer +description: Browse and explore the Overture Places taxonomy hierarchy +hide_table_of_contents: true +--- + +import TaxonomyBrowser from '@site/src/components/taxonomyBrowser'; + +# Taxonomy Explorer + +Explore the Overture Places taxonomy. Click a category to drill into it, search +to find one by name, and use the download links to take the release away as CSV. + +See [Places Taxonomy](./taxonomy.mdx) for what the `taxonomy` and +`basic_category` properties mean and how to use them. + + diff --git a/docusaurus.config.js b/docusaurus.config.js index 9adebc268..b3c340a4e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -145,6 +145,11 @@ const config = { from: '/releases', to: '/release-calendar/', }, + { + // Renamed from "Taxonomy Browser" to "Taxonomy Explorer". + from: '/guides/places/taxonomy-browser', + to: '/guides/places/taxonomy-explorer/', + }, ], }, ], diff --git a/eslint.config.mjs b/eslint.config.mjs index 44b68a790..7c82ec1c7 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -6,7 +6,7 @@ import globals from 'globals'; export default [ js.configs.recommended, { - files: ['**/*.{js,jsx}'], + files: ['**/*.{js,jsx,mjs}'], plugins: { react, }, diff --git a/package-lock.json b/package-lock.json index 0e83cab88..367a9f613 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,8 @@ "@docusaurus/preset-classic": "^3.10.2", "@mdx-js/react": "^3.0.0", "clsx": "^2.1.1", + "d3-hierarchy": "^3.1.2", + "d3-shape": "^3.2.0", "docusaurus-plugin-llms": "^0.6.0", "js-yaml": "^5.4.2", "maplibre-gl": "^6.10.0", @@ -7661,9 +7663,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7681,9 +7680,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -7701,9 +7697,6 @@ "ppc64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7721,9 +7714,6 @@ "s390x" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7741,9 +7731,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7761,9 +7748,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -7882,9 +7866,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7898,9 +7879,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -7914,9 +7892,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -7930,9 +7905,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -8421,9 +8393,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8440,9 +8409,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8459,9 +8425,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8478,9 +8441,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8497,9 +8457,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8516,9 +8473,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8663,9 +8617,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8682,9 +8633,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8701,9 +8649,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8720,9 +8665,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8739,9 +8681,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -8758,9 +8697,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -12045,6 +11981,36 @@ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", "license": "MIT" }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/data-urls": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-7.0.0.tgz", @@ -16268,9 +16234,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -16291,9 +16254,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -16314,9 +16274,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -16337,9 +16294,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ diff --git a/package.json b/package.json index f375660ad..58d879ca2 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,8 @@ "@docusaurus/preset-classic": "^3.10.2", "@mdx-js/react": "^3.0.0", "clsx": "^2.1.1", + "d3-hierarchy": "^3.1.2", + "d3-shape": "^3.2.0", "docusaurus-plugin-llms": "^0.6.0", "js-yaml": "^5.4.2", "maplibre-gl": "^6.10.0", diff --git a/sidebars.js b/sidebars.js index a1e92a474..34d615420 100644 --- a/sidebars.js +++ b/sidebars.js @@ -81,7 +81,8 @@ const sidebars = { collapsed: true, items: [ 'guides/places/index', - 'guides/places/taxonomy-browser', + 'guides/places/taxonomy', + 'guides/places/taxonomy-explorer', ], }, { diff --git a/src/__mocks__/docusaurus-useBaseUrl.js b/src/__mocks__/docusaurus-useBaseUrl.js new file mode 100644 index 000000000..0d57cc914 --- /dev/null +++ b/src/__mocks__/docusaurus-useBaseUrl.js @@ -0,0 +1,19 @@ +/** + * Stand-in for @docusaurus/useBaseUrl in unit tests. + * + * The real module reads the site's `baseUrl` from Docusaurus context, which + * only exists inside a full site render. Components under test just need URLs + * passed through unchanged. Aliased in vitest.config.js. + */ +// The real hook memoizes withBaseUrl, so consumers can safely put it in effect +// dependency arrays. Returning a fresh function each render here would make +// tests behave differently from the browser. +const withBaseUrl = url => url; + +export function useBaseUrlUtils() { + return { withBaseUrl }; +} + +export default function useBaseUrl(url) { + return url; +} diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx new file mode 100644 index 000000000..1f5e3c0b8 --- /dev/null +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -0,0 +1,832 @@ +// @vitest-environment jsdom +import { describe, it, expect, afterEach, beforeEach, vi } from 'vitest'; + +// @docusaurus/useBaseUrl is aliased to a stub in vitest.config.js. +import { render, screen, cleanup, fireEvent, waitFor } from '@testing-library/react'; +import TaxonomyBrowser from '../taxonomyBrowser'; +import { sunburstGeometry, zoomAt, wrapLabel } from '../taxonomyViz'; + +const CANONICAL_JSON = { + version: '2026-09-23.0', + stats: { categories: 3, basicCategories: 2, rootGroups: 1, maxDepth: 2, totalPlaces: null }, + tree: [ + { + name: 'food_and_drink', + displayName: 'Food and Drink', + isBasic: true, + children: [ + { + name: 'casual_eatery', + displayName: 'Casual Eatery', + isBasic: true, + children: [{ name: 'bagel_shop', displayName: 'Bagel Shop' }], + }, + ], + }, + ], +}; + +const RELEASES = [ + { + id: 'september', + label: '2026 September (Canonical Taxonomy)', + tags: [{ label: '16 September 2026', title: 'Date' }], + dataUrl: '/taxonomy/2026-09-23.0/taxonomy.json', + downloads: [ + { label: 'Taxonomy (JSON)', url: '/taxonomy/2026-09-23.0/taxonomy.json' }, + { label: 'Taxonomy (CSV)', url: '/taxonomy/2026-09-23.0/taxonomy.csv' }, + ], + displayFields: [{ field: 'is_basic', label: 'Is Basic Category' }], + }, +]; + +beforeEach(() => { + global.fetch = vi.fn(() => + Promise.resolve({ ok: true, json: () => Promise.resolve(CANONICAL_JSON) }) + ); +}); + +afterEach(() => { + cleanup(); + vi.restoreAllMocks(); +}); + +describe('TaxonomyBrowser', () => { + it('hides the release picker when there is only one release', async () => { + render(); + expect(await screen.findByText('Categories')).toBeInTheDocument(); + // A picker offering a single choice is a row to look past, not a control. + expect(screen.queryByRole('combobox')).not.toBeInTheDocument(); + }); + + it('fetches a JSON-sourced release and renders its tree', async () => { + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + expect(global.fetch).toHaveBeenCalledWith('/taxonomy/2026-09-23.0/taxonomy.json'); + expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); + }); + + it('reconstructs the hierarchy path the generator omitted', async () => { + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + fireEvent.click(await screen.findByText('Food and Drink')); + fireEvent.click(await screen.findByText('Casual Eatery')); + fireEvent.click(await screen.findByText('Bagel Shop')); + + // Levels 0-2 come from walking down the tree, since compact JSON nodes + // carry only their own name. + expect(await screen.findByText('Level 0')).toBeInTheDocument(); + expect(screen.getByText('Level 2')).toBeInTheDocument(); + expect(screen.getByText('bagel shop')).toBeInTheDocument(); + }); + + it('inherits the basic category from the nearest basic ancestor', async () => { + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + fireEvent.click(await screen.findByText('Food and Drink')); + fireEvent.click(await screen.findByText('Casual Eatery')); + fireEvent.click(await screen.findByText('Bagel Shop')); + + const basicRow = await screen.findByText('Basic Category'); + expect(basicRow.nextSibling).toHaveTextContent('casual eatery'); + }); + + describe('place counts in the detail panel', () => { + // A category's own count and its roll-up answer different questions, and + // for a parent they differ by orders of magnitude. + const COUNTED = { + version: 't', + stats: { categories: 3, basicCategories: 1, rootGroups: 1, maxDepth: 2, totalPlaces: 150 }, + // Shaped as the generator emits it: `count` is the category's own, and + // `totalCount` is the roll-up it computes while walking the tree. + tree: [ + { + name: 'food_and_drink', displayName: 'Food and Drink', isBasic: true, + count: 50, totalCount: 150, + children: [ + { + name: 'casual_eatery', displayName: 'Casual Eatery', totalCount: 100, + children: [ + { name: 'bagel_shop', displayName: 'Bagel Shop', count: 100, totalCount: 100 }, + ], + }, + ], + }, + ], + }; + const rows = () => + Object.fromEntries( + [...document.querySelectorAll('.taxonomy-kv-item')].map(kv => [ + kv.querySelector('.taxonomy-kv-label')?.textContent, + kv.querySelector('.taxonomy-kv-value')?.textContent, + ]) + ); + const openTree = async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(COUNTED) })); + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + await screen.findByText('Food and Drink'); + }; + + it('separates a category own count from its roll-up', async () => { + await openTree(); + fireEvent.click(screen.getByText('Food and Drink')); + // Both shares are of the same thing, named once, so the two percentages + // can be read against each other. + expect(rows()['Places at this category']).toBe('50 (33.3%)'); + expect(rows()['Including subcategories']).toBe('150 (100.0%)'); + expect(rows()['Shares of']).toBe('all places'); + }); + + it('shows an explicit zero when nothing is filed at that level', async () => { + await openTree(); + fireEvent.click(screen.getByText('Food and Drink')); + fireEvent.click(await screen.findByText('Casual Eatery')); + // Nothing has casual_eatery as its primary, but 100 places sit beneath it. + expect(rows()['Places at this category']).toBe('0 (0.0%)'); + expect(rows()['Including subcategories']).toBe('100 (66.7%)'); + expect(rows()['Shares of']).toBe('Food and Drink'); + }); + + it('shows no shares for a release without place counts', async () => { + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + await screen.findByText('Food and Drink'); + fireEvent.click(screen.getByText('Food and Drink')); + // CANONICAL_JSON carries no counts, so there is nothing to take a share of. + for (const value of Object.values(rows())) expect(value).not.toMatch(/%/); + }); + + it('omits the roll-up on a leaf, where it would repeat the same number', async () => { + await openTree(); + fireEvent.click(screen.getByText('Food and Drink')); + fireEvent.click(await screen.findByText('Casual Eatery')); + fireEvent.click(await screen.findByText('Bagel Shop')); + expect(rows()['Places at this category']).toBe('100 (100.0%)'); + expect(rows()['Shares of']).toBe('Casual Eatery'); + expect(rows()).not.toHaveProperty('Including subcategories'); + }); + }); + + it('renders a download link per artifact', async () => { + render(); + const json = await screen.findByRole('link', { name: 'Taxonomy (JSON)' }); + expect(json).toHaveAttribute('href', '/taxonomy/2026-09-23.0/taxonomy.json'); + expect(screen.getByRole('link', { name: 'Taxonomy (CSV)' })).toBeInTheDocument(); + }); + + it('reports category counts when place counts are not published', async () => { + render(); + expect(await screen.findByText('Categories')).toBeInTheDocument(); + expect(screen.getByText('Not published')).toBeInTheDocument(); + }); + + it('does not strand on "Loading" when it re-renders before the fetch lands', async () => { + // The fetch effect must not abandon an in-flight response on cleanup: the + // duplicate-request guard would then block any retry, leaving the browser + // loading forever. Interacting before the response arrives reproduces it. + let resolveFetch; + global.fetch = vi.fn( + () => new Promise(resolve => { resolveFetch = () => resolve({ ok: true, json: () => Promise.resolve(CANONICAL_JSON) }); }) + ); + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + fireEvent.click(screen.getByRole('button', { name: 'Sunburst' })); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + resolveFetch(); + expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); + expect(global.fetch).toHaveBeenCalledTimes(1); + }); + + it('surfaces a load failure instead of rendering an empty tree', async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: false, status: 404, statusText: 'Not Found' })); + render(); + await waitFor(() => + expect(screen.getByText(/Could not load/)).toBeInTheDocument() + ); + expect(screen.queryByText('No categories match your search.')).not.toBeInTheDocument(); + }); + + describe('visualization views', () => { + // Sunburst is the default view, so rendering is enough; the centre label is + // the signal that the fetched taxonomy has been laid out. + const showSunburst = async () => { + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + }; + + it('renders an arc for every category', async () => { + await showSunburst(); + // food_and_drink > casual_eatery > bagel_shop + expect(document.querySelectorAll('.taxonomy-viz-stage path')).toHaveLength(3); + }); + + it('draws every segment with the same outline, basic or not', async () => { + await showSunburst(); + const arcs = () => [...document.querySelectorAll('.taxonomy-viz-stage path')]; + const uniform = () => ({ + strokes: new Set(arcs().map(p => p.getAttribute('stroke'))), + widths: new Set(arcs().map(p => p.getAttribute('stroke-width'))), + }); + + // Basic categories are picked out by dimming the rest, not by an outline. + expect(uniform()).toEqual({ strokes: new Set(['rgba(255,255,255,0.35)']), widths: new Set(['0.4']) }); + + fireEvent.click(screen.getByLabelText(/Highlight basic categories only/)); + expect(uniform()).toEqual({ strokes: new Set(['rgba(255,255,255,0.35)']), widths: new Set(['0.4']) }); + }); + + it('reports the number of categories beneath, not just leaves', async () => { + await showSunburst(); + expect(document.querySelector('.taxonomy-viz-center-sub')).toHaveTextContent('3 categories'); + }); + + it('selects and zooms when an arc is clicked', async () => { + await showSunburst(); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(document.querySelector('.taxonomy-detail-name')).toHaveTextContent('Food and Drink'); + expect(document.querySelector('.taxonomy-viz-center-label')).toHaveTextContent('Food and Drink'); + expect(screen.getByRole('button', { name: 'Top level' })).toBeInTheDocument(); + }); + + it('dims non-basic categories when the basic filter is on', async () => { + await showSunburst(); + const dimmed = () => + [...document.querySelectorAll('.taxonomy-viz-stage path')].filter(p => + /hsl\(\d+ 8%/.test(p.getAttribute('fill') || '') + ).length; + expect(dimmed()).toBe(0); + fireEvent.click(screen.getByLabelText(/Highlight basic categories only/)); + expect(dimmed()).toBe(1); + }); + + it('dims categories that do not match the search', async () => { + await showSunburst(); + fireEvent.change(screen.getByPlaceholderText('Search categories...'), { + target: { value: 'bagel' }, + }); + const lit = [...document.querySelectorAll('.taxonomy-viz-stage path')].filter( + p => !/hsl\(\d+ 8%/.test(p.getAttribute('fill') || '') + ); + // The matched node plus its ancestors stay lit so the path stays readable. + expect(lit).toHaveLength(3); + }); + + + // A wider fixture: two branches under food_and_drink, so zooming has more + // than one child to assign colour to. + const DEEP = { + version: 't', + stats: { categories: 5, basicCategories: 2, rootGroups: 1, maxDepth: 2, totalPlaces: null }, + tree: [ + { + name: 'food_and_drink', displayName: 'Food and Drink', isBasic: true, + children: [ + { name: 'casual_eatery', displayName: 'Casual Eatery', isBasic: true, + children: [{ name: 'bagel_shop', displayName: 'Bagel Shop' }] }, + { name: 'bar', displayName: 'Bar', + children: [{ name: 'wine_bar', displayName: 'Wine Bar' }] }, + ], + }, + ], + }; + + const showDeepSunburst = async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + }; + + const hueSet = () => + new Set( + [...document.querySelectorAll('.taxonomy-viz-stage path')].map( + p => (p.getAttribute('fill').match(/hsl\((\d+)/) || [])[1] + ) + ); + const centreLabel = () => document.querySelector('.taxonomy-viz-center-label')?.textContent; + + it('disables Back at the root and enables it once zoomed', async () => { + await showDeepSunburst(); + expect(screen.getByRole('button', { name: '← Back' })).toBeDisabled(); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(screen.getByRole('button', { name: '← Back' })).toBeEnabled(); + }); + + it('steps Back to the previous view rather than all the way out', async () => { + await showDeepSunburst(); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(centreLabel()).toBe('Food and Drink'); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + const twoDeep = centreLabel(); + expect(twoDeep).not.toBe('Food and Drink'); + + fireEvent.click(screen.getByRole('button', { name: '← Back' })); + expect(centreLabel()).toBe('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: '← Back' })); + expect(centreLabel()).toBe('Overture Places'); + }); + + it('Top level returns to the root from any depth', async () => { + await showDeepSunburst(); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + fireEvent.click(screen.getByRole('button', { name: 'Top level' })); + expect(centreLabel()).toBe('Overture Places'); + expect(screen.getByRole('button', { name: 'Top level' })).toBeDisabled(); + }); + + it('re-splits colour across the focused node\'s children when zoomed', async () => { + await showDeepSunburst(); + // At the root the single group owns one hue for its whole subtree. + expect(hueSet().size).toBe(1); + + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + // Zoomed into food_and_drink, its two children each take their own hue. + expect(centreLabel()).toBe('Food and Drink'); + expect(hueSet().size).toBe(2); + }); + + + // The centre of a zoomed sunburst is the click target for stepping back. If + // rings started at radius 0 the focused node's own children would be drawn + // underneath it, so every click on the innermost ring zoomed out instead of + // in. These pin the invariant that made that possible. + describe('ring geometry', () => { + it('starts the innermost ring at the edge of the centre hole, not at zero', () => { + const { holeRadius, ringFor } = sunburstGeometry(260, 5); + expect(holeRadius).toBeGreaterThan(0); + expect(ringFor(1).r0).toBe(holeRadius); + }); + + it('leaves the back target strictly inside the innermost ring', () => { + for (const [radius, levels] of [[260, 5], [160, 3], [400, 6], [120, 1]]) { + const { holeRadius, ringFor } = sunburstGeometry(radius, levels); + // The rendered circle is holeRadius - 2; nothing may reach into it. + expect(ringFor(1).r0).toBeGreaterThan(holeRadius - 2); + } + }); + + it('fills the remaining radius across the levels below the focus', () => { + const { ringFor } = sunburstGeometry(260, 4); + expect(ringFor(4).r1).toBeCloseTo(260, 6); + expect(ringFor(2).r0).toBeCloseTo(ringFor(1).r1, 6); + }); + }); + + describe('sizing by place count', () => { + // A release with counts must not lose categories from the chart by + // default: place counts are skewed enough that weighting by them drops + // most of the taxonomy below the minimum drawable angle. + const WITH_COUNTS = { + version: 't', + // The skew is the point: a category with no places weighs 1 against + // millions, which is far below the minimum drawable angle. + stats: { categories: 3, basicCategories: 1, rootGroups: 1, maxDepth: 2, totalPlaces: 10_000_000 }, + tree: [ + { + name: 'food_and_drink', displayName: 'Food and Drink', isBasic: true, + children: [ + { name: 'busy', displayName: 'Busy', count: 10_000_000 }, + { name: 'empty', displayName: 'Empty' }, + ], + }, + ], + }; + const showWithCounts = async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(WITH_COUNTS) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + }; + const arcs = () => document.querySelectorAll('.taxonomy-viz-stage path').length; + + it('draws every category by default, even ones with no places', async () => { + await showWithCounts(); + expect(arcs()).toBe(3); + }); + + it('sizes a category by its own places as well as its children', async () => { + // A category can hold most of its places directly and still have a + // child. Counting only the children made coffee_shop (610,598 of its + // own, one child of 1,610) smaller than a sibling with far fewer. + const HEAVY = { + version: 't', + stats: { categories: 3, basicCategories: 0, rootGroups: 1, maxDepth: 2, totalPlaces: 673_344 }, + tree: [ + { + name: 'drinks', displayName: 'Drinks', totalCount: 673_344, + children: [ + { + name: 'coffee_shop', displayName: 'Coffee Shop', + count: 610_598, totalCount: 612_208, + children: [{ name: 'roastery', displayName: 'Roastery', count: 1_610, totalCount: 1_610 }], + }, + { name: 'juice_bar', displayName: 'Juice Bar', count: 62_736, totalCount: 62_736 }, + ], + }, + ], + }; + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(HEAVY) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + fireEvent.click(screen.getByLabelText(/Size by place count/)); + + const nameOf = p => { + fireEvent.mouseEnter(p); + const n = document.querySelector('.taxonomy-viz-tooltip-name')?.textContent; + fireEvent.mouseLeave(p); + return n; + }; + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + const inDrinks = [...document.querySelectorAll('.taxonomy-viz-stage path')].map(nameOf); + // Ordered largest first: Coffee Shop outweighs Juice Bar ten to one. + expect(inDrinks[0]).toBe('Coffee Shop'); + }); + + it('leaves a gap in the ring but fills the circle once centred', async () => { + // The gap is a category's own places: bank_or_credit_union holds + // 358,594 itself against 303,989 below it, so its children cover under + // half its arc. Centred, the centre *is* those places, so the ring + // around it is its children and nothing else. + const BANK = { + version: 't', + stats: { categories: 3, basicCategories: 0, rootGroups: 1, maxDepth: 2, totalPlaces: 662_583 }, + tree: [ + { + name: 'bank_or_credit_union', displayName: 'Bank or Credit Union', + count: 358_594, totalCount: 662_583, + children: [ + { name: 'bank', displayName: 'Bank', count: 234_566, totalCount: 234_566 }, + { name: 'credit_union', displayName: 'Credit Union', count: 69_423, totalCount: 69_423 }, + ], + }, + ], + }; + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(BANK) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + fireEvent.click(screen.getByLabelText(/Size by place count/)); + + const nameOf = p => { + fireEvent.mouseEnter(p); + const n = document.querySelector('.taxonomy-viz-tooltip-name')?.textContent; + fireEvent.mouseLeave(p); + return n; + }; + + // In the ring, the parent and both children are drawn; the parent's own + // places are simply not covered by anything. + let arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + expect(arcs.map(nameOf)).toEqual(['Bank or Credit Union', 'Bank', 'Credit Union']); + + fireEvent.click(arcs[0]); + expect(document.querySelector('.taxonomy-viz-center-label')).toHaveTextContent('Bank or Credit Union'); + + // Centred: the two children only, and between them the whole circle. + arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + expect(arcs.map(nameOf)).toEqual(['Bank', 'Credit Union']); + }); + + it('never shows a category beneath itself, and children fill the arc', async () => { + // Because a node's size includes its own places, its children add up to + // less than it does. Showing that difference as a slice put the + // category underneath itself; leaving it empty broke the ring. The + // children stretch to fill instead. + const DIRECT_HEAVY = { + version: 't', + stats: { categories: 2, basicCategories: 0, rootGroups: 1, maxDepth: 1, totalPlaces: 1_500_000 }, + tree: [ + { + name: 'japanese_restaurant', displayName: 'Japanese Restaurant', + count: 1_000_000, totalCount: 1_500_000, + children: [{ name: 'sushi', displayName: 'Sushi Restaurant', count: 500_000, totalCount: 500_000 }], + }, + ], + }; + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DIRECT_HEAVY) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + fireEvent.click(screen.getByLabelText(/Size by place count/)); + + const nameOf = p => { + fireEvent.mouseEnter(p); + const n = document.querySelector('.taxonomy-viz-tooltip-name')?.textContent; + fireEvent.mouseLeave(p); + return n; + }; + + let arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + expect(arcs.map(nameOf)).toEqual(['Japanese Restaurant', 'Sushi Restaurant']); + + fireEvent.click(arcs[0]); + expect(document.querySelector('.taxonomy-viz-center-label')).toHaveTextContent('Japanese Restaurant'); + + // Drilled in: only the real child, filling the circle. + arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + expect(arcs.map(nameOf)).toEqual(['Sushi Restaurant']); + }); + + it('offers the weighting as an opt-in', async () => { + await showWithCounts(); + const toggle = screen.getByLabelText(/Size by place count/); + expect(toggle).not.toBeChecked(); + fireEvent.click(toggle); + // The empty category now has zero angle and drops out. + expect(arcs()).toBeLessThan(3); + fireEvent.click(toggle); + expect(arcs()).toBe(3); + }); + + it('hides the toggle for a release with no counts', async () => { + await showSunburst(); + expect(screen.queryByLabelText(/Size by place count/)).toBeNull(); + }); + }); + + describe('canvas sizing', () => { + const svg = () => document.querySelector('.taxonomy-viz-stage svg'); + const sizeCanvas = (width, height) => { + const el = document.querySelector('.taxonomy-viz-canvas'); + el.getBoundingClientRect = () => ({ width, height, left: 0, top: 0, right: width, bottom: height }); + fireEvent(window, new Event('resize')); + }; + + it('fills the space it is given rather than a fixed size', async () => { + await showSunburst(); + sizeCanvas(1200, 800); + expect(svg()).toHaveAttribute('width', '1200'); + expect(svg()).toHaveAttribute('height', '800'); + // The sunburst is square on the smaller axis, centred in the canvas. + expect(document.querySelector('.taxonomy-viz-stage svg > g > g')).toHaveAttribute( + 'transform', + 'translate(600,400)' + ); + }); + + + it('renders before it has been measured', async () => { + // ResizeObserver has not fired yet on first paint; a zero-size canvas + // would render an empty chart. + await showSunburst(); + expect(Number(svg().getAttribute('width'))).toBeGreaterThan(0); + expect(document.querySelectorAll('.taxonomy-viz-stage path').length).toBeGreaterThan(0); + }); + + it('offers exactly two views, sunburst first', async () => { + await showSunburst(); + const views = [...document.querySelectorAll('.taxonomy-view-switch button')].map(b => b.textContent); + expect(views).toEqual(['Sunburst', 'Tree']); + }); + + + }); + + // SVG text does not wrap, so the centre label is laid out by hand. Without + // this it spilled out over the surrounding ring. + const COUNTED_VIZ = { + version: 't', + stats: { categories: 3, basicCategories: 1, rootGroups: 1, maxDepth: 2, totalPlaces: 150 }, + tree: [ + { + name: 'food_and_drink', displayName: 'Food and Drink', isBasic: true, + count: 50, totalCount: 150, + children: [ + { + name: 'casual_eatery', displayName: 'Casual Eatery', totalCount: 100, + children: [ + { name: 'bagel_shop', displayName: 'Bagel Shop', count: 100, totalCount: 100 }, + ], + }, + ], + }, + ], + }; + const showCountedSunburst = async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(COUNTED_VIZ) })); + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + }; + + describe('tooltip', () => { + const hoverFirstArc = () => { + const arc = document.querySelector('.taxonomy-viz-stage path'); + fireEvent.mouseEnter(arc); + return document.querySelector('.taxonomy-viz-tooltip'); + }; + + it('reports both counts for a parent category', async () => { + await showCountedSunburst(); + const tip = hoverFirstArc(); + expect(tip).toHaveTextContent('Places at this category'); + expect(tip).toHaveTextContent('Including subcategories'); + }); + + it('omits the roll-up on a leaf, as the detail panel does', async () => { + await showCountedSunburst(); + const arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + fireEvent.mouseEnter(arcs[arcs.length - 1]); + const tip = document.querySelector('.taxonomy-viz-tooltip'); + expect(tip).toHaveTextContent('Places at this category'); + expect(tip).not.toHaveTextContent('Including subcategories'); + }); + + it('shows no count rows for a release without counts', async () => { + await showSunburst(); + expect(hoverFirstArc()).not.toHaveTextContent('Places at this category'); + }); + + it('does not repeat the title as its own breadcrumb', async () => { + await showSunburst(); + const tip = hoverFirstArc(); + expect(tip.querySelector('.taxonomy-viz-tooltip-name')).toHaveTextContent('Food and Drink'); + // A top-level category has no ancestors to show. + expect(tip.querySelector('.taxonomy-viz-tooltip-path')).toBeNull(); + }); + }); + + describe('clearing the selection', () => { + it('offers a clear control once something is selected', async () => { + await showSunburst(); + expect(screen.queryByRole('button', { name: 'Clear selection' })).toBeNull(); + + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(document.querySelector('.taxonomy-detail-name')).toHaveTextContent('Food and Drink'); + + fireEvent.click(screen.getByRole('button', { name: 'Clear selection' })); + expect(document.querySelector('.taxonomy-detail-name')).toBeNull(); + expect(document.querySelector('.taxonomy-detail-empty')).not.toBeNull(); + }); + }); + + describe('centre label wrapping', () => { + it('keeps a short label on one line', () => { + expect(wrapLabel('Education', 160, 13)).toEqual(['Education']); + }); + + it('breaks a long label across lines that fit', () => { + expect(wrapLabel('Services and Business', 160, 13)).toEqual(['Services and', 'Business']); + }); + + it('wraps harder when there is less room', () => { + const roomy = wrapLabel('Travel and Transportation', 160, 13); + const tight = wrapLabel('Travel and Transportation', 74, 13); + expect(tight.length).toBeGreaterThan(roomy.length); + }); + + it('never breaks inside a word, even one too wide for the line', () => { + // "Profession-" / "al Service" reads as a typo; overflowing is better. + expect(wrapLabel('Antidisestablishmentarianism', 74, 13)).toEqual([ + 'Antidisestablishmentarianism', + ]); + expect(wrapLabel('Professional Service', 74, 13)).toEqual(['Professional', 'Service']); + }); + + it('truncates rather than growing past three lines', () => { + const lines = wrapLabel('B2B Oil and Gas Exploration and Development', 96, 13); + expect(lines).toHaveLength(3); + expect(lines[2]).toMatch(/…$/); + }); + + it('handles empty input', () => { + expect(wrapLabel('', 160, 13)).toEqual([]); + expect(wrapLabel(undefined, 160, 13)).toEqual([]); + }); + + it('always shows the category count, however the title wraps', async () => { + // It used to be dropped when a three-line title left the hole too + // narrow at the count's baseline, so the number came and went depending + // on which category you were looking at. + await showSunburst(); + const canvas = document.querySelector('.taxonomy-viz-canvas'); + for (const [w, h] of [[320, 320], [900, 900]]) { + canvas.getBoundingClientRect = () => ({ width: w, height: h, left: 0, top: 0, right: w, bottom: h }); + fireEvent(window, new Event('resize')); + expect(document.querySelector('.taxonomy-viz-center-sub')).not.toBeNull(); + // ...and still there once drilled in, where titles are longer. + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(document.querySelector('.taxonomy-viz-center-sub')).not.toBeNull(); + fireEvent.click(screen.getByRole('button', { name: 'Top level' })); + } + }); + + it('renders the label as tspans that still read as one string', async () => { + await showSunburst(); + const el = document.querySelector('.taxonomy-viz-center-label'); + expect(el.querySelectorAll('tspan').length).toBeGreaterThan(0); + expect(el.textContent.replace(/\s+/g, ' ').trim()).toBe('Overture Places'); + }); + }); + + describe('viewport zoom and pan', () => { + const transformOf = () => + document.querySelector('.taxonomy-viz-stage svg > g')?.getAttribute('transform'); + const parseTransform = () => { + const m = transformOf().match(/translate\(([-\d.]+),([-\d.]+)\) scale\(([\d.]+)\)/); + return { x: Number(m[1]), y: Number(m[2]), k: Number(m[3]) }; + }; + const stage = () => document.querySelector('.taxonomy-viz-stage'); + + it('keeps the point under the cursor fixed while zooming', () => { + // The whole point of focal-point zoom: whatever is under (px, py) stays + // there. Drift here is far more annoying than no zoom at all. + const zoomed = zoomAt({ k: 1, x: 0, y: 0 }, 2, 400, 100); + expect(400 * zoomed.k + zoomed.x).toBeCloseTo(400, 6); + expect(100 * zoomed.k + zoomed.y).toBeCloseTo(100, 6); + }); + + it('clamps scale to a usable range', () => { + expect(zoomAt({ k: 1, x: 0, y: 0 }, 1000, 0, 0).k).toBeLessThanOrEqual(12); + expect(zoomAt({ k: 1, x: 0, y: 0 }, 0.0001, 0, 0).k).toBeGreaterThanOrEqual(0.5); + }); + + it('zooms in and out from the controls, and reset returns to rest', async () => { + await showSunburst(); + expect(parseTransform().k).toBeCloseTo(1, 6); + expect(screen.getByRole('button', { name: 'Reset view' })).toBeDisabled(); + + fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })); + expect(parseTransform().k).toBeGreaterThan(1); + expect(screen.getByRole('button', { name: 'Reset view' })).toBeEnabled(); + + fireEvent.click(screen.getByRole('button', { name: 'Reset view' })); + expect(parseTransform().k).toBeCloseTo(1, 6); + }); + + it('never captures the pointer, which would retarget segment clicks', async () => { + // A captured pointer makes the browser dispatch the following `click` to + // the capturing element rather than the segment under the cursor, so + // selection stops working while panning still appears fine. jsdom does + // not model that retargeting, so this asserts the cause directly. + await showSunburst(); + const capture = vi.fn(); + stage().setPointerCapture = capture; + fireEvent.pointerDown(stage(), { button: 0, clientX: 100, clientY: 100, pointerId: 1 }); + fireEvent.pointerMove(stage(), { clientX: 160, clientY: 130, pointerId: 1 }); + fireEvent.pointerUp(stage(), { pointerId: 1 }); + expect(capture).not.toHaveBeenCalled(); + }); + + it('still works when a zoom control is pressed with a shaky hand', async () => { + await showSunburst(); + const plus = screen.getByRole('button', { name: 'Zoom in' }); + fireEvent.pointerDown(plus, { button: 0, clientX: 100, clientY: 100, pointerId: 1 }); + fireEvent.pointerMove(plus, { clientX: 112, clientY: 108, pointerId: 1 }); + fireEvent.pointerUp(plus, { pointerId: 1 }); + fireEvent.click(plus); + expect(parseTransform().k).toBeGreaterThan(1); + // ...and the canvas did not pan out from under the user. + expect(parseTransform()).toMatchObject({ x: 0, y: 0 }); + }); + + it('pans by the drag delta', async () => { + await showSunburst(); + fireEvent.pointerDown(stage(), { button: 0, clientX: 100, clientY: 100, pointerId: 1 }); + fireEvent.pointerMove(stage(), { clientX: 160, clientY: 130, pointerId: 1 }); + fireEvent.pointerUp(stage(), { pointerId: 1 }); + expect(parseTransform()).toMatchObject({ x: 60, y: 30 }); + }); + + it('does not select a segment when a drag ends over one', async () => { + await showSunburst(); + fireEvent.pointerDown(stage(), { button: 0, clientX: 200, clientY: 200, pointerId: 1 }); + fireEvent.pointerMove(stage(), { clientX: 260, clientY: 240, pointerId: 1 }); + fireEvent.pointerUp(stage(), { pointerId: 1 }); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(document.querySelector('.taxonomy-detail-name')).toBeNull(); + + // ...but an ordinary click still does. + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(document.querySelector('.taxonomy-detail-name')).toHaveTextContent('Food and Drink'); + }); + + it('resets the viewport when drilling into a branch', async () => { + await showSunburst(); + fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })); + expect(parseTransform().k).toBeGreaterThan(1); + fireEvent.click(document.querySelector('.taxonomy-viz-stage path')); + expect(parseTransform().k).toBeCloseTo(1, 6); + }); + + }); + + it('opens on the sunburst, with the tree one click away', async () => { + render(); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); + expect(screen.getByRole('button', { name: 'Sunburst' })).toHaveAttribute('aria-pressed', 'true'); + expect(document.querySelector('.taxonomy-viz-stage')).not.toBeNull(); + + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); + expect(document.querySelector('.taxonomy-viz-stage')).toBeNull(); + }); + }); + + it('filters the tree by search term', async () => { + render(); + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); + await screen.findByText('Food and Drink'); + fireEvent.change(screen.getByPlaceholderText('Search categories...'), { + target: { value: 'bagel' }, + }); + expect(screen.getByText('Bagel Shop')).toBeInTheDocument(); + }); +}); diff --git a/src/components/taxonomyBrowser.js b/src/components/taxonomyBrowser.js deleted file mode 100644 index a5c44f0a6..000000000 --- a/src/components/taxonomyBrowser.js +++ /dev/null @@ -1,808 +0,0 @@ -import { useState, useMemo, useCallback } from 'react'; -import '../css/taxonomyBrowser.css'; - -const SMALL_WORDS = new Set(['and', 'or', 'the', 'in', 'of', 'for', 'to', 'a', 'an']); - -function toDisplayName(code) { - if (!code) return ''; - return code.split('_').map((word, i) => { - if (i > 0 && SMALL_WORDS.has(word)) return word; - return word.charAt(0).toUpperCase() + word.slice(1); - }).join(' '); -} - -/** - * Parse a single CSV line, handling quoted fields that contain commas. - * Returns an array of field values. - */ -function parseCsvLine(line) { - const fields = []; - let i = 0; - while (i <= line.length) { - if (i === line.length) { - fields.push(''); - break; - } - if (line[i] === '"') { - let j = i + 1; - let value = ''; - while (j < line.length) { - if (line[j] === '"') { - if (j + 1 < line.length && line[j + 1] === '"') { - value += '"'; - j += 2; - } else { - j++; - break; - } - } else { - value += line[j]; - j++; - } - } - fields.push(value); - if (j < line.length && line[j] === ',') j++; - i = j; - } else { - const commaIdx = line.indexOf(',', i); - if (commaIdx === -1) { - fields.push(line.slice(i)); - break; - } else { - fields.push(line.slice(i, commaIdx)); - i = commaIdx + 1; - } - } - } - return fields; -} - -// --------------------------------------------------------------------------- -// Generic CSV parser -// --------------------------------------------------------------------------- - -function parseCsv(csvText, fieldNames) { - const lines = csvText.replace(/\r\n?/g, '\n').trim().split('\n'); - lines.shift(); - return lines - .map(line => { - const parts = parseCsvLine(line); - if (!parts[0]) return null; - const row = {}; - for (let i = 0; i < fieldNames.length; i++) { - row[fieldNames[i]] = parts[i] || ''; - } - return row; - }) - .filter(Boolean); -} - -function parseCountsCsv(csvText) { - if (!csvText) return {}; - const lines = csvText.replace(/\r\n?/g, '\n').replace(/^\uFEFF/, '').trim().split('\n'); - lines.shift(); - const map = {}; - for (const line of lines) { - const parts = parseCsvLine(line); - const count = parseInt(parts[0], 10); - const category = parts[1]; - if (category && !isNaN(count)) { - map[category] = (map[category] || 0) + count; - } - } - return map; -} - -function parseCountsStats(csvText) { - if (!csvText) return { totalPlaces: 0, uniqueCategories: 0, uniqueBasicCategories: 0 }; - const lines = csvText.replace(/\r\n?/g, '\n').replace(/^\uFEFF/, '').trim().split('\n'); - lines.shift(); - let totalPlaces = 0; - const categories = new Set(); - const basicCategories = new Set(); - for (const line of lines) { - const parts = parseCsvLine(line); - const count = parseInt(parts[0], 10); - if (!isNaN(count)) totalPlaces += count; - if (parts[1]) categories.add(parts[1]); - if (parts[2]) basicCategories.add(parts[2]); - } - return { totalPlaces, uniqueCategories: categories.size, uniqueBasicCategories: basicCategories.size }; -} - -function parseCountsCsvByBasic(csvText) { - if (!csvText) return {}; - const lines = csvText.replace(/\r\n?/g, '\n').replace(/^\uFEFF/, '').trim().split('\n'); - lines.shift(); - const map = {}; - for (const line of lines) { - const parts = parseCsvLine(line); - const count = parseInt(parts[0], 10); - const basicCategory = parts[2]; - if (basicCategory && !isNaN(count)) { - map[basicCategory] = (map[basicCategory] || 0) + count; - } - } - return map; -} - -// --------------------------------------------------------------------------- -// Generic tree builder -// --------------------------------------------------------------------------- - -function buildTree(rows, counts, config) { - const nodeMap = {}; - - if (config.hierarchyFields) { - // Multi-field mode (April style): build path from multiple fields - function ensureNode(hierarchy, displayName) { - if (nodeMap[hierarchy]) return nodeMap[hierarchy]; - const node = { - hierarchy, - displayName, - code: '', - children: [], - data: null, - leafCount: null, - totalCount: null, - }; - nodeMap[hierarchy] = node; - return node; - } - - for (const row of rows) { - const pathParts = []; - for (const f of config.hierarchyFields) { - const val = row[f]; - if (val) { - // Skip duplicate when category === theme (original taxonomy quirk) - if (pathParts.length > 0 && val === pathParts[pathParts.length - 1]) continue; - pathParts.push(val); - } - } - - for (let i = 0; i < pathParts.length; i++) { - const path = pathParts.slice(0, i + 1).join(' > '); - const node = ensureNode(path, toDisplayName(pathParts[i])); - node.code = pathParts[i]; - } - - const leafPath = pathParts.join(' > '); - if (nodeMap[leafPath]) { - nodeMap[leafPath].data = row; - const c = counts[row[config.codeField]]; - if (c != null) { - nodeMap[leafPath].leafCount = c; - nodeMap[leafPath].totalCount = c; - } - } - } - } else { - // Single-field mode (Oct/Dec style): split a pre-built hierarchy string - function ensureNode(hierarchy) { - if (nodeMap[hierarchy]) return nodeMap[hierarchy]; - const parts = hierarchy.split(' > '); - const lastSegment = parts[parts.length - 1]; - const node = { - hierarchy, - displayName: toDisplayName(lastSegment), - code: lastSegment, - children: [], - leafCount: null, - totalCount: null, - }; - nodeMap[hierarchy] = node; - return node; - } - - for (const row of rows) { - const hierarchyValue = row[config.hierarchyField]; - if (!hierarchyValue) continue; - const parts = hierarchyValue.split(' > '); - for (let i = 0; i < parts.length; i++) { - const path = parts.slice(0, i + 1).join(' > '); - ensureNode(path); - } - - const leafPath = hierarchyValue; - const codeValue = row[config.codeField]; - if (nodeMap[leafPath] && codeValue) { - nodeMap[leafPath].code = codeValue; - const c = counts[codeValue]; - if (c != null) { - nodeMap[leafPath].leafCount = c; - nodeMap[leafPath].totalCount = c; - } - } - } - } - - // Build parent-child relationships - const root = []; - const paths = Object.keys(nodeMap).sort(); - for (const path of paths) { - const node = nodeMap[path]; - const parts = path.split(' > '); - if (parts.length === 1) { - root.push(node); - } else { - const parentPath = parts.slice(0, -1).join(' > '); - if (nodeMap[parentPath]) { - if (!nodeMap[parentPath].children.find(c => c.hierarchy === path)) { - nodeMap[parentPath].children.push(node); - } - } - } - } - - // Aggregate counts up the tree - if (Object.keys(counts).length > 0) { - function computeTotal(node) { - if (node.children.length === 0) return node.leafCount || 0; - let total = node.leafCount || 0; - for (const child of node.children) { - total += computeTotal(child); - } - node.totalCount = total; - return total; - } - for (const node of root) computeTotal(node); - } - - return { children: root, totalCategories: rows.length }; -} - -// --------------------------------------------------------------------------- -// Cross-tab lookup maps -// --------------------------------------------------------------------------- - -function computePercentileTags(counts) { - const entries = Object.entries(counts).filter(([, v]) => v != null && v > 0); - if (entries.length === 0) return {}; - const sorted = entries.map(([, v]) => v).sort((a, b) => a - b); - const tags = {}; - for (const [key, count] of entries) { - const rank = sorted.filter(v => v < count).length; - const pct = (rank / sorted.length) * 100; - if (pct >= 99) tags[key] = 'Top 1%'; - else if (pct >= 90) tags[key] = 'Top 10%'; - else if (pct <= 1) tags[key] = 'Bottom 1%'; - else if (pct <= 10) tags[key] = 'Bottom 10%'; - else if (pct <= 25) tags[key] = 'Bottom 25%'; - else tags[key] = null; - } - return tags; -} - -function buildLookups(releases, allRows, allCountsByPrimary, allCountsByBasic) { - const lookups = {}; - for (let i = 0; i < releases.length; i++) { - const cfg = releases[i]; - const rows = allRows[cfg.id]; - const counts = allCountsByPrimary[cfg.id]; - const basicCounts = allCountsByBasic[cfg.id]; - const prevBasicCounts = i > 0 ? allCountsByBasic[releases[i - 1].id] : null; - const pctTags = computePercentileTags(counts); - - // Determine which release's counts to use for prevCount based on matchType - let prevCountSource = null; - if (cfg.matchType === 'original') { - prevCountSource = allCountsByPrimary[releases[0].id]; - } else if (cfg.matchType === 'new' && i > 0) { - prevCountSource = allCountsByPrimary[releases[i - 1].id]; - } else if (i > 0) { - prevCountSource = allCountsByPrimary[releases[i - 1].id]; - } - - lookups[cfg.id] = {}; - for (const row of rows) { - const code = row[cfg.codeField]; - if (!code || lookups[cfg.id][code]) continue; - - const hierarchy = cfg.hierarchyField - ? row[cfg.hierarchyField] - : cfg.hierarchyFields.filter(f => row[f]).map(f => row[f]).join(' > '); - - const basicLabel = cfg.basicCategoryField ? row[cfg.basicCategoryField] : null; - - // Use matchColumn for prevCount lookup when available, otherwise fall back to code - const matchCode = cfg.matchColumn ? row[cfg.matchColumn] : null; - let prevCount = null; - if (prevCountSource) { - if (matchCode) { - prevCount = prevCountSource[matchCode] ?? null; - } else { - prevCount = prevCountSource[code] ?? null; - } - } - - const entry = { - ...row, - hierarchy, - code, - basicCategory: basicLabel, - count: counts[code] ?? null, - prevCount, - basicCount: basicLabel && basicCounts ? (basicCounts[basicLabel] ?? null) : null, - prevBasicCount: basicLabel && prevBasicCounts ? (prevBasicCounts[basicLabel] ?? null) : null, - pctTag: pctTags[code] || null, - }; - - lookups[cfg.id][code] = entry; - - // Also index by matchColumn value for cross-tab lookups - if (matchCode && matchCode !== code && !lookups[cfg.id][matchCode]) { - lookups[cfg.id][matchCode] = entry; - } - } - } - return lookups; -} - -// --------------------------------------------------------------------------- -// Shared components -// --------------------------------------------------------------------------- - -function TreeNode({ node, depth, expanded, onToggle, selected, onSelect }) { - const hasChildren = node.children.length > 0; - const isExpanded = expanded.has(node.hierarchy); - const isSelected = selected && selected.hierarchy === node.hierarchy; - - let className = 'taxonomy-tree-item'; - if (isSelected) className += ' taxonomy-tree-item--selected'; - - return ( -
-
{ - onSelect(node); - if (hasChildren) onToggle(node.hierarchy); - }} - > - - {hasChildren ? (isExpanded ? '▾' : '▸') : '·'} - - {node.displayName} - {node.totalCount != null && ( - - {node.totalCount.toLocaleString()} - - )} -
- {hasChildren && isExpanded && ( -
- {node.children.map(child => ( - - ))} -
- )} -
- ); -} - -function CollapsibleSection({ title, defaultOpen, noMatch, note, children }) { - const [open, setOpen] = useState(defaultOpen); - return ( -
- - {!noMatch && open && ( -
- {note &&

{note}

} - {children} -
- )} -
- ); -} - -// --------------------------------------------------------------------------- -// Section content renderer -// --------------------------------------------------------------------------- - -function pctTagClass(tag) { - if (!tag) return ''; - if (tag.startsWith('Top')) return 'taxonomy-pct-top'; - if (tag.startsWith('Bottom')) return 'taxonomy-pct-bottom'; - return ''; -} - -function PctTag({ tag }) { - if (!tag) return null; - return {tag}; -} - -function ChangeIndicator({ current, previous }) { - if (previous == null || current == null) return null; - if (previous === 0 && current === 0) return null; - if (previous === 0) { - return (new); - } - const pctRaw = ((current - previous) / previous) * 100; - const pct = Math.abs(pctRaw) >= 1 ? Math.round(pctRaw) : Math.round(pctRaw * 10) / 10; - if (pct === 0) return null; - const isUp = pct > 0; - return ( - - {' '}({isUp ? '↑' : '↓'} {Math.abs(pct)}%) - - ); -} - -function HierarchyLevelList({ hierarchy, selectedCode, basicCategory, basicCount, prevBasicCount, count, prevCount, pctTag, mappings, displayFields, data }) { - if (!hierarchy) return null; - const parts = hierarchy.split(' > '); - const items = parts.map((part, i) => ({ - label: `Level ${i}`, - value: part.replace(/_/g, ' '), - selected: part.trim() === selectedCode, - })); - if (basicCategory) { - items.push({ label: 'Basic Category', value: basicCategory.replace(/_/g, ' ') }); - } - if (displayFields && data) { - for (const df of displayFields) { - const val = data[df.field]; - if (val) { - items.push({ label: df.label, value: String(val).replace(/_/g, ' ') }); - } - } - } - if (basicCount != null) { - items.push({ label: 'Basic Count', value: basicCount.toLocaleString(), countChange: { current: basicCount, previous: prevBasicCount } }); - } - if (count != null) { - items.push({ label: 'Count', value: count.toLocaleString(), countChange: { current: count, previous: prevCount } }); - } - if (pctTag) { - items.push({ label: 'Note', value: pctTag, isPctTag: true }); - } - if (mappings && mappings.length > 0) { - mappings.forEach((m) => { - items.push({ - label: m.match_type, - value: m.overture_label.replace(/_/g, ' '), - }); - }); - } - return ( -
- {items.map((item, i) => ( -
- {item.label} - {item.isPctTag ? ( - - ) : ( - - {item.value} - {item.countChange && } - - )} -
- ))} -
- ); -} - -function SectionContent({ data, release }) { - return ( -
- -
- ); -} - -// --------------------------------------------------------------------------- -// Detail panel with cross-tab collapsible sections -// --------------------------------------------------------------------------- - -function DetailPanel({ node, activeTab, lookups, releases }) { - if (!node) { - return ( -
-

Select a category from the tree

-

Navigate the taxonomy hierarchy on the left to view detailed category data

-
- ); - } - - const code = node.code; - - return ( -
-

{node.displayName}

-
- {releases.map(release => { - const data = lookups[release.id]?.[code] || null; - return ( - - {data && } - - ); - })} -
-
- ); -} - -// --------------------------------------------------------------------------- -// Main component -// --------------------------------------------------------------------------- - -export default function TaxonomyBrowser({ releases: allReleases }) { - // Filter to only enabled releases - const releases = useMemo( - () => allReleases.filter(r => r.enabled !== false), - [allReleases] - ); - - const [activeTab, setActiveTab] = useState(releases[0]?.id || ''); - const [searchTerm, setSearchTerm] = useState(''); - const [expanded, setExpanded] = useState(new Set()); - const [selected, setSelected] = useState(null); - - // Parse all data CSVs - const allRows = useMemo(() => { - const result = {}; - for (const r of releases) { - result[r.id] = parseCsv(r.dataCsv, r.fieldNames); - } - return result; - }, [releases]); - - // Parse all counts (by primary category) - const allCountsByPrimary = useMemo(() => { - const result = {}; - for (const r of releases) { - result[r.id] = parseCountsCsv(r.countsCsv); - } - return result; - }, [releases]); - - // Parse all counts (by basic category) - const allCountsByBasic = useMemo(() => { - const result = {}; - for (const r of releases) { - result[r.id] = parseCountsCsvByBasic(r.countsCsv); - } - return result; - }, [releases]); - - // Build all trees - const allTrees = useMemo(() => { - const result = {}; - for (const r of releases) { - result[r.id] = buildTree(allRows[r.id], allCountsByPrimary[r.id], r); - } - return result; - }, [releases, allRows, allCountsByPrimary]); - - // Build lookups - const lookups = useMemo( - () => buildLookups(releases, allRows, allCountsByPrimary, allCountsByBasic), - [releases, allRows, allCountsByPrimary, allCountsByBasic] - ); - - // Stats per release - const releaseStats = useMemo(() => { - const result = {}; - for (const r of releases) { - result[r.id] = parseCountsStats(r.countsCsv); - } - return result; - }, [releases]); - - // Previous release stats (for change indicators) - const prevReleaseStats = useMemo(() => { - const result = {}; - for (let i = 0; i < releases.length; i++) { - result[releases[i].id] = i > 0 ? releaseStats[releases[i - 1].id] : null; - } - return result; - }, [releases, releaseStats]); - - // Current tree based on activeTab - const tree = allTrees[activeTab] || { children: [], totalCategories: 0 }; - - const handleTabChange = useCallback((tab) => { - setActiveTab(tab); - setSelected(null); - setExpanded(new Set()); - setSearchTerm(''); - }, []); - - const handleToggle = useCallback((hierarchy) => { - setExpanded(prev => { - const next = new Set(prev); - if (next.has(hierarchy)) { - next.delete(hierarchy); - } else { - next.add(hierarchy); - } - return next; - }); - }, []); - - const handleSelect = useCallback((node) => { - setSelected(node); - }, []); - - const filteredTree = useMemo(() => { - if (!searchTerm) return tree.children; - - function filterNode(node) { - const term = searchTerm.toLowerCase(); - const matches = node.displayName.toLowerCase().includes(term) || - node.code.toLowerCase().includes(term); - - const filteredChildren = node.children - .map(filterNode) - .filter(Boolean); - - if (matches || filteredChildren.length > 0) { - return { ...node, children: filteredChildren }; - } - return null; - } - - return tree.children.map(filterNode).filter(Boolean); - }, [tree, searchTerm]); - - const effectiveExpanded = useMemo(() => { - if (!searchTerm) return expanded; - const autoExpanded = new Set(expanded); - - function expandMatching(node) { - const term = searchTerm.toLowerCase(); - const matches = node.displayName.toLowerCase().includes(term) || - node.code.toLowerCase().includes(term); - let childMatches = false; - for (const child of node.children) { - if (expandMatching(child)) childMatches = true; - } - if (childMatches) { - autoExpanded.add(node.hierarchy); - } - return matches || childMatches; - } - - for (const node of tree.children) { - expandMatching(node); - } - return autoExpanded; - }, [expanded, searchTerm, tree]); - - return ( -
-
-
- Choose a release: - -
- {(() => { - const cfg = releases.find(r => r.id === activeTab); - const tags = cfg?.tags || []; - const releaseUrl = cfg?.releaseUrl || ''; - const stats = releaseStats[activeTab]; - const prevStats = prevReleaseStats[activeTab]; - return ( -
-
- {tags.map((tag, i) => ( -
-
{tag.title === 'Date' ? 'Release Date' : tag.title}
-
- {tag.title === 'Date' && releaseUrl ? ( - {tag.label} - ) : tag.label} -
-
- ))} -
- {stats && stats.totalPlaces > 0 ? ( -
-
-
Total Places
-
- {stats.totalPlaces.toLocaleString()} - -
-
-
-
Unique Categories
-
- {stats.uniqueCategories.toLocaleString()} - -
-
-
-
Basic Categories
-
- {stats.uniqueBasicCategories.toLocaleString()} - -
-
-
- ) : ( -
-
-
Counts
-
No Data
-
-
- )} -
- ); - })()} - setSearchTerm(e.target.value)} - /> -
- {filteredTree.map(node => ( - - ))} - {filteredTree.length === 0 && ( -
No categories match your search.
- )} -
-
-
- -
-
- ); -} diff --git a/src/components/taxonomyBrowser.jsx b/src/components/taxonomyBrowser.jsx new file mode 100644 index 000000000..bed5cce6a --- /dev/null +++ b/src/components/taxonomyBrowser.jsx @@ -0,0 +1,703 @@ +import { useState, useMemo, useCallback, useEffect, useRef } from 'react'; +import { useBaseUrlUtils } from '@docusaurus/useBaseUrl'; +import TaxonomyViz, { formatShare } from './taxonomyViz'; +import '../css/taxonomyBrowser.css'; + +const SMALL_WORDS = new Set(['and', 'or', 'the', 'in', 'of', 'for', 'to', 'a', 'an']); + +function toDisplayName(code) { + if (!code) return ''; + return code.split('_').map((word, i) => { + if (i > 0 && SMALL_WORDS.has(word)) return word; + return word.charAt(0).toUpperCase() + word.slice(1); + }).join(' '); +} + +// --------------------------------------------------------------------------- +// Canonical JSON releases +// --------------------------------------------------------------------------- + +/** + * Convert the compact tree emitted by scripts/build-taxonomy.mjs into the node + * shape the tree view already uses. + * + * The generator omits whatever is reconstructible while walking down from the + * roots — a node's full path, and its basic category when that is simply the + * nearest basic ancestor — so both are rebuilt here. `index` is filled in as a + * side effect so the detail panel can look a category up by its bare name; + * canonical category names are globally unique, which is what makes that safe. + */ +function buildTreeFromJson(nodes, parentPath, inheritedBasic, index, parent) { + return nodes.map(node => { + const hierarchy = parentPath ? `${parentPath} > ${node.name}` : node.name; + const basicCategory = node.isBasic ? node.name : (node.basicCategory ?? inheritedBasic); + const built = { + hierarchy, + displayName: node.displayName, + code: node.name, + isBasic: Boolean(node.isBasic), + basicCategory, + leafCount: node.count ?? null, + totalCount: node.totalCount ?? null, + // What this category is a share *of*. A top-level group has no parent, so + // it is measured against the release — which is the one level where a + // share of everything is a meaningful number rather than a rounding blip. + parentTotal: parent ? parent.totalCount : null, + parentLabel: parent ? parent.displayName : 'all places', + children: [], + }; + built.children = buildTreeFromJson(node.children ?? [], hierarchy, basicCategory, index, built); + index[node.name] = built; + return built; + }); +} + +/** Build the tree, lookups and stats for a release loaded from taxonomy.json. */ +function buildJsonRelease(data) { + const index = {}; + const totalPlaces = data.stats?.totalPlaces ?? null; + const children = buildTreeFromJson(data.tree ?? [], '', null, index, null); + // Roots are measured against the whole release. + for (const child of children) child.parentTotal = totalPlaces; + + const lookups = {}; + for (const [code, node] of Object.entries(index)) { + lookups[code] = { + hierarchy: node.hierarchy, + code, + basicCategory: node.basicCategory, + count: node.leafCount, + totalCount: node.totalCount, + parentTotal: node.parentTotal, + parentLabel: node.parentLabel, + basicCount: null, + pctTag: null, + is_basic: node.isBasic ? 'Yes' : 'No', + }; + } + + return { + tree: { children, totalCategories: data.stats?.categories ?? children.length }, + lookups, + stats: { + totalPlaces: data.stats?.totalPlaces ?? 0, + uniqueCategories: data.stats?.categories ?? 0, + uniqueBasicCategories: data.stats?.basicCategories ?? 0, + }, + }; +} + +// --------------------------------------------------------------------------- +// Cross-tab lookup maps +// --------------------------------------------------------------------------- + +function computePercentileTags(counts) { + const entries = Object.entries(counts).filter(([, v]) => v != null && v > 0); + if (entries.length === 0) return {}; + const sorted = entries.map(([, v]) => v).sort((a, b) => a - b); + const tags = {}; + for (const [key, count] of entries) { + const rank = sorted.filter(v => v < count).length; + const pct = (rank / sorted.length) * 100; + if (pct >= 99) tags[key] = 'Top 1%'; + else if (pct >= 90) tags[key] = 'Top 10%'; + else if (pct <= 1) tags[key] = 'Bottom 1%'; + else if (pct <= 10) tags[key] = 'Bottom 10%'; + else if (pct <= 25) tags[key] = 'Bottom 25%'; + else tags[key] = null; + } + return tags; +} + +// --------------------------------------------------------------------------- +// Shared components +// --------------------------------------------------------------------------- + +function TreeNode({ node, depth, expanded, onToggle, selected, onSelect }) { + const hasChildren = node.children.length > 0; + const isExpanded = expanded.has(node.hierarchy); + const isSelected = selected && selected.hierarchy === node.hierarchy; + + let className = 'taxonomy-tree-item'; + if (isSelected) className += ' taxonomy-tree-item--selected'; + + return ( +
+
{ + onSelect(node); + if (hasChildren) onToggle(node.hierarchy); + }} + > + + {hasChildren ? (isExpanded ? '▾' : '▸') : '·'} + + {node.displayName} + {node.totalCount != null && ( + + {node.totalCount.toLocaleString()} + + )} +
+ {hasChildren && isExpanded && ( +
+ {node.children.map(child => ( + + ))} +
+ )} +
+ ); +} + +function pctTagClass(tag) { + if (!tag) return ''; + if (tag.startsWith('Top')) return 'taxonomy-pct-top'; + if (tag.startsWith('Bottom')) return 'taxonomy-pct-bottom'; + return ''; +} + +function PctTag({ tag }) { + if (!tag) return null; + return {tag}; +} + +function HierarchyLevelList({ hierarchy, selectedCode, basicCategory, basicCount, count, totalCount, parentTotal, parentLabel, pctTag, mappings, displayFields, data }) { + if (!hierarchy) return null; + const parts = hierarchy.split(' > '); + const items = parts.map((part, i) => ({ + label: `Level ${i}`, + value: part.replace(/_/g, ' '), + selected: part.trim() === selectedCode, + })); + if (basicCategory) { + items.push({ label: 'Basic Category', value: basicCategory.replace(/_/g, ' ') }); + } + if (displayFields && data) { + for (const df of displayFields) { + const val = data[df.field]; + if (val) { + items.push({ label: df.label, value: String(val).replace(/_/g, ' ') }); + } + } + } + if (basicCount != null) { + items.push({ label: 'Basic Count', value: basicCount.toLocaleString() }); + } + // A parent's own count is only the places filed directly against it. The + // roll-up is what people mean by "how big is Food and Drink", so show both. + // An explicit 0 matters here: it says nothing is filed at this level, which + // is different from the count being unknown. + // + // Both shares are of the same thing — the category that contains this one — + // so the denominator is named once at the end. Spelling it out on each row + // wrapped the value mid-parenthetical in a panel this narrow, and a shared + // denominator also makes the two percentages comparable to each other. + const rolledUp = totalCount != null && totalCount !== (count ?? 0); + const share = value => { + const pct = formatShare(value, parentTotal); + return pct ? ` (${pct})` : ''; + }; + + if (count != null || totalCount != null) { + const direct = count ?? 0; + items.push({ + label: 'Places at this category', + value: `${direct.toLocaleString()}${share(direct)}`, + numeric: true, + stacked: true, + }); + } + // Suppressed on a leaf, where the two numbers are the same. + if (rolledUp) { + items.push({ + label: 'Including subcategories', + value: `${totalCount.toLocaleString()}${share(totalCount)}`, + numeric: true, + stacked: true, + }); + } + if ((count != null || totalCount != null) && parentTotal && parentLabel) { + items.push({ label: 'Shares of', value: parentLabel }); + } + if (pctTag) { + items.push({ label: 'Note', value: pctTag, isPctTag: true }); + } + if (mappings && mappings.length > 0) { + mappings.forEach((m) => { + items.push({ + label: m.match_type, + value: m.overture_label.replace(/_/g, ' '), + }); + }); + } + return ( +
+ {items.map((item, i) => ( +
+ {item.label} + {item.isPctTag ? ( + + ) : ( + + {item.value} + + )} +
+ ))} +
+ ); +} + +function SectionContent({ data, release }) { + return ( +
+ +
+ ); +} + +// --------------------------------------------------------------------------- +// Detail panel with cross-tab collapsible sections +// --------------------------------------------------------------------------- + +function DetailPanel({ node, activeTab, lookups, releases, onClear }) { + if (!node) { + return ( +
+

Select a category from the tree

+

Navigate the taxonomy hierarchy on the left to view detailed category data

+
+ ); + } + + const code = node.code; + + return ( +
+ +

{node.displayName}

+
+ {(() => { + const release = releases.find(r => r.id === activeTab) ?? releases[0]; + if (!release) return null; + const data = lookups[release.id]?.[code] || null; + return data ? : null; + })()} +
+
+ ); +} + +// --------------------------------------------------------------------------- +// Main component +// --------------------------------------------------------------------------- + +export default function TaxonomyBrowser({ releases: allReleases }) { + // Filter to only enabled releases + const releases = useMemo( + () => allReleases.filter(r => r.enabled !== false), + [allReleases] + ); + + // Releases are listed oldest-first, so the newest is the last entry. Opening + // on the newest is what a visitor almost always wants; opening on the oldest + // showed a taxonomy two generations out of date. + const [activeTab, setActiveTab] = useState(releases[releases.length - 1]?.id || ''); + const [searchTerm, setSearchTerm] = useState(''); + const [expanded, setExpanded] = useState(new Set()); + const [selected, setSelected] = useState(null); + const [jsonReleases, setJsonReleases] = useState({}); + const [loadErrors, setLoadErrors] = useState({}); + // The sunburst is what makes the shape of the taxonomy legible at a glance; + // the tree is the precise view you switch to once you know what you want. + const [view, setView] = useState('sunburst'); + + const { withBaseUrl } = useBaseUrlUtils(); + + // The MDX page passes `releases` as an inline array literal, so its identity + // changes whenever the page re-renders. Tracking what has already been asked + // for keeps that from re-issuing requests. + const requested = useRef(new Set()); + const mounted = useRef(true); + + useEffect(() => { + mounted.current = true; + return () => { + mounted.current = false; + }; + }, []); + + // Releases with a `dataUrl` are served as a static JSON file rather than + // inlined into the bundle, so they are fetched once on mount. This keeps the + // page's initial payload flat as releases accumulate. + useEffect(() => { + for (const r of releases) { + if (!r.dataUrl || requested.current.has(r.id)) continue; + requested.current.add(r.id); + fetch(withBaseUrl(r.dataUrl)) + .then(res => { + if (!res.ok) throw new Error(`${res.status} ${res.statusText}`); + return res.json(); + }) + .then(data => { + if (mounted.current) setJsonReleases(prev => ({ ...prev, [r.id]: buildJsonRelease(data) })); + }) + .catch(err => { + if (mounted.current) setLoadErrors(prev => ({ ...prev, [r.id]: err.message })); + }); + } + // Deliberately no per-run cancellation: `requested` already prevents a + // second fetch, so a cleanup that abandoned an in-flight response would + // strand the browser on "Loading…" with no way to retry. Only unmount + // stops a result from being applied. + }, [releases, withBaseUrl]); + + const allTrees = useMemo(() => { + const result = {}; + for (const r of releases) { + result[r.id] = jsonReleases[r.id]?.tree ?? { children: [], totalCategories: 0 }; + } + return result; + }, [releases, jsonReleases]); + + const lookups = useMemo(() => { + const result = {}; + for (const r of releases) { + result[r.id] = jsonReleases[r.id]?.lookups ?? {}; + } + return result; + }, [releases, jsonReleases]); + + const releaseStats = useMemo(() => { + const result = {}; + for (const r of releases) { + result[r.id] = jsonReleases[r.id]?.stats + ?? { totalPlaces: 0, uniqueCategories: 0, uniqueBasicCategories: 0 }; + } + return result; + }, [releases, jsonReleases]); + + // Current tree based on activeTab + const tree = allTrees[activeTab] || { children: [], totalCategories: 0 }; + + const handleTabChange = useCallback((tab) => { + setActiveTab(tab); + setSelected(null); + setExpanded(new Set()); + setSearchTerm(''); + }, []); + + const handleToggle = useCallback((hierarchy) => { + setExpanded(prev => { + const next = new Set(prev); + if (next.has(hierarchy)) { + next.delete(hierarchy); + } else { + next.add(hierarchy); + } + return next; + }); + }, []); + + const handleSelect = useCallback((node) => { + setSelected(node); + }, []); + + const filteredTree = useMemo(() => { + if (!searchTerm) return tree.children; + + function filterNode(node) { + const term = searchTerm.toLowerCase(); + const matches = node.displayName.toLowerCase().includes(term) || + node.code.toLowerCase().includes(term); + + const filteredChildren = node.children + .map(filterNode) + .filter(Boolean); + + if (matches || filteredChildren.length > 0) { + return { ...node, children: filteredChildren }; + } + return null; + } + + return tree.children.map(filterNode).filter(Boolean); + }, [tree, searchTerm]); + + const effectiveExpanded = useMemo(() => { + if (!searchTerm) return expanded; + const autoExpanded = new Set(expanded); + + function expandMatching(node) { + const term = searchTerm.toLowerCase(); + const matches = node.displayName.toLowerCase().includes(term) || + node.code.toLowerCase().includes(term); + let childMatches = false; + for (const child of node.children) { + if (expandMatching(child)) childMatches = true; + } + if (childMatches) { + autoExpanded.add(node.hierarchy); + } + return matches || childMatches; + } + + for (const node of tree.children) { + expandMatching(node); + } + return autoExpanded; + }, [expanded, searchTerm, tree]); + + // The visualization selects by category name, so it needs a way back to the + // tree node the detail panel expects. + const nodesByCode = useMemo(() => { + const index = {}; + const walk = nodes => { + for (const node of nodes) { + index[node.code] = node; + walk(node.children); + } + }; + walk(tree.children); + return index; + }, [tree]); + + const handleSelectByCode = useCallback( + code => { + const node = nodesByCode[code]; + if (node) setSelected(node); + }, + [nodesByCode] + ); + + // A search term dims non-matching segments rather than removing them, so the + // shape of the taxonomy stays readable while you narrow it down. Ancestors of + // a hit stay lit so the path down to it is visible. + const searchMatches = useMemo(() => { + if (!searchTerm) return null; + const term = searchTerm.toLowerCase(); + const hits = new Set(); + const walk = nodes => { + for (const node of nodes) { + if ( + node.displayName.toLowerCase().includes(term) || + node.code.toLowerCase().includes(term) + ) { + for (const part of node.hierarchy.split(' > ')) hits.add(part); + } + walk(node.children); + } + }; + walk(tree.children); + return hits; + }, [tree, searchTerm]); + + const activeRelease = releases.find(r => r.id === activeTab); + const loadError = loadErrors[activeTab] ?? null; + const isLoading = Boolean(activeRelease?.dataUrl) && !jsonReleases[activeTab] && !loadError; + + return ( +
+
+
+ {releases.length > 1 && ( + + )} +
+ {[ + { id: 'sunburst', label: 'Sunburst' }, + { id: 'tree', label: 'Tree' }, + ].map(v => ( + + ))} +
+
+ {(() => { + const cfg = releases.find(r => r.id === activeTab); + const tags = cfg?.tags || []; + const releaseUrl = cfg?.releaseUrl || ''; + const stats = releaseStats[activeTab]; + return ( +
+
+ {tags.map((tag, i) => ( +
+
{tag.title === 'Date' ? 'Release Date' : tag.title}
+
+ {tag.title === 'Date' && releaseUrl ? ( + {tag.label} + ) : tag.label} +
+
+ ))} + {/* Place counts are published per release and may not be ready + when the taxonomy is; the structural counts always are. */} + {stats && stats.uniqueCategories > 0 && ( + <> +
+
Total Places
+
+ {stats.totalPlaces > 0 ? ( + stats.totalPlaces.toLocaleString() + ) : ( + Not published + )} +
+
+
+
Categories
+
+ {stats.uniqueCategories.toLocaleString()} +
+
+
+
Basic Categories
+
+ {stats.uniqueBasicCategories.toLocaleString()} +
+
+ + )} +
+ {cfg?.downloads?.length > 0 && ( +
+
+
Download
+
+ {cfg.downloads.map(d => ( + + {d.label} + + ))} +
+
+
+ )} +
+ ); + })()} + setSearchTerm(e.target.value)} + /> + {view !== 'tree' ? ( +
+ {isLoading &&
Loading the {activeRelease?.label} taxonomy…
} + {loadError && ( +
+ Could not load the {activeRelease?.label} taxonomy ({loadError}). Try reloading the page. +
+ )} + {!isLoading && !loadError && ( + 0} + /> + )} +
+ ) : ( +
+ {isLoading && ( +
Loading the {activeRelease?.label} taxonomy…
+ )} + {loadError && ( +
+ Could not load the {activeRelease?.label} taxonomy ({loadError}). Try reloading the page. +
+ )} + {filteredTree.map(node => ( + + ))} + {filteredTree.length === 0 && !isLoading && !loadError && ( +
No categories match your search.
+ )} +
+ )} +
+
+ setSelected(null)} + /> +
+
+ ); +} diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx new file mode 100644 index 000000000..8049aad88 --- /dev/null +++ b/src/components/taxonomyViz.jsx @@ -0,0 +1,686 @@ +import { useState, useMemo, useCallback, useRef, useEffect } from 'react'; +import { hierarchy, partition } from 'd3-hierarchy'; +import { arc as d3arc } from 'd3-shape'; + +/** + * Sunburst view over the taxonomy tree. + * + * A radial partition of a d3 hierarchy. Selection and the detail panel are + * shared with the tree view in taxonomyBrowser. + * + * Colour is assigned relative to whatever is currently at the centre, not to the + * absolute top of the taxonomy: the children of the focused node each take a + * hue, and depth below them is lightness. Zooming into a branch therefore + * re-splits it into distinct families exactly as the root view splits the 13 + * top-level groups, instead of leaving the whole branch one flat colour. + * + * Every segment is drawn the same way; only selection changes a segment's + * outline. Basic categories are picked out by dimming everything else, via the + * highlight toggle — an extra outline competed with the colour families. + */ + +// Curated hues for the 13 top-level groups. These are the colours a reader sees +// most often, so they are pinned rather than generated. +const GROUP_HUES = { + arts_and_entertainment: 320, + community_and_government: 25, + cultural_and_historic: 45, + education: 265, + food_and_drink: 15, + geographic_entities: 150, + health_care: 350, + lifestyle_services: 285, + lodging: 200, + services_and_business: 220, + shopping: 175, + sports_and_recreation: 95, + travel_and_transportation: 240, +}; + +const FALLBACK_HUE = 210; + +/** + * Format a share for display. + * + * Shares are always named against a denominator at the call site, because the + * two figures in the detail panel are shares of different things. A bare + * percentage next to a count reads as "of everything", which for a 2,302 + * category taxonomy over 70M places is a column of zeroes. + */ +export function formatShare(part, whole) { + if (!whole || part == null) return null; + const pct = (part / whole) * 100; + if (pct > 0 && pct < 0.1) return '<0.1%'; + return `${pct.toFixed(1)}%`; +} + +/** + * Build a colour function for the currently focused subtree. + * + * `base` is the node at the centre; its children are the colour anchors. At the + * root those are the 13 groups and use the pinned hues; deeper in, hues are + * spread evenly around the wheel so any branch reads as distinct families. + */ +function buildColorScale(base, depthOffset) { + const anchors = base.children ?? []; + const atRoot = depthOffset === 0; + const hues = new Map(); + + anchors.forEach((child, i) => { + hues.set( + child.data.code, + atRoot + ? (GROUP_HUES[child.data.code] ?? FALLBACK_HUE) + : Math.round((i / Math.max(1, anchors.length)) * 360) + ); + }); + + const anchorDepth = depthOffset + 1; + const span = Math.max(1, base.height - 1); + + return (node, dimmed) => { + const anchor = node.ancestors().find(a => a.depth === anchorDepth); + const hue = hues.get(anchor?.data.code) ?? FALLBACK_HUE; + const t = Math.min(node.depth - anchorDepth, span) / span; + const saturation = dimmed ? 8 : 62 - t * 22; + const lightness = dimmed ? 88 : 42 + t * 34; + return `hsl(${hue} ${saturation}% ${lightness}%)`; + }; +} + +const MIN_SCALE = 0.5; +const MAX_SCALE = 12; + +const clamp = (v, lo, hi) => Math.min(hi, Math.max(lo, v)); + +/** + * Scale about a point, keeping whatever is under (px, py) pinned there. + * + * Exported because the focal-point arithmetic is the part that is easy to get + * subtly wrong — zooming that drifts is worse than no zoom at all. + */ +export function zoomAt(view, factor, px, py) { + const k = clamp(view.k * factor, MIN_SCALE, MAX_SCALE); + const applied = k / view.k; + return { + k, + x: px - (px - view.x) * applied, + y: py - (py - view.y) * applied, + }; +} + +const IDENTITY = { k: 1, x: 0, y: 0 }; + +// Floors rather than fixed sizes: the canvas fills whatever room it is given, +// but still renders something sane before the first measurement and in +// environments without ResizeObserver. +const MIN_CANVAS_WIDTH = 320; +const MIN_CANVAS_HEIGHT = 320; + +/** Track an element's rendered size so the canvas can fill its container. */ +function useElementSize() { + const ref = useRef(null); + const [size, setSize] = useState({ width: 0, height: 0 }); + + useEffect(() => { + const el = ref.current; + if (!el) return undefined; + + const measure = () => { + const rect = el.getBoundingClientRect(); + setSize({ width: rect.width, height: rect.height }); + }; + measure(); + + if (typeof ResizeObserver === 'undefined') { + window.addEventListener('resize', measure); + return () => window.removeEventListener('resize', measure); + } + const observer = new ResizeObserver(measure); + observer.observe(el); + return () => observer.disconnect(); + }, []); + + return [ + ref, + { + width: Math.max(size.width, MIN_CANVAS_WIDTH), + height: Math.max(size.height, MIN_CANVAS_HEIGHT), + }, + ]; +} + +/** + * Wheel-to-zoom and drag-to-pan over an SVG canvas. + * + * The wheel listener is attached manually because it must be non-passive to + * preventDefault, and React attaches wheel handlers passively. Panning uses + * pointer events so it covers touch as well as mouse; a drag that moved is + * swallowed on the capture phase so releasing after a pan does not also select + * whatever segment happens to be under the cursor. + */ +function useViewTransform() { + const [view, setView] = useState(IDENTITY); + const [panning, setPanning] = useState(false); + const stageRef = useRef(null); + const drag = useRef(null); + const moved = useRef(false); + + useEffect(() => { + const el = stageRef.current; + if (!el) return undefined; + const onWheel = event => { + event.preventDefault(); + const rect = el.getBoundingClientRect(); + setView(prev => + zoomAt(prev, Math.pow(1.0015, -event.deltaY), event.clientX - rect.left, event.clientY - rect.top) + ); + }; + el.addEventListener('wheel', onWheel, { passive: false }); + return () => el.removeEventListener('wheel', onWheel); + }, []); + + // Deliberately no setPointerCapture here. A captured pointer retargets the + // following `click` to the capturing element, so segment clicks would never + // reach the arcs — panning would work and selection would silently stop. + // Panning is tracked on the window instead, which also keeps a drag alive + // when the cursor leaves the canvas. + const onPointerDown = useCallback(event => { + if (event.button !== 0) return; + // The zoom controls sit inside the stage. Without this, pressing one starts + // a pan, and a few pixels of movement makes the click-swallow below eat the + // button's own click. + if (event.target.closest?.('button')) return; + drag.current = { x: event.clientX, y: event.clientY }; + moved.current = false; + }, []); + + useEffect(() => { + const onMove = event => { + const start = drag.current; + if (!start) return; + const dx = event.clientX - start.x; + const dy = event.clientY - start.y; + if (!moved.current && Math.abs(dx) + Math.abs(dy) > 5) { + moved.current = true; + setPanning(true); + } + drag.current = { x: event.clientX, y: event.clientY }; + setView(prev => ({ ...prev, x: prev.x + dx, y: prev.y + dy })); + }; + const onUp = () => { + drag.current = null; + setPanning(false); + }; + window.addEventListener('pointermove', onMove); + window.addEventListener('pointerup', onUp); + window.addEventListener('pointercancel', onUp); + return () => { + window.removeEventListener('pointermove', onMove); + window.removeEventListener('pointerup', onUp); + window.removeEventListener('pointercancel', onUp); + }; + }, []); + + // Capture phase: a click that ends a pan never reaches a segment. + const onClickCapture = useCallback(event => { + if (moved.current) { + event.stopPropagation(); + moved.current = false; + } + }, []); + + const zoomBy = useCallback(factor => { + const el = stageRef.current; + const rect = el?.getBoundingClientRect(); + const px = rect ? rect.width / 2 : 0; + const py = rect ? rect.height / 2 : 0; + setView(prev => zoomAt(prev, factor, px, py)); + }, []); + + const resetView = useCallback(() => setView(IDENTITY), []); + + return { + view, + stageRef, + zoomBy, + resetView, + isPanning: panning, + stageProps: { + ref: stageRef, + onPointerDown, + onClickCapture, + }, + }; +} + +/** + * Ring geometry for the sunburst. + * + * The centre is reserved as a hole: it holds the label, and when zoomed it is + * the click target for stepping back. Rings therefore start at the hole's edge, + * never at radius 0 — otherwise the focused node's own children are drawn + * underneath the back target and cannot be clicked. + */ +export function sunburstGeometry(radius, levelsBelow) { + const holeRadius = Math.max(46, radius * 0.2); + const ringCount = Math.max(1, levelsBelow); + const ringWidth = (radius - holeRadius) / ringCount; + return { + holeRadius, + ringWidth, + ringFor: rel => ({ + r0: holeRadius + (rel - 1) * ringWidth, + r1: holeRadius + rel * ringWidth, + }), + }; +} + +// Rough advance width per character as a fraction of font size, for the UI sans +// stack. Deliberately a slight over-estimate: wrapping a little early looks +// fine, overflowing the centre hole does not. +const CHAR_WIDTH_RATIO = 0.6; + +/** + * Break a label into lines that fit `maxWidth`. + * + * SVG text does not wrap, so the centre label has to be laid out by hand. There + * is no cheap way to measure text before paint — getComputedTextLength needs a + * rendered node — so this estimates from the font size instead. + * + * Breaks only ever happen at spaces. A single word longer than the line keeps + * its own line and overflows rather than being hyphenated. + */ +export function wrapLabel(text, maxWidth, fontSize, maxLines = 3) { + const words = String(text ?? '').split(/\s+/).filter(Boolean); + if (words.length === 0) return []; + + const maxChars = Math.max(4, Math.floor(maxWidth / (fontSize * CHAR_WIDTH_RATIO))); + const lines = []; + let line = ''; + + for (const word of words) { + const candidate = line ? `${line} ${word}` : word; + if (candidate.length <= maxChars) { + line = candidate; + continue; + } + if (line) lines.push(line); + + // A word wider than the line gets its own line and is allowed to overflow. + // Breaking it mid-word reads as a typo ("Profession-" / "al Service"), and + // a little spill over the ring is the lesser evil. + line = word; + } + if (line) lines.push(line); + + if (lines.length > maxLines) { + const kept = lines.slice(0, maxLines); + kept[maxLines - 1] = `${kept[maxLines - 1].slice(0, -1)}…`; + return kept; + } + return lines; +} + +/** + * Stretch one node's children across the whole of its arc. + * + * A node's size includes the places filed directly against it, so its children + * add up to less than it does and a partition leaves the difference empty. In + * the rings that gap is the point — it shows how much of a category sits at the + * category itself rather than below it. But once that node is at the centre, + * the centre already *is* those places, and the ring around it should be its + * children and nothing else. + * + * Applied to the focused node only, and to its whole subtree, so gaps deeper + * down are preserved in proportion. + */ +function expandChildrenToFill(node) { + const kids = node.children; + if (!kids?.length) return; + + const available = node.x1 - node.x0; + const used = kids[kids.length - 1].x1 - kids[0].x0; + if (Math.abs(used - available) < 1e-12) return; + + const origin = node.x0; + + // Every child is empty while the node itself is not. There is no ratio to + // scale by, so divide the circle evenly rather than draw nothing. + if (used <= 0) { + const each = available / kids.length; + kids.forEach((kid, i) => { + const x0 = origin + i * each; + kid.each(d => { + d.x0 = x0; + d.x1 = x0 + each; + }); + }); + return; + } + + const scale = available / used; + for (const kid of kids) { + kid.each(d => { + d.x0 = origin + (d.x0 - origin) * scale; + d.x1 = origin + (d.x1 - origin) * scale; + }); + } +} + +/** Wrap the browser's node shape in a d3 hierarchy, counting leaves for size. */ +function useLayout(treeChildren, sized) { + return useMemo(() => { + const root = hierarchy({ code: '__root__', displayName: 'Overture Places', children: treeChildren }); + + // Place counts are the honest weighting when we have them. Without counts, + // every leaf weighs 1 so arc size reflects how much taxonomy sits beneath a + // node rather than implying data we do not have. + // + // A node's own places count toward its size, so a category that holds most + // of its places directly is not shrunk to the size of its children. + if (sized) root.sum(d => d.leafCount ?? 0); + else root.count(); + + root.sort((a, b) => (b.value ?? 0) - (a.value ?? 0) || a.data.code.localeCompare(b.data.code)); + return root; + }, [treeChildren, sized]); +} + +function Tooltip({ node, x, y }) { + if (!node) return null; + // Ancestors only — the synthetic root off the front, the node itself off the + // end. Including the node repeated the title on its own line for a + // top-level category. + // Ancestors only — the synthetic root off the front, the node itself off the + // end, so the title is not repeated as its own breadcrumb. + const path = node.ancestors().reverse().slice(1, -1).map(n => n.data.displayName); + + // Same pair as the detail panel: a category's own places, and everything + // filed beneath it. They differ by orders of magnitude on a parent. + const direct = node.data.leafCount; + const total = node.data.totalCount; + const hasCounts = direct != null || total != null; + // Both figures as shares of the same thing — the category that contains this + // one. Spelling out a denominator per row would need about 570px at the + // widest, so the tooltip states it once and the percentages stay comparable + // to each other: own places against total, measured against the same whole. + const parentTotal = node.data.parentTotal; + const parentLabel = node.data.parentLabel; + const directShare = formatShare(direct ?? 0, parentTotal); + const totalShare = formatShare(total, parentTotal); + + return ( +
+
{node.data.displayName}
+ {path.length > 0 &&
{path.join(' › ')}
} +
+ {node.data.isBasic && Basic category} + {node.children + ? `${(node.descendants().length - 1).toLocaleString()} categories beneath` + : 'Leaf category'} +
+ {hasCounts && ( +
+
+ Places at this category + {(direct ?? 0).toLocaleString()} + {directShare && {directShare}} +
+ {total != null && total !== (direct ?? 0) && ( +
+ Including subcategories + {total.toLocaleString()} + {totalShare && {totalShare}} +
+ )} + {/* Names the denominator once, under the column it applies to. */} + {(directShare || totalShare) && parentLabel && ( +
of {parentLabel}
+ )} +
+ )} +
+ ); +} + +function ZoomControls({ zoomBy, resetView, view }) { + const atRest = Math.abs(view.k - 1) < 0.001 && view.x === 0 && view.y === 0; + return ( +
+ + + +
+ ); +} + +function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, selectedCode, matches, showBasicOnly }) { + // A sunburst is square; take the smaller axis and centre it. + const size = Math.min(width, height); + const radius = size / 2; + const laidOut = useMemo(() => { + const copy = root.copy(); + partition().size([2 * Math.PI, radius])(copy); + // Only the node at the centre gets its children stretched to fill; every + // other ring keeps the gap that represents places held at that category. + if (focus) { + const target = copy.descendants().find(d => d.data.code === focus); + if (target) expandChildrenToFill(target); + } + return copy; + }, [root, radius, focus]); + + const [hover, setHover] = useState(null); + const [pointer, setPointer] = useState({ x: 0, y: 0 }); + const { view, stageProps, zoomBy, resetView, isPanning } = useViewTransform(); + + // Drilling into a branch re-draws the whole canvas, so a pan from the previous + // view would leave the new one off-centre. + useEffect(() => resetView(), [focus, resetView]); + + // Drilling re-projects angles relative to the focused branch rather than + // re-running the layout, so the ring structure stays stable while zoomed. + const focused = useMemo( + () => (focus ? (laidOut.descendants().find(d => d.data.code === focus) ?? null) : null), + [laidOut, focus] + ); + + const base = focused ?? laidOut; + const depthOffset = base.depth; + const spanStart = base.x0; + const span = base.x1 - base.x0 || 2 * Math.PI; + const { holeRadius, ringFor } = sunburstGeometry(radius, laidOut.height - depthOffset); + const colorOf = useMemo(() => buildColorScale(base, depthOffset), [base, depthOffset]); + + const arcGen = d3arc() + .startAngle(d => d.a0) + .endAngle(d => d.a1) + .padAngle(0.0015) + .innerRadius(d => d.r0) + .outerRadius(d => Math.max(d.r0, d.r1 - 1)); + + const segments = base + .descendants() + .filter(d => d.depth > depthOffset) + .map(d => { + const a0 = ((d.x0 - spanStart) / span) * 2 * Math.PI; + const a1 = ((d.x1 - spanStart) / span) * 2 * Math.PI; + const rel = d.depth - depthOffset; + return { d, a0, a1, ...ringFor(rel) }; + }) + .filter(s => s.a1 - s.a0 > 0.0009); + + const label = base.data.displayName; + const beneath = base.descendants().length - 1; + + // Lay the centre label out to fit inside the hole. 1.6r rather than the full + // 2r diameter, since lines away from the centre line have less room in a + // circle and the text should not touch the ring. + const labelSize = 13; + const labelLines = wrapLabel(label, holeRadius * 1.6, labelSize); + const lineHeight = labelSize * 1.15; + const blockHeight = labelLines.length * lineHeight + 12; + const firstLineY = -blockHeight / 2 + labelSize; + + // Always shown. It used to be dropped when the hole was too narrow at its + // baseline, but a count that comes and goes depending on how the title + // happened to wrap is more confusing than one that overhangs the ring. + const subText = `${beneath.toLocaleString()} categories`; + const subY = firstLineY + labelLines.length * lineHeight + 2; + + return ( +
setPointer({ x: e.clientX, y: e.clientY })} + {...stageProps} + > + + + + + {segments.map(seg => { + const { d } = seg; + const code = d.data.code; + const isMatch = !matches || matches.has(code); + const passesBasic = !showBasicOnly || d.data.isBasic; + const dimmed = !isMatch || !passesBasic; + const isSelected = code === selectedCode; + // Every segment carries the same hairline weight. A heavier stroke + // on basic categories thickened with the viewport zoom and swamped + // the thin outer arcs, so any distinction is colour alone. + return ( + setHover(d)} + onMouseLeave={() => setHover(null)} + onClick={() => { + onSelect(code); + if (d.children) onZoomIn(code); + }} + /> + ); + })} + {focused && ( + + Back to the previous view + + )} + + {labelLines.map((line, i) => ( + // The trailing space keeps the element's text content readable as + // one string for assistive tech; SVG trims it when rendering. + + {i < labelLines.length - 1 ? `${line} ` : line} + + ))} + + + {subText} + + + + + +
+ ); +} + +export default function TaxonomyViz({ treeChildren, onSelect, selectedCode, matches, hasCounts }) { + // A stack rather than a single focus, so Back returns to the view you came + // from. Clicking a sibling branch and then Back should not jump to a parent + // you were never looking at. + const [focusStack, setFocusStack] = useState([]); + const [showBasicOnly, setShowBasicOnly] = useState(false); + // Off by default. Place counts are heavily skewed — a handful of categories + // hold most of the places — so weighting by them collapses the majority of + // the taxonomy to slivers too thin to draw. Structure first; volume on ask. + const [sizeByCount, setSizeByCount] = useState(false); + const [canvasRef, canvas] = useElementSize(); + const root = useLayout(treeChildren, hasCounts && sizeByCount); + + const focus = focusStack.length > 0 ? focusStack[focusStack.length - 1] : null; + const zoomIn = useCallback(code => { + setFocusStack(stack => (stack[stack.length - 1] === code ? stack : [...stack, code])); + }, []); + const goBack = useCallback(() => setFocusStack(stack => stack.slice(0, -1)), []); + const resetZoom = useCallback(() => setFocusStack([]), []); + const handleSelect = useCallback(code => onSelect(code), [onSelect]); + + if (!treeChildren || treeChildren.length === 0) { + return
Loading the taxonomy…
; + } + + const shared = { + root, + focus, + onZoomIn: zoomIn, + onBack: goBack, + onSelect: handleSelect, + selectedCode, + matches, + showBasicOnly, + }; + + return ( +
+
+ + + + {hasCounts && ( + + )} +
+
+ +
+

+ Click a segment to drill in; the centre or Back steps out. Scroll to zoom, + drag to pan. Segments are sized by how much taxonomy sits beneath them + {hasCounts ? ', unless you size by place count' : ''}. +

+
+ ); +} diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 352b2c68d..717842b75 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -2,11 +2,22 @@ display: flex; border: 1px solid var(--ifm-color-emphasis-200); border-radius: 6px; - height: 700px; + /* Tall enough that six rings of taxonomy are legible, but always leaving + some page visible so it doesn't read as a broken full-screen takeover. */ + height: min(82vh, 940px); + min-height: 560px; background: var(--ifm-background-color); font-family: var(--ifm-font-family-base); } +/* The docs column is sized for prose, so the browser reclaims the article's + horizontal padding. It deliberately stops there: sizing from the viewport + would risk a horizontal scrollbar on narrower layouts. */ +.taxonomy-browser--viz { + width: calc(100% + 2 * var(--ifm-spacing-horizontal, 1rem)); + margin-left: calc(-1 * var(--ifm-spacing-horizontal, 1rem)); +} + .taxonomy-browser-left { flex: 1; border-right: 1px solid var(--ifm-color-emphasis-200); @@ -28,26 +39,23 @@ .taxonomy-browser-header { display: flex; align-items: center; - padding: 12px 16px 8px; - gap: 10px; + padding: 8px 12px 6px; + gap: 8px; } -.taxonomy-browser-header-label { - font-size: 0.78em; - font-weight: 500; - color: var(--ifm-color-emphasis-500); - white-space: nowrap; - flex-shrink: 0; +.taxonomy-browser-header .taxonomy-browser-select { + flex: 1 1 auto; + min-width: 0; } .taxonomy-browser-select { flex: 1; - padding: 8px 12px; + padding: 8px 10px; border: 1px solid var(--ifm-color-emphasis-300); border-radius: 4px; background: var(--ifm-background-color); color: var(--ifm-font-color-base); - font-size: 0.9em; + font-size: 0.82em; font-weight: 500; font-family: var(--ifm-font-family-base); cursor: pointer; @@ -62,32 +70,41 @@ /* Info rows (left panel, between dropdown and search) */ .taxonomy-info-rows { - padding: 0 16px 8px; + padding: 0 12px 6px; border-top: 1px solid var(--ifm-color-emphasis-200); - margin-top: 4px; + margin-top: 2px; } .taxonomy-info-row { - display: grid; - grid-template-columns: 1fr 1fr 1fr; - gap: 4px; - padding: 8px 0 0; + display: flex; + flex-wrap: wrap; + align-items: baseline; + gap: 2px 14px; + padding: 6px 0 0; } .taxonomy-info-cell { - text-align: center; + display: flex; + align-items: baseline; + gap: 5px; + min-width: 0; +} + +.taxonomy-info-cell--downloads { + flex-wrap: wrap; } .taxonomy-info-label { - font-size: 0.72em; + font-size: 0.68em; color: var(--ifm-color-emphasis-500); font-weight: 500; - margin-bottom: 2px; + white-space: nowrap; } .taxonomy-info-value { - font-size: 0.8em; + font-size: 0.76em; color: var(--ifm-font-color-base); + white-space: nowrap; } .taxonomy-info-value a { @@ -99,22 +116,51 @@ text-decoration: underline; } -.taxonomy-section-note { - font-size: 0.85em; - color: var(--ifm-color-emphasis-600); - font-style: italic; - margin: 6px 0 8px; +.taxonomy-info-value--muted { + color: var(--ifm-color-emphasis-500); +} + +/* The download row holds a variable number of links, so it spans the full + width instead of sitting in the three-column stats grid above it. */ +.taxonomy-download-row { + padding-top: 4px; +} + +.taxonomy-download-links { + display: flex; + flex-wrap: wrap; + gap: 4px; +} + +.taxonomy-download-link { + font-size: 0.7em; + padding: 2px 8px; + border: 1px solid var(--ifm-color-emphasis-300); + border-radius: 4px; + color: var(--ifm-color-primary); + text-decoration: none; + white-space: nowrap; +} + +.taxonomy-download-link:hover { + border-color: var(--ifm-color-primary); + background: var(--ifm-color-emphasis-100); + text-decoration: none; } /* Search */ +/* Sized to sit with the release select above it: the two are the same control + row visually, so they share a type size and box height. */ .taxonomy-browser-search { display: block; - width: calc(100% - 32px); - margin: 0 16px 8px; - padding: 14px 12px; + width: calc(100% - 24px); + margin: 0 12px 6px; + padding: 8px 10px; border: 1px solid var(--ifm-color-emphasis-300); border-radius: 4px; - font-size: 0.95em; + font-size: 0.82em; + line-height: 1.25; + font-family: var(--ifm-font-family-base); background: var(--ifm-background-color); color: var(--ifm-font-color-base); outline: none; @@ -209,380 +255,418 @@ /* Detail panel - selected */ .taxonomy-detail { width: 100%; + position: relative; } -/* Breadcrumb */ -.taxonomy-detail-breadcrumb { - margin-bottom: 4px; - font-size: 0.9em; - display: inline; -} - -.taxonomy-detail-crumb { - color: var(--ifm-color-primary); - font-weight: 500; +/* Sits in the panel's top-right corner; the heading is padded to clear it. */ +.taxonomy-detail-clear { + position: absolute; + top: 0; + right: 0; + width: 24px; + height: 24px; + display: flex; + align-items: center; + justify-content: center; + padding: 0; + border: 1px solid transparent; + border-radius: 4px; + background: none; + color: var(--ifm-color-emphasis-600); + font-size: 1.1em; + line-height: 1; + cursor: pointer; } -.taxonomy-detail-arrow { +.taxonomy-detail-clear:hover { + border-color: var(--ifm-color-emphasis-300); color: var(--ifm-font-color-base); - font-weight: 700; - font-size: 1.1em; - margin: 0 2px; } .taxonomy-detail-name { font-size: 1.8em; font-weight: 600; margin: 4px 0 12px; + padding-right: 28px; } -/* Level + Basic Category on same line */ -.taxonomy-detail-meta { - display: flex; - align-items: center; - gap: 12px; - flex-wrap: wrap; -} - -.taxonomy-detail-level { - background: var(--ifm-color-emphasis-200); - padding: 3px 10px; - border-radius: 4px; - font-size: 0.85em; - font-family: var(--ifm-font-family-monospace); -} - -.taxonomy-detail-basic-inline { - font-size: 0.9em; - color: var(--ifm-color-emphasis-700); +/* Collapsible sections in detail panel */ +.taxonomy-detail-sections { + margin-top: 16px; + border-top: 1px solid var(--ifm-color-emphasis-200); + padding-top: 8px; } -.taxonomy-detail-basic-inline code { +.taxonomy-section-body { font-size: 0.9em; } -.taxonomy-detail-badge { - display: inline-block; - padding: 3px 10px; - background: var(--ifm-color-primary-lightest); - color: var(--ifm-color-primary-darkest); - border-radius: 4px; - font-size: 0.8em; - font-weight: 500; +/* Key:value pairs (inside section content) */ +.taxonomy-kv-list { + display: flex; + flex-direction: column; + gap: 0; } -/* POI count row */ -.taxonomy-detail-poi-row { - margin-top: 12px; - font-size: 0.95em; +.taxonomy-kv-item { + display: flex; + align-items: baseline; + gap: 0; + padding: 4px 0; } -.taxonomy-detail-pct { - color: var(--ifm-color-emphasis-500); +.taxonomy-kv-label { + color: var(--ifm-color-emphasis-600); font-size: 0.9em; + font-weight: 400; + text-align: left; + flex-shrink: 0; + white-space: nowrap; } -/* Cross-reference section (old/new taxonomy comparison) */ -.taxonomy-detail-crossref { - margin-top: 24px; - padding-top: 16px; - border-top: 1px solid var(--ifm-color-emphasis-200); -} - -.taxonomy-detail-crossref h4 { - font-size: 0.95em; - font-weight: 600; - margin: 0 0 12px; - color: var(--ifm-color-emphasis-800); +.taxonomy-kv-label::after { + content: ':'; + margin-right: 12px; } -.taxonomy-detail-crossref-row { - display: flex; - align-items: baseline; - gap: 8px; - margin-bottom: 8px; +.taxonomy-kv-value { + color: var(--ifm-color-emphasis-700); font-size: 0.9em; } -.taxonomy-detail-crossref-label { - color: var(--ifm-color-emphasis-600); - font-weight: 500; - flex-shrink: 0; +/* A count and its share sit under their label rather than beside it. The label + does not wrap or shrink, and at this panel width the pair needs ~300px on one + line — so side by side it either wraps mid-parenthetical or scrolls + sideways. Stacked, the value has around 100px to spare. */ +.taxonomy-kv-item--stacked { + flex-direction: column; + align-items: flex-start; + gap: 1px; } -.taxonomy-detail-crossref-row code { - font-size: 0.9em; +.taxonomy-kv-value--numeric { + font-variant-numeric: tabular-nums; + color: var(--ifm-font-color-base); } -.taxonomy-detail-crossref-note { - font-size: 0.9em; - color: var(--ifm-color-emphasis-500); - font-style: italic; - margin: 0; +.taxonomy-kv-value--selected { + font-weight: 600; + color: var(--ifm-color-primary); } -/* Mappings table - grey style (Basic Level) */ -.taxonomy-mappings-grey-table { - width: 100%; - margin-top: 12px; - border-collapse: collapse; +/* Percentile tags */ +.taxonomy-pct-tag { + display: inline-block; + padding: 2px 8px; + border-radius: 3px; font-size: 0.8em; - border: 1px solid var(--ifm-color-emphasis-200); - border-radius: 4px; - color: var(--ifm-color-emphasis-500); + font-weight: 600; } -.taxonomy-mappings-grey-table th { - padding: 4px 8px; - text-align: center; - font-weight: 600; - font-size: 0.9em; - background: var(--ifm-color-emphasis-100); - border-bottom: 1px solid var(--ifm-color-emphasis-200); - border-right: 1px solid var(--ifm-color-emphasis-200); - color: var(--ifm-color-emphasis-500); +.taxonomy-pct-top { + background: #d4edda; + color: #155724; } -.taxonomy-mappings-grey-table th:last-child { - border-right: none; +.taxonomy-pct-bottom { + background: #f8d7da; + color: #721c24; } -.taxonomy-mappings-grey-table td { - padding: 4px 8px; - text-align: center; - border-bottom: 1px solid var(--ifm-color-emphasis-100); - border-right: 1px solid var(--ifm-color-emphasis-200); - color: var(--ifm-color-emphasis-500); +/* --------------------------------------------------------------------------- + Visualization views + --------------------------------------------------------------------------- */ + +/* The tree is a list and reads fine at half width; a partition layout needs the + room, so the split shifts in favour of the canvas when a viz view is active. */ +.taxonomy-browser--viz .taxonomy-browser-left { + max-width: none; + flex: 1; } -.taxonomy-mappings-grey-table td:last-child { - border-right: none; +/* The detail panel is a reference column, not a second canvas: fix it narrow so + every extra pixel of window goes to the sunburst. */ +.taxonomy-browser--viz .taxonomy-browser-right { + flex: 0 0 264px; + padding: 12px; } -.taxonomy-mappings-grey-table tr:last-child td { - border-bottom: none; +.taxonomy-view-switch { + display: flex; + gap: 4px; + flex: 0 0 auto; } -/* Mappings table (Tab 2) */ -.taxonomy-mappings-table { - margin-top: 8px; - max-height: 400px; - overflow-y: auto; - border: 1px solid var(--ifm-color-emphasis-200); +.taxonomy-view-button { + flex: 0 0 auto; + padding: 4px 10px; + font-size: 0.76em; + font-family: var(--ifm-font-family-base); + color: var(--ifm-color-emphasis-700); + background: var(--ifm-background-color); + border: 1px solid var(--ifm-color-emphasis-300); border-radius: 4px; + cursor: pointer; } -.taxonomy-mappings-header { - display: grid; - grid-template-columns: 90px 1fr 1fr; - gap: 8px; - padding: 8px 12px; - background: var(--ifm-color-emphasis-100); - font-size: 0.8em; - font-weight: 600; - color: var(--ifm-color-emphasis-700); - text-transform: uppercase; - letter-spacing: 0.03em; - border-bottom: 1px solid var(--ifm-color-emphasis-200); - position: sticky; - top: 0; +.taxonomy-view-button:hover { + border-color: var(--ifm-color-primary); } -.taxonomy-mappings-row { - display: grid; - grid-template-columns: 90px 1fr 1fr; - gap: 8px; - padding: 6px 12px; - font-size: 0.85em; - border-bottom: 1px solid var(--ifm-color-emphasis-100); - align-items: baseline; +.taxonomy-view-button--active { + background: var(--ifm-color-primary); + border-color: var(--ifm-color-primary); + color: var(--ifm-color-white, #fff); } -.taxonomy-mappings-row:last-child { - border-bottom: none; +.taxonomy-browser-viz { + flex: 1; + min-height: 0; + overflow: hidden; + padding: 8px 12px 12px; + display: flex; + flex-direction: column; } -.taxonomy-mappings-row code { - font-size: 0.9em; - word-break: break-word; +.taxonomy-viz { + display: flex; + flex-direction: column; + align-items: stretch; + gap: 8px; + height: 100%; + min-height: 0; } -.taxonomy-mappings-hierarchy { - font-size: 0.85em; +.taxonomy-viz-canvas { + flex: 1; + min-height: 0; + display: flex; + justify-content: center; } -.taxonomy-mappings-hierarchy .taxonomy-detail-breadcrumb { - margin-bottom: 0; +.taxonomy-viz-controls { + display: flex; + align-items: center; + gap: 12px; + align-self: stretch; + flex-wrap: wrap; } -/* Match type badges */ -.taxonomy-match-exact { - display: inline-block; - padding: 2px 8px; - border-radius: 3px; +.taxonomy-viz-toggle { + display: inline-flex; + align-items: center; + gap: 6px; font-size: 0.8em; - font-weight: 600; - background: #d4edda; - color: #155724; + color: var(--ifm-color-emphasis-700); + cursor: pointer; + user-select: none; } -.taxonomy-match-close { - display: inline-block; - padding: 2px 8px; - border-radius: 3px; - font-size: 0.8em; - font-weight: 600; - background: #fff3cd; - color: #856404; +/* A default checkbox renders around 13px whatever the label size, and carries + its own margins — which land on top of the flex gap and read as the label + drifting away from the box. */ +.taxonomy-viz-toggle input[type='checkbox'] { + flex: 0 0 auto; + width: 15px; + height: 15px; + margin: 0; + accent-color: var(--ifm-color-primary); + cursor: pointer; } -.taxonomy-match-narrower { - display: inline-block; - padding: 2px 8px; - border-radius: 3px; - font-size: 0.8em; - font-weight: 600; - background: var(--ifm-color-emphasis-200); - color: var(--ifm-color-emphasis-700); +.taxonomy-viz-nav { + font-size: 0.74em; + padding: 2px 9px; + border: 1px solid var(--ifm-color-emphasis-300); + border-radius: 4px; + background: var(--ifm-background-color); + color: var(--ifm-color-primary); + cursor: pointer; } -/* Cross-reference groups (Tab 3) */ -.taxonomy-detail-crossref-group { - padding: 8px 0; - border-bottom: 1px solid var(--ifm-color-emphasis-100); +.taxonomy-viz-nav:hover:not(:disabled) { + border-color: var(--ifm-color-primary); } -.taxonomy-detail-crossref-group:last-child { - border-bottom: none; +.taxonomy-viz-nav:disabled { + color: var(--ifm-color-emphasis-400); + cursor: default; } -/* Collapsible sections in detail panel */ -.taxonomy-detail-sections { - margin-top: 16px; - border-top: 1px solid var(--ifm-color-emphasis-200); - padding-top: 8px; +.taxonomy-viz-stage { + position: relative; + flex: 1; + min-height: 0; } -.taxonomy-collapsible { - border-bottom: 1px solid var(--ifm-color-emphasis-200); +.taxonomy-viz-arc { + cursor: pointer; } -.taxonomy-collapsible:last-child { - border-bottom: none; +.taxonomy-viz-arc:hover { + filter: brightness(1.12); } -.taxonomy-collapsible-header { - display: flex; - align-items: center; - gap: 6px; - width: 100%; - padding: 10px 4px; - border: none; - background: transparent; - color: var(--ifm-font-color-base); - font-size: 1.1em; - font-weight: 400; +.taxonomy-viz-center { + fill: var(--ifm-background-color); cursor: pointer; - font-family: var(--ifm-font-family-base); - transition: color 0.15s; } -.taxonomy-collapsible-header:hover { - color: var(--ifm-color-primary); +/* Size is set on the element so the wrap calculation and the rendering agree. */ +.taxonomy-viz-center-label { + font-weight: 600; + fill: var(--ifm-font-color-base); + pointer-events: none; } -.taxonomy-no-match-tag { - display: inline-block; - padding: 1px 8px; - border-radius: 3px; - font-size: 0.75em; - font-weight: 400; - background: #f8d7da; - color: #721c24; - margin-left: 4px; +.taxonomy-viz-center-sub { + font-size: 10px; + fill: var(--ifm-color-emphasis-600); + pointer-events: none; } -.taxonomy-collapsible-chevron { - font-size: 0.75em; +.taxonomy-viz-hint { + font-size: 0.74em; + color: var(--ifm-color-emphasis-600); + text-align: center; + margin: 0; + max-width: 46em; +} + +.taxonomy-viz-empty { + padding: 40px 16px; + text-align: center; color: var(--ifm-color-emphasis-500); - width: 14px; - flex-shrink: 0; + font-size: 0.85em; } -.taxonomy-collapsible-content { - padding: 0 4px 12px 20px; +.taxonomy-viz-tooltip { + position: fixed; + z-index: 200; + pointer-events: none; + max-width: 320px; + padding: 6px 10px; + border-radius: 5px; + background: var(--ifm-color-emphasis-900, #1b1b1d); + color: var(--ifm-color-emphasis-0, #fff); + font-size: 0.74rem; + line-height: 1.4; + box-shadow: 0 4px 14px rgb(0 0 0 / 25%); } -.taxonomy-section-body { +.taxonomy-viz-tooltip-name { + font-weight: 600; +} + +.taxonomy-viz-tooltip-path { + opacity: 0.72; + font-size: 0.92em; + margin-top: 1px; +} + +.taxonomy-viz-tooltip-meta { + margin-top: 4px; + opacity: 0.82; font-size: 0.9em; } -/* Key:value pairs (inside section content) */ -.taxonomy-kv-list { +/* Names the denominator once, under the percentage column. */ +.taxonomy-viz-tooltip-share { + justify-content: flex-end; + opacity: 0.7; + margin-top: 2px; + font-size: 0.92em; +} + +.taxonomy-viz-tooltip-counts { + margin-top: 5px; + padding-top: 5px; + border-top: 1px solid rgb(255 255 255 / 20%); display: flex; flex-direction: column; - gap: 0; + gap: 2px; + font-size: 0.9em; } -.taxonomy-kv-item { +.taxonomy-viz-tooltip-counts div { display: flex; align-items: baseline; - gap: 0; - padding: 4px 0; + gap: 10px; } -.taxonomy-kv-label { - color: var(--ifm-color-emphasis-600); - font-size: 0.9em; - font-weight: 400; - text-align: left; - flex-shrink: 0; +/* Label takes the slack; the two figures hold their own right-aligned columns + so counts and percentages each line up down the block. */ +.taxonomy-viz-tooltip-counts span:first-child { + flex: 1; + opacity: 0.75; white-space: nowrap; } -.taxonomy-kv-label::after { - content: ':'; - margin-right: 12px; +.taxonomy-viz-tooltip-num { + min-width: 4.6em; + text-align: right; + font-variant-numeric: tabular-nums; } -.taxonomy-kv-value { - color: var(--ifm-color-emphasis-700); +.taxonomy-viz-tooltip-pct { + min-width: 2.9em; + text-align: right; + font-variant-numeric: tabular-nums; + opacity: 0.85; +} + +.taxonomy-viz-basic-chip { + display: inline-block; + margin-right: 6px; + padding: 0 5px; + border: 1px solid currentcolor; + border-radius: 3px; font-size: 0.9em; } -.taxonomy-kv-value--selected { - font-weight: 600; - color: var(--ifm-color-primary); +/* Viewport zoom and pan. The stage clips, so panned content does not spill + over the surrounding chrome. */ +.taxonomy-viz-stage { + overflow: hidden; + cursor: grab; + touch-action: none; } -/* Percentile tags */ -.taxonomy-pct-tag { - display: inline-block; - padding: 2px 8px; - border-radius: 3px; - font-size: 0.8em; - font-weight: 600; +.taxonomy-viz-stage--panning { + cursor: grabbing; } -.taxonomy-pct-top { - background: #d4edda; - color: #155724; +.taxonomy-viz-zoom { + position: absolute; + top: 6px; + right: 6px; + z-index: 5; + display: flex; + flex-direction: column; + gap: 3px; } -.taxonomy-pct-bottom { - background: #f8d7da; - color: #721c24; +.taxonomy-viz-zoom button { + width: 26px; + height: 26px; + display: flex; + align-items: center; + justify-content: center; + font-size: 0.9em; + line-height: 1; + border: 1px solid var(--ifm-color-emphasis-300); + border-radius: 4px; + background: var(--ifm-background-color); + color: var(--ifm-color-emphasis-800); + cursor: pointer; } -/* Change indicators (↑/↓ percentages in summary table) */ -.taxonomy-change-up { - color: #1a8a3f; - font-size: 0.85em; - font-weight: 600; +.taxonomy-viz-zoom button:hover:not(:disabled) { + border-color: var(--ifm-color-primary); + color: var(--ifm-color-primary); } -.taxonomy-change-down { - color: #c0392b; - font-size: 0.85em; - font-weight: 600; +.taxonomy-viz-zoom button:disabled { + color: var(--ifm-color-emphasis-400); + cursor: default; } diff --git a/static/taxonomy/2026-09-23.0/basic_categories.csv b/static/taxonomy/2026-09-23.0/basic_categories.csv new file mode 100644 index 000000000..34f6581e6 --- /dev/null +++ b/static/taxonomy/2026-09-23.0/basic_categories.csv @@ -0,0 +1,299 @@ +basic_category,display_name,taxonomy,level +arts_and_entertainment,Arts and Entertainment,arts_and_entertainment,0 +amusement_attraction,Amusement Attraction,arts_and_entertainment > amusement_attraction,1 +amusement_park,Amusement Park,arts_and_entertainment > amusement_attraction > amusement_park,2 +animal_attraction,Animal Attraction,arts_and_entertainment > animal_attraction,1 +aquarium,Aquarium,arts_and_entertainment > animal_attraction > aquarium,2 +zoo,Zoo,arts_and_entertainment > animal_attraction > zoo,2 +arts_and_crafts_space,Arts and Crafts Space,arts_and_entertainment > arts_and_crafts_space,1 +art_gallery,Art Gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,2 +sculpture_statue,Sculpture Statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,2 +street_art,Street Art,arts_and_entertainment > arts_and_crafts_space > street_art,2 +event_venue,Event Venue,arts_and_entertainment > event_venue,1 +festival_venue,Festival Venue,arts_and_entertainment > festival_venue,1 +fairgrounds,Fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,2 +gaming_venue,Gaming Venue,arts_and_entertainment > gaming_venue,1 +arcade,Arcade,arts_and_entertainment > gaming_venue > arcade,2 +casino,Casino,arts_and_entertainment > gaming_venue > casino,2 +movie_theater,Movie Theater,arts_and_entertainment > movie_theater,1 +museum,Museum,arts_and_entertainment > museum,1 +nightlife_venue,Nightlife Venue,arts_and_entertainment > nightlife_venue,1 +adult_entertainment_venue,Adult Entertainment Venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,2 +dance_club,Dance Club,arts_and_entertainment > nightlife_venue > dance_club,2 +performing_arts_venue,Performing Arts Venue,arts_and_entertainment > performing_arts_venue,1 +comedy_club,Comedy Club,arts_and_entertainment > performing_arts_venue > comedy_club,2 +music_venue,Music Venue,arts_and_entertainment > performing_arts_venue > music_venue,2 +theatre_venue,Theatre Venue,arts_and_entertainment > performing_arts_venue > theatre_venue,2 +rural_attraction,Rural Attraction,arts_and_entertainment > rural_attraction,1 +rodeo,Rodeo,arts_and_entertainment > rural_attraction > rodeo,2 +science_attraction,Science Attraction,arts_and_entertainment > science_attraction,1 +makerspace,Makerspace,arts_and_entertainment > science_attraction > makerspace,2 +planetarium,Planetarium,arts_and_entertainment > science_attraction > planetarium,2 +social_club,Social Club,arts_and_entertainment > social_club,1 +country_club,Country Club,arts_and_entertainment > social_club > country_club,2 +spiritual_advising,Spiritual Advising,arts_and_entertainment > spiritual_advising,1 +astrological_advising,Astrological Advising,arts_and_entertainment > spiritual_advising > astrological_advising,2 +psychic_advising,Psychic Advising,arts_and_entertainment > spiritual_advising > psychic_advising,2 +stadium_arena,Stadium Arena,arts_and_entertainment > stadium_arena,1 +ticket_office_or_booth,Ticket Office or Booth,arts_and_entertainment > ticket_office_or_booth,1 +community_and_government,Community and Government,community_and_government,0 +civic_organization,Civic Organization,community_and_government > civic_organization,1 +civic_center,Civic Center,community_and_government > civic_organization > civic_center,2 +labor_union,Labor Union,community_and_government > civic_organization > labor_union,2 +political_organization,Political Organization,community_and_government > civic_organization > political_organization,2 +government_office,Government Office,community_and_government > government_office,1 +courthouse,Courthouse,community_and_government > government_office > courthouse,2 +embassy,Embassy,community_and_government > government_office > embassy,2 +government_department,Government Department,community_and_government > government_office > government_department,2 +military_site,Military Site,community_and_government > military_site,1 +military_base,Military Base,community_and_government > military_site > military_base,2 +military_office,Military Office,community_and_government > military_site > military_office,2 +public_facility,Public Facility,community_and_government > public_facility,1 +public_fountain,Public Fountain,community_and_government > public_facility > public_fountain,2 +public_pathway,Public Pathway,community_and_government > public_facility > public_pathway,2 +public_plaza,Public Plaza,community_and_government > public_facility > public_plaza,2 +public_restroom,Public Restroom,community_and_government > public_facility > public_restroom,2 +public_safety_service,Public Safety Service,community_and_government > public_safety_service,1 +fire_station,Fire Station,community_and_government > public_safety_service > fire_station,2 +jail_or_prison,Jail or Prison,community_and_government > public_safety_service > jail_or_prison,2 +police_station,Police Station,community_and_government > public_safety_service > police_station,2 +public_utility,Public Utility,community_and_government > public_utility,1 +electric_utility_provider,Electric Utility Provider,community_and_government > public_utility > electric_utility_provider,2 +natural_gas_utility_provider,Natural Gas Utility Provider,community_and_government > public_utility > natural_gas_utility_provider,2 +water_utility_provider,Water Utility Provider,community_and_government > public_utility > water_utility_provider,2 +social_or_community_service,Social or Community Service,community_and_government > social_or_community_service,1 +community_center,Community Center,community_and_government > social_or_community_service > community_center,2 +food_bank,Food Bank,community_and_government > social_or_community_service > food_bank,2 +youth_organization,Youth Organization,community_and_government > social_or_community_service > youth_organization,2 +cultural_and_historic,Cultural and Historic,cultural_and_historic,0 +cultural_center,Cultural Center,cultural_and_historic > cultural_center,1 +historic_site,Historic Site,cultural_and_historic > historic_site,1 +castle,Castle,cultural_and_historic > historic_site > castle,2 +fort,Fort,cultural_and_historic > historic_site > fort,2 +lighthouse,Lighthouse,cultural_and_historic > historic_site > lighthouse,2 +memorial_site,Memorial Site,cultural_and_historic > memorial_site,1 +cemetery,Cemetery,cultural_and_historic > memorial_site > cemetery,2 +monument,Monument,cultural_and_historic > memorial_site > monument,2 +place_of_worship,Place of Worship,cultural_and_historic > place_of_worship,1 +buddhist_place_of_worship,Buddhist Place of Worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,2 +christian_place_of_worship,Christian Place of Worship,cultural_and_historic > place_of_worship > christian_place_of_worship,2 +hindu_place_of_worship,Hindu Place of Worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,2 +jewish_place_of_worship,Jewish Place of Worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,2 +muslim_place_of_worship,Muslim Place of Worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,2 +religious_landmark,Religious Landmark,cultural_and_historic > religious_landmark,1 +religious_organization,Religious Organization,cultural_and_historic > religious_organization,1 +religious_retreat_or_center,Religious Retreat or Center,cultural_and_historic > religious_retreat_or_center,1 +education,Education,education,0 +education_office,Education Office,education > education_office,1 +school_district_office,School District Office,education > education_office > school_district_office,2 +educational_facility,Educational Facility,education > educational_facility,1 +campus,Campus,education > educational_facility > campus,2 +campus_building,Campus Building,education > educational_facility > campus_building,2 +educational_service,Educational Service,education > educational_service,1 +tutoring_service,Tutoring Service,education > educational_service > tutoring_service,2 +library,Library,education > library,1 +place_of_learning,Place of Learning,education > place_of_learning,1 +academy,Academy,education > place_of_learning > academy,2 +class_venue,Class Venue,education > place_of_learning > class_venue,2 +college_university,College University,education > place_of_learning > college_university,2 +elementary_school,Elementary School,education > place_of_learning > school > elementary_school,3 +high_school,High School,education > place_of_learning > school > high_school,3 +kindergarten,Kindergarten,education > place_of_learning > school > kindergarten,3 +middle_school,Middle School,education > place_of_learning > school > middle_school,3 +preschool,Preschool,education > place_of_learning > school > preschool,3 +specialty_school,Specialty School,education > place_of_learning > specialty_school,2 +research_institute,Research Institute,education > research_institute,1 +food_and_drink,Food and Drink,food_and_drink,0 +alcoholic_beverage_venue,Alcoholic Beverage Venue,food_and_drink > alcoholic_beverage_venue,1 +bar,Bar,food_and_drink > alcoholic_beverage_venue > bar,2 +brewery,Brewery,food_and_drink > alcoholic_beverage_venue > brewery,2 +distillery,Distillery,food_and_drink > alcoholic_beverage_venue > distillery,2 +lounge,Lounge,food_and_drink > alcoholic_beverage_venue > lounge,2 +winery,Winery,food_and_drink > alcoholic_beverage_venue > winery,2 +casual_eatery,Casual Eatery,food_and_drink > casual_eatery,1 +cafe,Cafe,food_and_drink > casual_eatery > cafe,2 +fast_food_restaurant,Fast Food Restaurant,food_and_drink > casual_eatery > fast_food_restaurant,2 +food_court,Food Court,food_and_drink > casual_eatery > food_court,2 +food_truck_stand,Food Truck or Stand,food_and_drink > casual_eatery > food_truck_stand,2 +non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,food_and_drink > non_alcoholic_beverage_venue,1 +coffee_shop,Coffee Shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,2 +smoothie_juice_bar,Smoothie or Juice Bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,2 +restaurant,Restaurant,food_and_drink > restaurant,1 +geographic_entities,Geographic Entities,geographic_entities,0 +built_feature,Built Feature,geographic_entities > built_feature,1 +bridge,Bridge,geographic_entities > built_feature > bridge,2 +building,Building,geographic_entities > built_feature > building,2 +dam,Dam,geographic_entities > built_feature > dam,2 +dock,Dock,geographic_entities > built_feature > dock,2 +garden,Garden,geographic_entities > built_feature > garden,2 +marina,Marina,geographic_entities > built_feature > marina,2 +pier,Pier,geographic_entities > built_feature > pier,2 +land_feature,Land Feature,geographic_entities > land_feature,1 +beach,Beach,geographic_entities > land_feature > beach,2 +canyon,Canyon,geographic_entities > land_feature > canyon,2 +forest,Forest,geographic_entities > land_feature > forest,2 +hill,Hill,geographic_entities > land_feature > hill,2 +island,Island,geographic_entities > land_feature > island,2 +mountain,Mountain,geographic_entities > land_feature > mountain,2 +nature_reserve,Nature Reserve,geographic_entities > land_feature > nature_reserve,2 +valley,Valley,geographic_entities > land_feature > valley,2 +scenic_viewpoint,Scenic Viewpoint,geographic_entities > scenic_viewpoint,1 +water_feature,Water Feature,geographic_entities > water_feature,1 +canal,Canal,geographic_entities > water_feature > canal,2 +hot_springs,Hot Springs,geographic_entities > water_feature > hot_springs,2 +lake,Lake,geographic_entities > water_feature > lake,2 +ocean,Ocean,geographic_entities > water_feature > ocean,2 +river,River,geographic_entities > water_feature > river,2 +sea,Sea,geographic_entities > water_feature > sea,2 +waterfall,Waterfall,geographic_entities > water_feature > waterfall,2 +health_care,Health Care,health_care,0 +emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,health_care > emergency_or_urgent_care_facility,1 +emergency_department,Emergency Department,health_care > emergency_or_urgent_care_facility > emergency_department,2 +urgent_care_clinic,Urgent Care Clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,2 +walk_in_clinic,Walk-In Clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,2 +hospital,Hospital,health_care > hospital,1 +general_hospital,General Hospital,health_care > hospital > general_hospital,2 +specialty_hospital,Specialty Hospital,health_care > hospital > specialty_hospital,2 +medical_service,Medical Service,health_care > medical_service,1 +outpatient_care_facility,Outpatient Care Facility,health_care > outpatient_care_facility,1 +behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,2 +complementary_and_alternative_medicine,Complementary and Alternative Medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,2 +dental_clinic,Dental Clinic,health_care > outpatient_care_facility > dental_clinic,2 +diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,2 +pediatric_clinic,Pediatric Clinic,health_care > outpatient_care_facility > pediatric_clinic,2 +physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,2 +primary_care_or_general_clinic,Primary Care or General Clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic,2 +reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,2 +specialized_health_care,Specialized Health Care,health_care > outpatient_care_facility > specialized_health_care,2 +vision_or_eye_care_clinic,Vision or Eye Care Clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,2 +specialized_medical_facility,Specialized Medical Facility,health_care > specialized_medical_facility,1 +surgery,Surgery,health_care > specialized_medical_facility > surgery,2 +lifestyle_services,Lifestyle Services,lifestyle_services,0 +animal_or_pet_service,Animal or Pet Service,lifestyle_services > animal_or_pet_service,1 +food_service,Food Service,lifestyle_services > food_service,1 +personal_or_beauty_service,Personal or Beauty Service,lifestyle_services > personal_or_beauty_service,1 +wellness_service,Wellness Service,lifestyle_services > wellness_service,1 +lodging,Lodging,lodging,0 +bed_and_breakfast,Bed and Breakfast,lodging > bed_and_breakfast,1 +campground,Campground,lodging > campground,1 +hotel,Hotel,lodging > hotel,1 +inn,Inn,lodging > inn,1 +private_lodging,Private Lodging,lodging > private_lodging,1 +resort,Resort,lodging > resort,1 +rv_park,RV Park,lodging > rv_park,1 +services_and_business,Services and Business,services_and_business,0 +agricultural_service,Agricultural Service,services_and_business > agricultural_service,1 +farm,Farm,services_and_business > agricultural_service > farm,2 +b2b_service,B2B Service,services_and_business > b2b_service,1 +b2b_energy_and_utility_service,B2B Energy and Utility Service,services_and_business > b2b_service > b2b_energy_and_utility_service,2 +b2b_industrial_and_machine_service,B2B Industrial and Machine Service,services_and_business > b2b_service > b2b_industrial_and_machine_service,2 +b2b_office_and_professional_service,B2B Office and Professional Service,services_and_business > b2b_service > b2b_office_and_professional_service,2 +b2b_science_and_technology_service,B2B Science and Technology Service,services_and_business > b2b_service > b2b_science_and_technology_service,2 +b2b_transportation_and_storage_service,B2B Transportation and Storage Service,services_and_business > b2b_service > b2b_transportation_and_storage_service,2 +manufacturer,Manufacturer,services_and_business > b2b_service > manufacturer,2 +supplier_or_distributor,Supplier or Distributor,services_and_business > b2b_service > supplier_or_distributor,2 +wholesaler,Wholesaler,services_and_business > b2b_service > wholesaler,2 +building_or_construction_service,Building or Construction Service,services_and_business > building_or_construction_service,1 +corporate_or_business_office,Corporate or Business Office,services_and_business > corporate_or_business_office,1 +design_service,Design Service,services_and_business > design_service,1 +environmental_or_ecological_service,Environmental or Ecological Service,services_and_business > environmental_or_ecological_service,1 +event_or_party_service,Event or Party Service,services_and_business > event_or_party_service,1 +family_service,Family Service,services_and_business > family_service,1 +financial_service,Financial Service,services_and_business > financial_service,1 +atm,ATM,services_and_business > financial_service > atm,2 +bank_or_credit_union,Bank or Credit Union,services_and_business > financial_service > bank_or_credit_union,2 +home_service,Home Service,services_and_business > home_service,1 +housing_or_property_service,Housing or Property Service,services_and_business > housing_or_property_service,1 +apartment,Apartment,services_and_business > housing_or_property_service > apartment,2 +condominium,Condominium,services_and_business > housing_or_property_service > condominium,2 +senior_living_facility,Senior Living Facility,services_and_business > housing_or_property_service > senior_living_facility,2 +industrial_facility_or_service,Industrial Facility or Service,services_and_business > industrial_facility_or_service,1 +laundry_service,Laundry Service,services_and_business > laundry_service,1 +legal_service,Legal Service,services_and_business > legal_service,1 +attorney_or_law_firm,Attorney or Law Firm,services_and_business > legal_service > attorney_or_law_firm,2 +media_service,Media Service,services_and_business > media_service,1 +radio_station,Radio Station,services_and_business > media_service > media_news_company > radio_station,3 +television_station,Television Station,services_and_business > media_service > media_news_company > television_station,3 +printing_service,Printing Service,services_and_business > printing_service,1 +professional_service,Professional Service,services_and_business > professional_service,1 +real_estate_service,Real Estate Service,services_and_business > real_estate_service,1 +rental_service,Rental Service,services_and_business > rental_service,1 +security_service,Security Service,services_and_business > security_service,1 +shipping_or_delivery_service,Shipping or Delivery Service,services_and_business > shipping_or_delivery_service,1 +storage_facility,Storage Facility,services_and_business > storage_facility,1 +technical_service,Technical Service,services_and_business > technical_service,1 +telecommunications_service,Telecommunications Service,services_and_business > telecommunications_service,1 +utility_energy_infrastructure,Utility Energy Infrastructure,services_and_business > utility_energy_infrastructure,1 +shopping,Shopping,shopping,0 +convenience_store,Convenience Store,shopping > convenience_store,1 +department_store,Department Store,shopping > department_store,1 +discount_store,Discount Store,shopping > discount_store,1 +fashion_and_apparel_store,Fashion and Apparel Store,shopping > fashion_and_apparel_store,1 +food_and_beverage_store,Food and Beverage Store,shopping > food_and_beverage_store,1 +kiosk,Kiosk,shopping > kiosk,1 +market,Market,shopping > market,1 +farmers_market,Farmers Market,shopping > market > farmers_market,2 +second_hand_store,Second Hand Store,shopping > second_hand_store,1 +shopping_mall,Shopping Mall,shopping > shopping_mall,1 +shopping_service,Shopping Service,shopping > shopping_service,1 +specialty_store,Specialty Store,shopping > specialty_store,1 +animal_and_pet_store,Animal and Pet Store,shopping > specialty_store > animal_and_pet_store,2 +arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,shopping > specialty_store > arts_crafts_and_hobby_store,2 +books_music_and_video_store,Books Music and Video Store,shopping > specialty_store > books_music_and_video_store,2 +electronics_store,Electronics Store,shopping > specialty_store > electronics_store,2 +flowers_and_gifts_store,Flowers and Gifts Store,shopping > specialty_store > flowers_and_gifts_store,2 +hardware_home_and_garden_store,Hardware Home and Garden Store,shopping > specialty_store > hardware_home_and_garden_store,2 +musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,shopping > specialty_store > musical_instrument_and_pro_audio_store,2 +office_supply_store,Office Supply Store,shopping > specialty_store > office_supply_store,2 +personal_care_and_beauty_store,Personal Care and Beauty Store,shopping > specialty_store > personal_care_and_beauty_store,2 +pharmacy_and_drug_store,Pharmacy and Drug Store,shopping > specialty_store > pharmacy_and_drug_store,2 +sporting_goods_store,Sporting Goods Store,shopping > specialty_store > sporting_goods_store,2 +toys_and_games_store,Toys and Games Store,shopping > specialty_store > toys_and_games_store,2 +vehicle_parts_store,Vehicle Parts Store,shopping > specialty_store > vehicle_parts_store,2 +superstore,Superstore,shopping > superstore,1 +vehicle_dealer,Vehicle Dealer,shopping > vehicle_dealer,1 +auto_dealer,Auto Dealer,shopping > vehicle_dealer > auto_dealer,2 +warehouse_club_store,Warehouse Club Store,shopping > warehouse_club_store,1 +sports_and_recreation,Sports and Recreation,sports_and_recreation,0 +park,Park,sports_and_recreation > park,1 +dog_park,Dog Park,sports_and_recreation > park > dog_park,2 +national_park,National Park,sports_and_recreation > park > national_park,2 +playground,Playground,sports_and_recreation > park > playground,2 +recreational_equipment_rental,Recreational Equipment Rental,sports_and_recreation > recreational_equipment_rental,1 +recreational_trail_or_path,Recreational Trail or Path,sports_and_recreation > recreational_trail_or_path,1 +sport_league,Sport League,sports_and_recreation > sport_league,1 +sport_or_fitness_facility,Sport or Fitness Facility,sports_and_recreation > sport_or_fitness_facility,1 +fitness_studio,Fitness Studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio,2 +golf_course,Golf Course,sports_and_recreation > sport_or_fitness_facility > golf_course,2 +gym,Gym,sports_and_recreation > sport_or_fitness_facility > gym,2 +skate_park,Skate Park,sports_and_recreation > sport_or_fitness_facility > skate_park,2 +skating_rink,Skating Rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,2 +sport_court,Sport Court,sports_and_recreation > sport_or_fitness_facility > sport_court,2 +sport_field,Sport Field,sports_and_recreation > sport_or_fitness_facility > sport_field,2 +sports_complex,Sports Complex,sports_and_recreation > sport_or_fitness_facility > sports_complex,2 +swimming_pool,Swimming Pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,2 +sport_or_recreation_club,Sport or Recreation Club,sports_and_recreation > sport_or_recreation_club,1 +sport_team,Sport Team,sports_and_recreation > sport_team,1 +travel_and_transportation,Travel and Transportation,travel_and_transportation,0 +air_transport_facility_or_service,Air Transport Facility or Service,travel_and_transportation > air_transport_facility_or_service,1 +airport,Airport,travel_and_transportation > air_transport_facility_or_service > airport,2 +fueling_station,Fueling Station,travel_and_transportation > fueling_station,1 +ev_charging_station,EV Charging Station,travel_and_transportation > fueling_station > ev_charging_station,2 +gas_station,Gas Station,travel_and_transportation > fueling_station > gas_station,2 +ground_transport_facility_or_service,Ground Transport Facility or Service,travel_and_transportation > ground_transport_facility_or_service,1 +public_transit_facility_or_service,Public Transit Facility or Service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,2 +rail_facility_or_service,Rail Facility or Service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,2 +train_station,Train Station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,3 +rest_stop,Rest Stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,3 +toll_station,Toll Station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,3 +taxi_or_ride_share_service,Taxi or Ride Share Service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,2 +parking,Parking,travel_and_transportation > parking,1 +park_and_ride,Park and Ride,travel_and_transportation > parking > park_and_ride,2 +parking_garage,Parking Garage,travel_and_transportation > parking > parking_garage,2 +parking_lot,Parking Lot,travel_and_transportation > parking > parking_lot,2 +travel_service,Travel Service,travel_and_transportation > travel_service,1 +vehicle_service,Vehicle Service,travel_and_transportation > vehicle_service,1 +automotive_service,Automotive Service,travel_and_transportation > vehicle_service > automotive_service,2 +water_transport_facility_or_service,Water Transport Facility or Service,travel_and_transportation > water_transport_facility_or_service,1 +ferry_service,Ferry Service,travel_and_transportation > water_transport_facility_or_service > ferry_service,2 +water_taxi_service,Water Taxi Service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,2 diff --git a/static/taxonomy/2026-09-23.0/taxonomy.csv b/static/taxonomy/2026-09-23.0/taxonomy.csv new file mode 100644 index 000000000..1ab909716 --- /dev/null +++ b/static/taxonomy/2026-09-23.0/taxonomy.csv @@ -0,0 +1,2303 @@ +taxonomy,primary,displayName,level,isBasic,basicCategory +arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,0,true,arts_and_entertainment +arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,1,true,amusement_attraction +arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,2,true,amusement_park +arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,2,false,amusement_attraction +arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,2,false,amusement_attraction +arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,2,false,amusement_attraction +arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,2,false,amusement_attraction +arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,1,true,animal_attraction +arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,2,true,aquarium +arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,2,false,animal_attraction +arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,2,true,zoo +arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,3,false,zoo +arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,3,false,zoo +arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,1,true,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,2,true,art_gallery +arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,2,false,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,2,false,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,Paint and Sip Venue,2,false,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,Paint Your Own Pottery Venue,2,false,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,2,false,arts_and_crafts_space +arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,2,true,sculpture_statue +arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,2,true,street_art +arts_and_entertainment > event_venue,event_venue,Event Venue,1,true,event_venue +arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,2,false,event_venue +arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,2,false,event_venue +arts_and_entertainment > festival_venue,festival_venue,Festival Venue,1,true,festival_venue +arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,2,true,fairgrounds +arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,2,false,festival_venue +arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,2,false,festival_venue +arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,1,true,gaming_venue +arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,2,true,arcade +arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,2,false,gaming_venue +arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,2,false,gaming_venue +arts_and_entertainment > gaming_venue > casino,casino,Casino,2,true,casino +arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,2,false,gaming_venue +arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,2,false,gaming_venue +arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,2,false,gaming_venue +arts_and_entertainment > movie_theater,movie_theater,Movie Theater,1,true,movie_theater +arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive-In Theater,2,false,movie_theater +arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,2,false,movie_theater +arts_and_entertainment > museum,museum,Museum,1,true,museum +arts_and_entertainment > museum > art_museum,art_museum,Art Museum,2,false,museum +arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,3,false,museum +arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,3,false,museum +arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,3,false,museum +arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,3,false,museum +arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,3,false,museum +arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,3,false,museum +arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,3,false,museum +arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,3,false,museum +arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,3,false,museum +arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,2,false,museum +arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,2,false,museum +arts_and_entertainment > museum > history_museum,history_museum,History Museum,2,false,museum +arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,3,false,museum +arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,3,false,museum +arts_and_entertainment > museum > military_museum,military_museum,Military Museum,2,false,museum +arts_and_entertainment > museum > national_museum,national_museum,National Museum,2,false,museum +arts_and_entertainment > museum > science_museum,science_museum,Science Museum,2,false,museum +arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,3,false,museum +arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,2,false,museum +arts_and_entertainment > museum > state_museum,state_museum,State Museum,2,false,museum +arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,1,true,nightlife_venue +arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,2,true,adult_entertainment_venue +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,3,false,adult_entertainment_venue +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,3,false,adult_entertainment_venue +arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,2,false,nightlife_venue +arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,2,false,nightlife_venue +arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,2,true,dance_club +arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,3,false,dance_club +arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,1,true,performing_arts_venue +arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,2,false,performing_arts_venue +arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,2,false,performing_arts_venue +arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,2,true,comedy_club +arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,2,true,music_venue +arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,3,false,music_venue +arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,3,false,music_venue +arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,3,false,music_venue +arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,3,false,music_venue +arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,3,false,music_venue +arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,2,true,theatre_venue +arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,3,false,theatre_venue +arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,1,true,rural_attraction +arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,2,false,rural_attraction +arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,2,false,rural_attraction +arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,2,false,rural_attraction +arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,2,false,rural_attraction +arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,2,true,rodeo +arts_and_entertainment > science_attraction,science_attraction,Science Attraction,1,true,science_attraction +arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,2,true,makerspace +arts_and_entertainment > science_attraction > observatory,observatory,Observatory,2,false,science_attraction +arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,2,true,planetarium +arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,2,false,science_attraction +arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,3,false,science_attraction +arts_and_entertainment > social_club,social_club,Social Club,1,true,social_club +arts_and_entertainment > social_club > country_club,country_club,Country Club,2,true,country_club +arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,2,false,social_club +arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,2,false,social_club +arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,1,true,spiritual_advising +arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,2,true,astrological_advising +arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,2,false,spiritual_advising +arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,2,true,psychic_advising +arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,1,true,stadium_arena +arts_and_entertainment > stadium_arena > arena,arena,Arena,2,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,2,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,3,false,stadium_arena +arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,3,false,stadium_arena +arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,1,true,ticket_office_or_booth +community_and_government,community_and_government,Community and Government,0,true,community_and_government +community_and_government > civic_organization,civic_organization,Civic Organization,1,true,civic_organization +community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,2,false,civic_organization +community_and_government > civic_organization > civic_center,civic_center,Civic Center,2,true,civic_center +community_and_government > civic_organization > labor_union,labor_union,Labor Union,2,true,labor_union +community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,2,false,civic_organization +community_and_government > civic_organization > political_organization,political_organization,Political Organization,2,true,political_organization +community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,3,false,political_organization +community_and_government > government_office,government_office,Government Office,1,true,government_office +community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,2,false,government_office +community_and_government > government_office > courthouse,courthouse,Courthouse,2,true,courthouse +community_and_government > government_office > embassy,embassy,Embassy,2,true,embassy +community_and_government > government_office > government_department,government_department,Government Department,2,true,government_department +community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,3,false,government_department +community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,3,false,government_department +community_and_government > government_office > government_department > health_department,health_department,Health Department,3,false,government_department +community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,2,false,government_office +community_and_government > government_office > national_security_service,national_security_service,National Security Service,2,false,government_office +community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,2,false,government_office +community_and_government > government_office > pension_office,pension_office,Pension Office,2,false,government_office +community_and_government > government_office > registry_office,registry_office,Registry Office,2,false,government_office +community_and_government > government_office > social_security_service,social_security_service,Social Security Service,2,false,government_office +community_and_government > government_office > tax_office,tax_office,Tax Office,2,false,government_office +community_and_government > government_office > town_hall,town_hall,Town Hall,2,false,government_office +community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,2,false,government_office +community_and_government > military_site,military_site,Military Site,1,true,military_site +community_and_government > military_site > military_base,military_base,Military Base,2,true,military_base +community_and_government > military_site > military_office,military_office,Military Office,2,true,military_office +community_and_government > public_facility,public_facility,Public Facility,1,true,public_facility +community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,2,true,public_fountain +community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,3,false,public_fountain +community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,2,true,public_pathway +community_and_government > public_facility > public_phone,public_phone,Public Phone,2,false,public_facility +community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,2,true,public_plaza +community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,2,true,public_restroom +community_and_government > public_safety_service,public_safety_service,Public Safety Service,1,true,public_safety_service +community_and_government > public_safety_service > fire_station,fire_station,Fire Station,2,true,fire_station +community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,2,true,jail_or_prison +community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,3,false,jail_or_prison +community_and_government > public_safety_service > police_station,police_station,Police Station,2,true,police_station +community_and_government > public_utility,public_utility,Public Utility,1,true,public_utility +community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,2,true,electric_utility_provider +community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,2,false,public_utility +community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,2,true,natural_gas_utility_provider +community_and_government > public_utility > septic_service,septic_service,Septic Service,2,false,public_utility +community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,2,true,water_utility_provider +community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,1,true,social_or_community_service +community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,2,false,social_or_community_service +community_and_government > social_or_community_service > community_center,community_center,Community Center,2,true,community_center +community_and_government > social_or_community_service > disability_services_and_support_organization,disability_services_and_support_organization,Disability Services and Support Organization,2,false,social_or_community_service +community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,2,true,food_bank +community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,2,false,social_or_community_service +community_and_government > social_or_community_service > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,Gay and Lesbian Services Organization,2,false,social_or_community_service +community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,2,false,social_or_community_service +community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,2,false,social_or_community_service +community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,2,false,social_or_community_service +community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,2,false,social_or_community_service +community_and_government > social_or_community_service > social_and_human_service,social_and_human_service,Social and Human Service,2,false,social_or_community_service +community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,2,false,social_or_community_service +community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,2,false,social_or_community_service +community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,2,true,youth_organization +cultural_and_historic,cultural_and_historic,Cultural and Historic,0,true,cultural_and_historic +cultural_and_historic > cultural_center,cultural_center,Cultural Center,1,true,cultural_center +cultural_and_historic > historic_site,historic_site,Historic Site,1,true,historic_site +cultural_and_historic > historic_site > castle,castle,Castle,2,true,castle +cultural_and_historic > historic_site > fort,fort,Fort,2,true,fort +cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,2,false,historic_site +cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,2,false,historic_site +cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,2,true,lighthouse +cultural_and_historic > historic_site > palace,palace,Palace,2,false,historic_site +cultural_and_historic > historic_site > ruin,ruin,Ruin,2,false,historic_site +cultural_and_historic > memorial_site,memorial_site,Memorial Site,1,true,memorial_site +cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,2,true,cemetery +cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,2,false,memorial_site +cultural_and_historic > memorial_site > monument,monument,Monument,2,true,monument +cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,1,true,place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,2,true,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship,mahayana_buddhist_place_of_worship,Mahayana Buddhist Place of Worship,3,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > nichiren_buddhist_place_of_worship,nichiren_buddhist_place_of_worship,Nichiren Buddhist Place of Worship,4,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > pure_land_buddhist_place_of_worship,pure_land_buddhist_place_of_worship,Pure Land Buddhist Place of Worship,4,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > mahayana_buddhist_place_of_worship > zen_buddhist_place_of_worship,zen_buddhist_place_of_worship,Zen Buddhist Place of Worship,4,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > theravada_buddhist_place_of_worship,theravada_buddhist_place_of_worship,Theravada Buddhist Place of Worship,3,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > buddhist_place_of_worship > vajrayana_buddhist_place_of_worship,vajrayana_buddhist_place_of_worship,Vajrayana Buddhist Place of Worship,3,false,buddhist_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,2,true,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > church_of_the_east_place_of_worship,church_of_the_east_place_of_worship,Church of the East Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship,eastern_orthodox_place_of_worship,Eastern Orthodox Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > antiochan_orthodox_place_of_worship,antiochan_orthodox_place_of_worship,Antiochan Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > bulgarian_orthodox_place_of_worship,bulgarian_orthodox_place_of_worship,Bulgarian Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > georgian_orthodox_place_of_worship,georgian_orthodox_place_of_worship,Georgian Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > greek_orthodox_place_of_worship,greek_orthodox_place_of_worship,Greek Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > romanian_orthodox_place_of_worship,romanian_orthodox_place_of_worship,Romanian Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > russian_orthodox_place_of_worship,russian_orthodox_place_of_worship,Russian Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > eastern_orthodox_place_of_worship > serbian_orthodox_place_of_worship,serbian_orthodox_place_of_worship,Serbian Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship,oriental_orthodox_place_of_worship,Oriental Orthodox Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > armenian_apostolic_place_of_worship,armenian_apostolic_place_of_worship,Armenian Apostolic Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > coptic_orthodox_place_of_worship,coptic_orthodox_place_of_worship,Coptic Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > eritrean_orthodox_tewahedo_place_of_worship,eritrean_orthodox_tewahedo_place_of_worship,Eritrean Orthodox Tewahedo Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > ethiopian_orthodox_tewahedo_place_of_worship,ethiopian_orthodox_tewahedo_place_of_worship,Ethiopian Orthodox Tewahedo Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > malankara_orthodox_syrian_place_of_worship,malankara_orthodox_syrian_place_of_worship,Malankara Orthodox Syrian Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > oriental_orthodox_place_of_worship > syriac_orthodox_place_of_worship,syriac_orthodox_place_of_worship,Syriac Orthodox Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship,protestant_place_of_worship,Protestant Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > adventist_place_of_worship,adventist_place_of_worship,Adventist Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anabaptist_place_of_worship,anabaptist_place_of_worship,Anabaptist Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anglican_or_episcopal_place_of_worship,anglican_or_episcopal_place_of_worship,Anglican or Episcopal Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > baptist_place_of_worship,baptist_place_of_worship,Baptist Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > lutheran_place_of_worship,lutheran_place_of_worship,Lutheran Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > methodist_place_of_worship,methodist_place_of_worship,Methodist Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > pentecostal_place_of_worship,pentecostal_place_of_worship,Pentecostal Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > reformed_or_calvinist_place_of_worship,reformed_or_calvinist_place_of_worship,Reformed or Calvinist Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship,restorationist_place_of_worship,Restorationist Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > jehovahs_witness_place_of_worship,jehovahs_witness_place_of_worship,Jehovahs Witness Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > mormon_place_of_worship,mormon_place_of_worship,Mormon Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship,roman_catholic_place_of_worship,Roman Catholic Place of Worship,3,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > eastern_catholic_place_of_worship,eastern_catholic_place_of_worship,Eastern Catholic Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship > western_catholic_place_of_worship,western_catholic_place_of_worship,Western Catholic Place of Worship,4,false,christian_place_of_worship +cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,2,true,hindu_place_of_worship +cultural_and_historic > place_of_worship > hindu_place_of_worship > shaiva_hindu_place_of_worship,shaiva_hindu_place_of_worship,Shaiva Hindu Place of Worship,3,false,hindu_place_of_worship +cultural_and_historic > place_of_worship > hindu_place_of_worship > shakta_hindu_place_of_worship,shakta_hindu_place_of_worship,Shakta Hindu Place of Worship,3,false,hindu_place_of_worship +cultural_and_historic > place_of_worship > hindu_place_of_worship > smarta_hindu_place_of_worship,smarta_hindu_place_of_worship,Smarta Hindu Place of Worship,3,false,hindu_place_of_worship +cultural_and_historic > place_of_worship > hindu_place_of_worship > vaishnava_hindu_place_of_worship,vaishnava_hindu_place_of_worship,Vaishnava Hindu Place of Worship,3,false,hindu_place_of_worship +cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,2,true,jewish_place_of_worship +cultural_and_historic > place_of_worship > jewish_place_of_worship > conservative_jewish_place_of_worship,conservative_jewish_place_of_worship,Conservative Jewish Place of Worship,3,false,jewish_place_of_worship +cultural_and_historic > place_of_worship > jewish_place_of_worship > orthodox_jewish_place_of_worship,orthodox_jewish_place_of_worship,Orthodox Jewish Place of Worship,3,false,jewish_place_of_worship +cultural_and_historic > place_of_worship > jewish_place_of_worship > reconstructionist_jewish_place_of_worship,reconstructionist_jewish_place_of_worship,Reconstructionist Jewish Place of Worship,3,false,jewish_place_of_worship +cultural_and_historic > place_of_worship > jewish_place_of_worship > reform_jewish_place_of_worship,reform_jewish_place_of_worship,Reform Jewish Place of Worship,3,false,jewish_place_of_worship +cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,2,true,muslim_place_of_worship +cultural_and_historic > place_of_worship > muslim_place_of_worship > ibadi_muslim_place_of_worship,ibadi_muslim_place_of_worship,Ibadi Muslim Place of Worship,3,false,muslim_place_of_worship +cultural_and_historic > place_of_worship > muslim_place_of_worship > shia_muslim_place_of_worship,shia_muslim_place_of_worship,Shia Muslim Place of Worship,3,false,muslim_place_of_worship +cultural_and_historic > place_of_worship > muslim_place_of_worship > sunni_muslim_place_of_worship,sunni_muslim_place_of_worship,Sunni Muslim Place of Worship,3,false,muslim_place_of_worship +cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,2,false,place_of_worship +cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,1,true,religious_landmark +cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,2,false,religious_landmark +cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,3,false,religious_landmark +cultural_and_historic > religious_landmark > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,Christian Pilgrimage Site,3,false,religious_landmark +cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,Hindu Pilgrimage Site,3,false,religious_landmark +cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,3,false,religious_landmark +cultural_and_historic > religious_landmark > shrine,shrine,Shrine,2,false,religious_landmark +cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,3,false,religious_landmark +cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,3,false,religious_landmark +cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,3,false,religious_landmark +cultural_and_historic > religious_organization,religious_organization,Religious Organization,1,true,religious_organization +cultural_and_historic > religious_organization > convent,convent,Convent,2,false,religious_organization +cultural_and_historic > religious_organization > monastery,monastery,Monastery,2,false,religious_organization +cultural_and_historic > religious_organization > seminary,seminary,Seminary,2,false,religious_organization +cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center,Religious Retreat or Center,1,true,religious_retreat_or_center +cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,2,false,religious_retreat_or_center +cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,2,false,religious_retreat_or_center +cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,2,false,religious_retreat_or_center +education,education,Education,0,true,education +education > education_office,education_office,Education Office,1,true,education_office +education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,2,false,education_office +education > education_office > school_district_office,school_district_office,School District Office,2,true,school_district_office +education > educational_facility,educational_facility,Educational Facility,1,true,educational_facility +education > educational_facility > campus,campus,Campus,2,true,campus +education > educational_facility > campus_building,campus_building,Campus Building,2,true,campus_building +education > educational_facility > campus_building > student_union,student_union,Student Union,3,false,campus_building +education > educational_facility > educational_camp,educational_camp,Educational Camp,2,false,educational_facility +education > educational_service,educational_service,Educational Service,1,true,educational_service +education > educational_service > after_school_program,after_school_program,After School Program,2,false,educational_service +education > educational_service > archaeological_service,archaeological_service,Archaeological Service,2,false,educational_service +education > educational_service > college_counseling,college_counseling,College Counseling,2,false,educational_service +education > educational_service > test_preparation,test_preparation,Test Preparation,2,false,educational_service +education > educational_service > tutoring_service,tutoring_service,Tutoring Service,2,true,tutoring_service +education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,3,false,tutoring_service +education > library,library,Library,1,true,library +education > place_of_learning,place_of_learning,Place of Learning,1,true,place_of_learning +education > place_of_learning > academy,academy,Academy,2,true,academy +education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,3,false,academy +education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,2,false,place_of_learning +education > place_of_learning > class_venue,class_venue,Class Venue,2,true,class_venue +education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,3,false,class_venue +education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,4,false,class_venue +education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,4,false,class_venue +education > place_of_learning > college_university,college_university,College University,2,true,college_university +education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,3,false,college_university +education > place_of_learning > college_university > business_school,business_school,Business School,3,false,college_university +education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,3,false,college_university +education > place_of_learning > college_university > law_school,law_school,Law School,3,false,college_university +education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,3,false,college_university +education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,4,false,college_university +education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,4,false,college_university +education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,4,false,college_university +education > place_of_learning > college_university > science_school,science_school,Science School,3,false,college_university +education > place_of_learning > school,school,School,2,false,place_of_learning +education > place_of_learning > school > charter_school,charter_school,Charter School,3,false,place_of_learning +education > place_of_learning > school > elementary_school,elementary_school,Elementary School,3,true,elementary_school +education > place_of_learning > school > high_school,high_school,High School,3,true,high_school +education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,3,true,kindergarten +education > place_of_learning > school > middle_school,middle_school,Middle School,3,true,middle_school +education > place_of_learning > school > montessori_school,montessori_school,Montessori School,3,false,place_of_learning +education > place_of_learning > school > preschool,preschool,Preschool,3,true,preschool +education > place_of_learning > school > private_school,private_school,Private School,3,false,place_of_learning +education > place_of_learning > school > public_school,public_school,Public School,3,false,place_of_learning +education > place_of_learning > school > religious_school,religious_school,Religious School,3,false,place_of_learning +education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,3,false,place_of_learning +education > place_of_learning > specialty_school,specialty_school,Specialty School,2,true,specialty_school +education > place_of_learning > specialty_school > art_school,art_school,Art School,3,false,specialty_school +education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,3,false,specialty_school +education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,3,false,specialty_school +education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,3,false,specialty_school +education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,3,false,specialty_school +education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,3,false,specialty_school +education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,3,false,specialty_school +education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,3,false,specialty_school +education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,3,false,specialty_school +education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,3,false,specialty_school +education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,3,false,specialty_school +education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,3,false,specialty_school +education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,3,false,specialty_school +education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,3,false,specialty_school +education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,3,false,specialty_school +education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,3,false,specialty_school +education > place_of_learning > specialty_school > language_school,language_school,Language School,3,false,specialty_school +education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,3,false,specialty_school +education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,3,false,specialty_school +education > place_of_learning > specialty_school > music_school,music_school,Music School,3,false,specialty_school +education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,3,false,specialty_school +education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,3,false,specialty_school +education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,3,false,specialty_school +education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,3,false,specialty_school +education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,3,false,specialty_school +education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,3,false,specialty_school +education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,3,false,specialty_school +education > research_institute,research_institute,Research Institute,1,true,research_institute +education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,2,false,research_institute +education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,2,false,research_institute +food_and_drink,food_and_drink,Food and Drink,0,true,food_and_drink +food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,1,true,alcoholic_beverage_venue +food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,2,true,bar +food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,4,false,bar +food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,3,false,bar +food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,2,false,alcoholic_beverage_venue +food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,2,true,brewery +food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,2,false,alcoholic_beverage_venue +food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,2,true,distillery +food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,2,true,lounge +food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,3,false,lounge +food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,2,true,winery +food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,3,false,winery +food_and_drink > casual_eatery,casual_eatery,Casual Eatery,1,true,casual_eatery +food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,2,false,casual_eatery +food_and_drink > casual_eatery > bakery,bakery,Bakery,2,false,casual_eatery +food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,3,false,casual_eatery +food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,3,false,casual_eatery +food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,3,false,casual_eatery +food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,3,false,casual_eatery +food_and_drink > casual_eatery > bistro,bistro,Bistro,2,false,casual_eatery +food_and_drink > casual_eatery > cafe,cafe,Cafe,2,true,cafe +food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,3,false,cafe +food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,4,false,cafe +food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,4,false,cafe +food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,3,false,cafe +food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,3,false,cafe +food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,2,false,casual_eatery +food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,3,false,casual_eatery +food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,3,false,casual_eatery +food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,3,false,casual_eatery +food_and_drink > casual_eatery > canteen,canteen,Canteen,2,false,casual_eatery +food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,2,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,2,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,3,false,casual_eatery +food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,3,false,casual_eatery +food_and_drink > casual_eatery > diner,diner,Diner,2,false,casual_eatery +food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,2,true,fast_food_restaurant +food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,2,false,casual_eatery +food_and_drink > casual_eatery > food_court,food_court,Food Court,2,true,food_court +food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,2,true,food_truck_stand +food_and_drink > casual_eatery > friterie,friterie,Friterie,2,false,casual_eatery +food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,2,false,casual_eatery +food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,2,false,casual_eatery +food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,2,false,casual_eatery +food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,2,false,casual_eatery +food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,2,false,casual_eatery +food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,1,true,non_alcoholic_beverage_venue +food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,2,false,non_alcoholic_beverage_venue +food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,2,true,coffee_shop +food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,3,false,coffee_shop +food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,2,false,non_alcoholic_beverage_venue +food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,2,false,non_alcoholic_beverage_venue +food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,2,false,non_alcoholic_beverage_venue +food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,2,true,smoothie_juice_bar +food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,2,false,non_alcoholic_beverage_venue +food_and_drink > restaurant,restaurant,Restaurant,1,true,restaurant +food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,2,false,restaurant +food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,3,false,restaurant +food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,3,false,restaurant +food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,3,false,restaurant +food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,3,false,restaurant +food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,4,false,restaurant +food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,2,false,restaurant +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,3,false,restaurant +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,3,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,3,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,3,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,Hyderabadi Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,North Indian Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,3,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,5,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,4,false,restaurant +food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,3,false,restaurant +food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,2,false,restaurant +food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,2,false,restaurant +food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,3,false,restaurant +food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,3,false,restaurant +food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,2,false,restaurant +food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,2,false,restaurant +food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,2,false,restaurant +food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,2,false,restaurant +food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,2,false,restaurant +food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,2,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,5,false,restaurant +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,3,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,5,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,4,false,restaurant +food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,4,false,restaurant +food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,2,false,restaurant +food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,2,false,restaurant +food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,3,false,restaurant +food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,3,false,restaurant +food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,2,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,4,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,3,false,restaurant +food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,2,false,restaurant +food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,3,false,restaurant +food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,2,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,4,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,3,false,restaurant +food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,3,false,restaurant +food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,2,false,restaurant +food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,3,false,restaurant +food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,4,false,restaurant +food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,4,false,restaurant +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,3,false,restaurant +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,4,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,2,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,3,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,3,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,4,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,3,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,4,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,3,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,3,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,4,false,restaurant +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,5,false,restaurant +food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,2,false,restaurant +food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,2,false,restaurant +food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,2,false,restaurant +food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,3,false,restaurant +food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,3,false,restaurant +food_and_drink > restaurant > soul_food,soul_food,Soul Food,2,false,restaurant +food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,2,false,restaurant +food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,2,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,Live and Raw Food Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,3,false,restaurant +food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,3,false,restaurant +food_and_drink > restaurant > supper_club,supper_club,Supper Club,2,false,restaurant +food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,2,false,restaurant +food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,2,false,restaurant +geographic_entities,geographic_entities,Geographic Entities,0,true,geographic_entities +geographic_entities > built_feature,built_feature,Built Feature,1,true,built_feature +geographic_entities > built_feature > bridge,bridge,Bridge,2,true,bridge +geographic_entities > built_feature > building,building,Building,2,true,building +geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,3,false,building +geographic_entities > built_feature > dam,dam,Dam,2,true,dam +geographic_entities > built_feature > dam > weir,weir,Weir,3,false,dam +geographic_entities > built_feature > dock,dock,Dock,2,true,dock +geographic_entities > built_feature > garden,garden,Garden,2,true,garden +geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,3,false,garden +geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,3,false,garden +geographic_entities > built_feature > lookout,lookout,Lookout,2,false,built_feature +geographic_entities > built_feature > marina,marina,Marina,2,true,marina +geographic_entities > built_feature > pier,pier,Pier,2,true,pier +geographic_entities > built_feature > quay,quay,Quay,2,false,built_feature +geographic_entities > land_feature,land_feature,Land Feature,1,true,land_feature +geographic_entities > land_feature > beach,beach,Beach,2,true,beach +geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,3,false,beach +geographic_entities > land_feature > canyon,canyon,Canyon,2,true,canyon +geographic_entities > land_feature > cave,cave,Cave,2,false,land_feature +geographic_entities > land_feature > crater,crater,Crater,2,false,land_feature +geographic_entities > land_feature > desert,desert,Desert,2,false,land_feature +geographic_entities > land_feature > forest,forest,Forest,2,true,forest +geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,2,false,land_feature +geographic_entities > land_feature > hill,hill,Hill,2,true,hill +geographic_entities > land_feature > island,island,Island,2,true,island +geographic_entities > land_feature > mountain,mountain,Mountain,2,true,mountain +geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,2,true,nature_reserve +geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,2,false,land_feature +geographic_entities > land_feature > valley,valley,Valley,2,true,valley +geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,1,true,scenic_viewpoint +geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,2,false,scenic_viewpoint +geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,2,false,scenic_viewpoint +geographic_entities > water_feature,water_feature,Water Feature,1,true,water_feature +geographic_entities > water_feature > canal,canal,Canal,2,true,canal +geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,2,true,hot_springs +geographic_entities > water_feature > lake,lake,Lake,2,true,lake +geographic_entities > water_feature > ocean,ocean,Ocean,2,true,ocean +geographic_entities > water_feature > river,river,River,2,true,river +geographic_entities > water_feature > sea,sea,Sea,2,true,sea +geographic_entities > water_feature > waterfall,waterfall,Waterfall,2,true,waterfall +health_care,health_care,Health Care,0,true,health_care +health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,1,true,emergency_or_urgent_care_facility +health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,ambulance_or_ems_service,Ambulance or EMS Service,2,false,emergency_or_urgent_care_facility +health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,2,true,emergency_department +health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,2,true,urgent_care_clinic +health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk-In Clinic,2,true,walk_in_clinic +health_care > hospital,hospital,Hospital,1,true,hospital +health_care > hospital > general_hospital,general_hospital,General Hospital,2,true,general_hospital +health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,2,true,specialty_hospital +health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,3,false,specialty_hospital +health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,3,false,specialty_hospital +health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,3,false,specialty_hospital +health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,3,false,specialty_hospital +health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,3,false,specialty_hospital +health_care > medical_service,medical_service,Medical Service,1,true,medical_service +health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,2,false,medical_service +health_care > medical_service > ems_training,ems_training,EMS Training,2,false,medical_service +health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,2,false,medical_service +health_care > medical_service > home_health_care,home_health_care,Home Health Care,2,false,medical_service +health_care > medical_service > hospice,hospice,Hospice,2,false,medical_service +health_care > medical_service > medical_billing,medical_billing,Medical Billing,2,false,medical_service +health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,2,false,medical_service +health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,3,false,medical_service +health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,3,false,medical_service +health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,3,false,medical_service +health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,2,false,medical_service +health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,2,false,medical_service +health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,2,false,medical_service +health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,1,true,outpatient_care_facility +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,2,true,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service,behavioral_or_crisis_service,Behavioral or Crisis Service,3,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > behavior_analysis,behavior_analysis,Behavior Analysis,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,crisis_intervention_service,Crisis Intervention Service,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,stress_management_service,Stress Management Service,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,suicide_prevention_service,Suicide Prevention Service,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,3,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,marriage_or_relationship_counseling,Marriage or Relationship Counseling,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service,psychiatry_or_psychology_service,Psychiatry or Psychology Service,3,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,child_psychiatry,Child Psychiatry,5,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,geriatric_psychiatry,Geriatric Psychiatry,5,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,sports_psychology,Sports Psychology,5,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,4,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > art_therapy,art_therapy,Art Therapy,5,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > hypnotherapy,hypnotherapy,Hypnotherapy,5,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,3,false,behavioral_or_mental_health_clinic +health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,2,true,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,3,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,4,false,complementary_and_alternative_medicine +health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,2,true,dental_clinic +health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,3,false,dental_clinic +health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,3,false,dental_clinic +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,2,true,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,3,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,ultrasound_imaging,Ultrasound Imaging,4,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,3,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,3,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,paternity_testing,Paternity Testing,4,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,3,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,3,false,diagnostics_imaging_or_lab_service +health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,2,true,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,3,false,pediatric_clinic +health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,3,false,pediatric_clinic +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,2,true,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,Addiction Rehabilitation Center,4,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,3,false,physical_medicine_and_rehabilitation +health_care > outpatient_care_facility > primary_care_or_general_clinic,primary_care_or_general_clinic,Primary Care or General Clinic,2,true,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > community_health_center,community_health_center,Community Health Center,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,public_health_clinic,Public Health Clinic,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,3,false,primary_care_or_general_clinic +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,2,true,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,obstetrics_and_gynecology,Obstetrics and Gynecology,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,prenatal_and_perinatal_care,Prenatal and Perinatal Care,3,false,reproductive_perinatal_and_womens_care +health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,2,true,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine,cardiovascular_and_vascular_medicine,Cardiovascular and Vascular Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,ear_nose_and_throat,Ear Nose and Throat,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,5,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,5,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,5,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,5,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,5,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,4,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,3,false,specialized_health_care +health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,3,false,specialized_health_care +health_care > outpatient_care_facility > vision_or_eye_care_clinic,vision_or_eye_care_clinic,Vision or Eye Care Clinic,2,true,vision_or_eye_care_clinic +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,3,false,vision_or_eye_care_clinic +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,refractive_surgery_or_lasik,Refractive Surgery or Lasik,4,false,vision_or_eye_care_clinic +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,4,false,vision_or_eye_care_clinic +health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,3,false,vision_or_eye_care_clinic +health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,1,true,specialized_medical_facility +health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,2,false,specialized_medical_facility +health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center,2,false,specialized_medical_facility +health_care > specialized_medical_facility > abuse_and_addiction_treatment_center > alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,Alcohol and Drug Treatment Center,3,false,specialized_medical_facility +health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,2,false,specialized_medical_facility +health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,2,false,specialized_medical_facility +health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,2,false,specialized_medical_facility +health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,2,false,specialized_medical_facility +health_care > specialized_medical_facility > organ_and_tissue_donor_service,organ_and_tissue_donor_service,Organ and Tissue Donor Service,2,false,specialized_medical_facility +health_care > specialized_medical_facility > surgery,surgery,Surgery,2,true,surgery +health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,3,false,surgery +health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,3,false,surgery +health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,3,false,surgery +health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,4,false,surgery +health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,4,false,surgery +health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,3,false,surgery +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,3,false,surgery +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,4,false,surgery +health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,3,false,surgery +lifestyle_services,lifestyle_services,Lifestyle Services,0,true,lifestyle_services +lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,1,true,animal_or_pet_service +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_rescue_service,animal_rescue_service,Animal Rescue Service,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,4,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,2,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,3,false,animal_or_pet_service +lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,3,false,animal_or_pet_service +lifestyle_services > food_service,food_service,Food Service,1,true,food_service +lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,2,false,food_service +lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,2,false,food_service +lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,3,false,food_service +lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,1,true,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > barber,barber,Barber,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,4,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,4,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,Blow Dry Blow Out Service,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,2,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,3,false,personal_or_beauty_service +lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,2,false,personal_or_beauty_service +lifestyle_services > wellness_service,wellness_service,Wellness Service,1,true,wellness_service +lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,2,false,wellness_service +lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,2,false,wellness_service +lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,2,false,wellness_service +lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,2,false,wellness_service +lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,2,false,wellness_service +lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,2,false,wellness_service +lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,2,false,wellness_service +lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,2,false,wellness_service +lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,2,false,wellness_service +lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,2,false,wellness_service +lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,2,false,wellness_service +lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,2,false,wellness_service +lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,3,false,wellness_service +lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,3,false,wellness_service +lifestyle_services > wellness_service > sauna,sauna,Sauna,2,false,wellness_service +lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,2,false,wellness_service +lifestyle_services > wellness_service > spa,spa,Spa,2,false,wellness_service +lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,3,false,wellness_service +lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,3,false,wellness_service +lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,3,false,wellness_service +lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,3,false,wellness_service +lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,2,false,wellness_service +lodging,lodging,Lodging,0,true,lodging +lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,1,true,bed_and_breakfast +lodging > cabin,cabin,Cabin,1,false,lodging +lodging > campground,campground,Campground,1,true,campground +lodging > cottage,cottage,Cottage,1,false,lodging +lodging > country_house,country_house,Country House,1,false,lodging +lodging > holiday_park,holiday_park,Holiday Park,1,false,lodging +lodging > hostel,hostel,Hostel,1,false,lodging +lodging > hotel,hotel,Hotel,1,true,hotel +lodging > hotel > motel,motel,Motel,2,false,hotel +lodging > houseboat,houseboat,Houseboat,1,false,lodging +lodging > inn,inn,Inn,1,true,inn +lodging > lodge,lodge,Lodge,1,false,lodging +lodging > mountain_hut,mountain_hut,Mountain Hut,1,false,lodging +lodging > private_lodging,private_lodging,Private Lodging,1,true,private_lodging +lodging > private_lodging > guest_house,guest_house,Guest House,2,false,private_lodging +lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,2,false,private_lodging +lodging > resort,resort,Resort,1,true,resort +lodging > resort > beach_resort,beach_resort,Beach Resort,2,false,resort +lodging > resort > ski_resort,ski_resort,Ski Resort,2,false,resort +lodging > retreat,retreat,Retreat,1,false,lodging +lodging > retreat > health_retreat,health_retreat,Health Retreat,2,false,lodging +lodging > rv_park,rv_park,RV Park,1,true,rv_park +lodging > ryokan,ryokan,Ryokan,1,false,lodging +lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,1,false,lodging +lodging > service_apartment,service_apartment,Service Apartment,1,false,lodging +services_and_business,services_and_business,Services and Business,0,true,services_and_business +services_and_business > agricultural_service,agricultural_service,Agricultural Service,1,true,agricultural_service +services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,2,false,agricultural_service +services_and_business > agricultural_service > farm,farm,Farm,2,true,farm +services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,3,false,farm +services_and_business > agricultural_service > farm > orchard,orchard,Orchard,3,false,farm +services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,3,false,farm +services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,3,false,farm +services_and_business > agricultural_service > farm > ranch,ranch,Ranch,3,false,farm +services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,3,false,farm +services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,2,false,agricultural_service +services_and_business > b2b_service,b2b_service,B2B Service,1,true,b2b_service +services_and_business > b2b_service > b2b_agriculture_service,b2b_agriculture_service,B2B Agriculture Service,2,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,Farm Equipment and Supply,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,5,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,5,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,5,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,4,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,3,false,b2b_service +services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,3,false,b2b_service +services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,2,true,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,3,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_coal_and_coke,b2b_coal_and_coke,B2B Coal and Coke,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,b2b_quarry,B2B Quarry,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,b2b_oil_and_gas,B2B Oil and Gas,3,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_equipment,b2b_oil_and_gas_equipment,B2B Oil and Gas Equipment,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_exploration_and_development,b2b_oil_and_gas_exploration_and_development,B2B Oil and Gas Exploration and Development,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_extraction,b2b_oil_and_gas_extraction,B2B Oil and Gas Extraction,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,b2b_oil_refinery,B2B Oil Refinery,4,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_power_plants_and_power_plant_service,b2b_power_plants_and_power_plant_service,B2B Power Plants and Power Plant Service,3,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,energy_management_service,Energy Management Service,3,false,b2b_energy_and_utility_service +services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,2,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management,3,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,3,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,3,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,3,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,3,false,b2b_service +services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,3,false,b2b_service +services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,2,true,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,B2B Equipment Maintenance and Repair,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,casting_molding_service,Casting Molding Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,inventory_control_service,Inventory Control Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,laser_cutting_service,Laser Cutting Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,metal_plating_service,Metal Plating Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,plastic_injection_molding_service,Plastic Injection Molding Service,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,3,false,b2b_industrial_and_machine_service +services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,2,false,b2b_service +services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,3,false,b2b_service +services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,2,false,b2b_service +services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,3,false,b2b_service +services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,3,false,b2b_service +services_and_business > b2b_service > b2b_medical_support_service > b2b_hospital_equipment_and_supplies,b2b_hospital_equipment_and_supplies,B2B Hospital Equipment and Supplies,3,false,b2b_service +services_and_business > b2b_service > b2b_medical_support_service > b2b_surgical_appliances_and_supplies,b2b_surgical_appliances_and_supplies,B2B Surgical Appliances and Supplies,3,false,b2b_service +services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,2,true,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service,b2b_advertising_and_marketing_service,B2B Advertising and Marketing Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_direct_mail_advertising,b2b_direct_mail_advertising,B2B Direct Mail Advertising,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_marketing_consultant,b2b_marketing_consultant,B2B Marketing Consultant,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_newspaper_advertising,b2b_newspaper_advertising,B2B Newspaper Advertising,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_outdoor_advertising,b2b_outdoor_advertising,B2B Outdoor Advertising,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_promotional_products_and_services,b2b_promotional_products_and_services,B2B Promotional Products and Services,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_publicity_service,b2b_publicity_service,B2B Publicity Service,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_radio_and_television_commercials,b2b_radio_and_television_commercials,B2B Radio and Television Commercials,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_signage_service,b2b_signage_service,B2B Signage Service,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_telemarketing_service,b2b_telemarketing_service,B2B Telemarketing Service,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,b2b_background_check_service,B2B Background Check Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,b2b_business_management_service,B2B Business Management Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_executive_search_consultants,b2b_executive_search_consultants,B2B Executive Search Consultants,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,b2b_secretarial_service,B2B Secretarial Service,4,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,b2b_domestic_trade_service,B2B Domestic Trade Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,b2b_human_resource_service,B2B Human Resource Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,b2b_international_trade_service,B2B International Trade Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,b2b_records_storage_service,B2B Records Storage Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,translating_and_interpreting_service,Translating and Interpreting Service,3,false,b2b_office_and_professional_service +services_and_business > b2b_service > b2b_science_and_technology_service,b2b_science_and_technology_service,B2B Science and Technology Service,2,true,b2b_science_and_technology_service +services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,b2b_scientific_equipment,B2B Scientific Equipment,3,false,b2b_science_and_technology_service +services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,b2b_scientific_lab,B2B Scientific Lab,3,false,b2b_science_and_technology_service +services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B Telecommunications Service,2,false,b2b_service +services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,3,false,b2b_service +services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,2,true,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse_rental_service_yard,warehouse_rental_service_yard,Warehouse Rental Service Yard,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,freight_and_cargo_service,Freight and Cargo Service,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,distribution_service,Distribution Service,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,Freight Forwarding Agency,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,motor_freight_trucking,Motor Freight Trucking,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services,truck_and_industrial_vehicle_services,Truck and Industrial Vehicle Services,3,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,Tractor Dealer,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > truck_parts_and_accessories,truck_parts_and_accessories,Truck Parts and Accessories,4,false,b2b_transportation_and_storage_service +services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,2,false,b2b_service +services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,2,true,manufacturer +services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Factory Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,3,false,manufacturer +services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,3,false,manufacturer +services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,4,false,manufacturer +services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,4,false,manufacturer +services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,steel_fabricator,Steel Fabricator,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill,mill,Mill,3,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,4,false,manufacturer +services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,4,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,3,false,manufacturer +services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,4,false,manufacturer +services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,2,true,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,business_office_supplies_and_stationery,Business Office Supplies and Stationery,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,4,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter > food_and_beverage_exporter,food_and_beverage_exporter,Food and Beverage Exporter,5,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,4,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,restaurant_equipment_and_supply,Restaurant Equipment and Supply,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,Sand and Gravel Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,seal_and_hanko_supplier,Seal and Hanko Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,Water Softening Equipment Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,3,false,supplier_or_distributor +services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,2,true,wholesaler +services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,Fmcg Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,3,false,wholesaler +services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,3,false,wholesaler +services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,3,false,wholesaler +services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,3,false,wholesaler +services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,3,false,wholesaler +services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,3,false,wholesaler +services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,3,false,wholesaler +services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,1,true,building_or_construction_service +services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,2,false,building_or_construction_service +services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,2,false,building_or_construction_service +services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,2,false,building_or_construction_service +services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,2,false,building_or_construction_service +services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,2,false,building_or_construction_service +services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,2,false,building_or_construction_service +services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,2,false,building_or_construction_service +services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,2,false,building_or_construction_service +services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,2,false,building_or_construction_service +services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,2,false,building_or_construction_service +services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,2,false,building_or_construction_service +services_and_business > building_or_construction_service > marble_and_granite_professional,marble_and_granite_professional,Marble and Granite Professional,2,false,building_or_construction_service +services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,2,false,building_or_construction_service +services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,2,false,building_or_construction_service +services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,2,false,building_or_construction_service +services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,2,false,building_or_construction_service +services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,2,false,building_or_construction_service +services_and_business > building_or_construction_service > welder,welder,Welder,2,false,building_or_construction_service +services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,1,true,corporate_or_business_office +services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > private_association,private_association,Private Association,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,2,false,corporate_or_business_office +services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,2,false,corporate_or_business_office +services_and_business > design_service,design_service,Design Service,1,true,design_service +services_and_business > design_service > architect,architect,Architect,2,false,design_service +services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,2,false,design_service +services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,2,false,design_service +services_and_business > design_service > product_design,product_design,Product Design,2,false,design_service +services_and_business > design_service > sign_making,sign_making,Sign Making,2,false,design_service +services_and_business > design_service > web_designer,web_designer,Web Designer,2,false,design_service +services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,1,true,environmental_or_ecological_service +services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,2,false,environmental_or_ecological_service +services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,2,false,environmental_or_ecological_service +services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,2,false,environmental_or_ecological_service +services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,2,false,environmental_or_ecological_service +services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,2,false,environmental_or_ecological_service +services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,1,true,event_or_party_service +services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,Audiovisual Equipment Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,2,false,event_or_party_service +services_and_business > event_or_party_service > bartender,bartender,Bartender,2,false,event_or_party_service +services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,2,false,event_or_party_service +services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > caricature,caricature,Caricature,2,false,event_or_party_service +services_and_business > event_or_party_service > caterer,caterer,Caterer,2,false,event_or_party_service +services_and_business > event_or_party_service > clown,clown,Clown,2,false,event_or_party_service +services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,2,false,event_or_party_service +services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,2,false,event_or_party_service +services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,2,false,event_or_party_service +services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,2,false,event_or_party_service +services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,2,false,event_or_party_service +services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > kids_recreation_and_party,kids_recreation_and_party,Kids Recreation and Party,2,false,event_or_party_service +services_and_business > event_or_party_service > magician,magician,Magician,2,false,event_or_party_service +services_and_business > event_or_party_service > mohel,mohel,Mohel,2,false,event_or_party_service +services_and_business > event_or_party_service > musician,musician,Musician,2,false,event_or_party_service +services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,2,false,event_or_party_service +services_and_business > event_or_party_service > party_and_event_planning,party_and_event_planning,Party and Event Planning,2,false,event_or_party_service +services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > party_character,party_character,Party Character,2,false,event_or_party_service +services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,2,false,event_or_party_service +services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,2,false,event_or_party_service +services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,2,false,event_or_party_service +services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,2,false,event_or_party_service +services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,2,false,event_or_party_service +services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,2,false,event_or_party_service +services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,2,false,event_or_party_service +services_and_business > event_or_party_service > videographer,videographer,Videographer,2,false,event_or_party_service +services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,2,false,event_or_party_service +services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,2,false,event_or_party_service +services_and_business > family_service,family_service,Family Service,1,true,family_service +services_and_business > family_service > adoption_service,adoption_service,Adoption Service,2,false,family_service +services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,2,false,family_service +services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,3,false,family_service +services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,2,false,family_service +services_and_business > family_service > family_service_center,family_service_center,Family Service Center,2,false,family_service +services_and_business > family_service > funeral_service,funeral_service,Funeral Service,2,false,family_service +services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,3,false,family_service +services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,3,false,family_service +services_and_business > family_service > genealogist,genealogist,Genealogist,2,false,family_service +services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,2,false,family_service +services_and_business > family_service > nanny_service,nanny_service,Nanny Service,2,false,family_service +services_and_business > financial_service,financial_service,Financial Service,1,true,financial_service +services_and_business > financial_service > accountant,accountant,Accountant,2,false,financial_service +services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,2,false,financial_service +services_and_business > financial_service > atm,atm,ATM,2,true,atm +services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,2,true,bank_or_credit_union +services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,3,false,bank_or_credit_union +services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,3,false,bank_or_credit_union +services_and_business > financial_service > broker,broker,Broker,2,false,financial_service +services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,3,false,financial_service +services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,3,false,financial_service +services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,2,false,financial_service +services_and_business > financial_service > business_financing,business_financing,Business Financing,2,false,financial_service +services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,2,false,financial_service +services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,2,false,financial_service +services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,2,false,financial_service +services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,2,false,financial_service +services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,2,false,financial_service +services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,2,false,financial_service +services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,2,false,financial_service +services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,2,false,financial_service +services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,2,false,financial_service +services_and_business > financial_service > holding_company,holding_company,Holding Company,2,false,financial_service +services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,2,false,financial_service +services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,3,false,financial_service +services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,3,false,financial_service +services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,2,false,financial_service +services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,3,false,financial_service +services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,3,false,financial_service +services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,3,false,financial_service +services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,3,false,financial_service +services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,3,false,financial_service +services_and_business > financial_service > investing,investing,Investing,2,false,financial_service +services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,2,false,financial_service +services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,2,false,financial_service +services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,2,false,financial_service +services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,2,false,financial_service +services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,2,false,financial_service +services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,2,false,financial_service +services_and_business > financial_service > tax_service,tax_service,Tax Service,2,false,financial_service +services_and_business > financial_service > trusts,trusts,Trusts,2,false,financial_service +services_and_business > home_service,home_service,Home Service,1,true,home_service +services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,2,false,home_service +services_and_business > home_service > antenna_service,antenna_service,Antenna Service,2,false,home_service +services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,2,false,home_service +services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,2,false,home_service +services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,2,false,home_service +services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,2,false,home_service +services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,2,false,home_service +services_and_business > home_service > carpenter,carpenter,Carpenter,2,false,home_service +services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,2,false,home_service +services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,2,false,home_service +services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,2,false,home_service +services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service,2,false,home_service +services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,3,false,home_service +services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,3,false,home_service +services_and_business > home_service > childproofing,childproofing,Childproofing,2,false,home_service +services_and_business > home_service > chimney_service,chimney_service,Chimney Service,2,false,home_service +services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,3,false,home_service +services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,2,false,home_service +services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,2,false,home_service +services_and_business > home_service > community_book_box,community_book_box,Community Book Box,2,false,home_service +services_and_business > home_service > contractor,contractor,Contractor,2,false,home_service +services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,3,false,home_service +services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,3,false,home_service +services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,3,false,home_service +services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,3,false,home_service +services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,2,false,home_service +services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,2,false,home_service +services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,Fire and Water Damage Restoration,3,false,home_service +services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,2,false,home_service +services_and_business > home_service > demolition_service,demolition_service,Demolition Service,2,false,home_service +services_and_business > home_service > donation_center,donation_center,Donation Center,2,false,home_service +services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,2,false,home_service +services_and_business > home_service > drywall_service,drywall_service,Drywall Service,2,false,home_service +services_and_business > home_service > electrician,electrician,Electrician,2,false,home_service +services_and_business > home_service > excavation_service,excavation_service,Excavation Service,2,false,home_service +services_and_business > home_service > exterior_design,exterior_design,Exterior Design,2,false,home_service +services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,2,false,home_service +services_and_business > home_service > feng_shui,feng_shui,Feng Shui,2,false,home_service +services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,2,false,home_service +services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,2,false,home_service +services_and_business > home_service > firewood,firewood,Firewood,2,false,home_service +services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,2,false,home_service +services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,2,false,home_service +services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,2,false,home_service +services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,2,false,home_service +services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,2,false,home_service +services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,2,false,home_service +services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,2,false,home_service +services_and_business > home_service > grout_service,grout_service,Grout Service,2,false,home_service +services_and_business > home_service > gutter_service,gutter_service,Gutter Service,2,false,home_service +services_and_business > home_service > handyman,handyman,Handyman,2,false,home_service +services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,2,false,home_service +services_and_business > home_service > home_automation,home_automation,Home Automation,2,false,home_service +services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,2,false,home_service +services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,2,false,home_service +services_and_business > home_service > home_inspector,home_inspector,Home Inspector,2,false,home_service +services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,2,false,home_service +services_and_business > home_service > home_security,home_security,Home Security,2,false,home_service +services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,2,false,home_service +services_and_business > home_service > house_sitting,house_sitting,House Sitting,2,false,home_service +services_and_business > home_service > hvac_service,hvac_service,HVAC Service,2,false,home_service +services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,2,false,home_service +services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,2,false,home_service +services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,2,false,home_service +services_and_business > home_service > interior_design,interior_design,Interior Design,2,false,home_service +services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,2,false,home_service +services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,2,false,home_service +services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,2,false,home_service +services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,2,false,home_service +services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,2,false,home_service +services_and_business > home_service > landscaping,landscaping,Landscaping,2,false,home_service +services_and_business > home_service > landscaping > gardener,gardener,Gardener,3,false,home_service +services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,3,false,home_service +services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,3,false,home_service +services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,3,false,home_service +services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,2,false,home_service +services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,2,false,home_service +services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,2,false,home_service +services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,2,false,home_service +services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,2,false,home_service +services_and_business > home_service > mover,mover,Mover,2,false,home_service +services_and_business > home_service > packing_service,packing_service,Packing Service,2,false,home_service +services_and_business > home_service > painting,painting,Painting,2,false,home_service +services_and_business > home_service > patio_covers,patio_covers,Patio Covers,2,false,home_service +services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,2,false,home_service +services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,2,false,home_service +services_and_business > home_service > plasterer,plasterer,Plasterer,2,false,home_service +services_and_business > home_service > plumbing,plumbing,Plumbing,2,false,home_service +services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,3,false,home_service +services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,2,false,home_service +services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,2,false,home_service +services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,2,false,home_service +services_and_business > home_service > recycling_center,recycling_center,Recycling Center,2,false,home_service +services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,2,false,home_service +services_and_business > home_service > security_systems,security_systems,Security Systems,2,false,home_service +services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,2,false,home_service +services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,3,false,home_service +services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,2,false,home_service +services_and_business > home_service > shutters,shutters,Shutters,2,false,home_service +services_and_business > home_service > siding,siding,Siding,2,false,home_service +services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,2,false,home_service +services_and_business > home_service > solar_installation,solar_installation,Solar Installation,2,false,home_service +services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,2,false,home_service +services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,2,false,home_service +services_and_business > home_service > stucco_service,stucco_service,Stucco Service,2,false,home_service +services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,2,false,home_service +services_and_business > home_service > tiling,tiling,Tiling,2,false,home_service +services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,2,false,home_service +services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,2,false,home_service +services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,2,false,home_service +services_and_business > home_service > water_delivery,water_delivery,Water Delivery,2,false,home_service +services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,2,false,home_service +services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,2,false,home_service +services_and_business > home_service > waterproofing,waterproofing,Waterproofing,2,false,home_service +services_and_business > home_service > well_drilling,well_drilling,Well Drilling,2,false,home_service +services_and_business > home_service > window_washing,window_washing,Window Washing,2,false,home_service +services_and_business > home_service > windows_installation,windows_installation,Windows Installation,2,false,home_service +services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,3,false,home_service +services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,1,true,housing_or_property_service +services_and_business > housing_or_property_service > apartment,apartment,Apartment,2,true,apartment +services_and_business > housing_or_property_service > condominium,condominium,Condominium,2,true,condominium +services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,2,false,housing_or_property_service +services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,2,false,housing_or_property_service +services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,2,false,housing_or_property_service +services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,2,true,senior_living_facility +services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,3,false,senior_living_facility +services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,3,false,senior_living_facility +services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,3,false,senior_living_facility +services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,2,false,housing_or_property_service +services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,1,true,industrial_facility_or_service +services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,2,false,industrial_facility_or_service +services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,2,false,industrial_facility_or_service +services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,2,false,industrial_facility_or_service +services_and_business > laundry_service,laundry_service,Laundry Service,1,true,laundry_service +services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,2,false,laundry_service +services_and_business > laundry_service > laundromat,laundromat,Laundromat,2,false,laundry_service +services_and_business > legal_service,legal_service,Legal Service,1,true,legal_service +services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,2,true,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,divorce_and_family_law,Divorce and Family Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,ip_and_internet_law,Ip and Internet Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,wills_trusts_and_probate,Wills Trusts and Probate,3,false,attorney_or_law_firm +services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,3,false,attorney_or_law_firm +services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,2,false,legal_service +services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,2,false,legal_service +services_and_business > legal_service > mediator,mediator,Mediator,2,false,legal_service +services_and_business > legal_service > notary_public,notary_public,Notary Public,2,false,legal_service +services_and_business > legal_service > patent_law,patent_law,Patent Law,2,false,legal_service +services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,2,false,legal_service +services_and_business > legal_service > process_server,process_server,Process Server,2,false,legal_service +services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,2,false,legal_service +services_and_business > media_service,media_service,Media Service,1,true,media_service +services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,2,false,media_service +services_and_business > media_service > bookbinding,bookbinding,Bookbinding,2,false,media_service +services_and_business > media_service > calligraphy,calligraphy,Calligraphy,2,false,media_service +services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,2,false,media_service +services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,2,false,media_service +services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,2,false,media_service +services_and_business > media_service > engraving,engraving,Engraving,2,false,media_service +services_and_business > media_service > media_critic,media_critic,Media Critic,2,false,media_service +services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,3,false,media_service +services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,3,false,media_service +services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,3,false,media_service +services_and_business > media_service > media_news_company,media_news_company,Media News Company,2,false,media_service +services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,3,false,media_service +services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,3,false,media_service +services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,3,false,media_service +services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,3,false,media_service +services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,3,false,media_service +services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,3,false,media_service +services_and_business > media_service > media_news_company > music_production,music_production,Music Production,3,false,media_service +services_and_business > media_service > media_news_company > publisher,publisher,Publisher,3,false,media_service +services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,3,true,radio_station +services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,3,false,media_service +services_and_business > media_service > media_news_company > television_station,television_station,Television Station,3,true,television_station +services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,3,false,media_service +services_and_business > media_service > media_news_website,media_news_website,Media News Website,2,false,media_service +services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,2,false,media_service +services_and_business > media_service > music_production_service,music_production_service,Music Production Service,2,false,media_service +services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,2,false,media_service +services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,3,false,media_service +services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,3,false,media_service +services_and_business > media_service > photography_service,photography_service,Photography Service,2,false,media_service +services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,3,false,media_service +services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,3,false,media_service +services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,3,false,media_service +services_and_business > media_service > print_media,print_media,Print Media,2,false,media_service +services_and_business > media_service > record_label,record_label,Record Label,2,false,media_service +services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,2,false,media_service +services_and_business > media_service > studio_taping,studio_taping,Studio Taping,2,false,media_service +services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,2,false,media_service +services_and_business > media_service > video_film_production,video_film_production,Video Film Production,2,false,media_service +services_and_business > media_service > weather_station,weather_station,Weather Station,2,false,media_service +services_and_business > printing_service,printing_service,Printing Service,1,true,printing_service +services_and_business > printing_service > 3d_printing_service,3d_printing_service,3d Printing Service,2,false,printing_service +services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,2,false,printing_service +services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,2,false,printing_service +services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,2,false,printing_service +services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-shirt Printing Service,3,false,printing_service +services_and_business > professional_service,professional_service,Professional Service,1,true,professional_service +services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,2,false,professional_service +services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,2,false,professional_service +services_and_business > professional_service > billing_service,billing_service,Billing Service,2,false,professional_service +services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,2,false,professional_service +services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,2,false,professional_service +services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,2,false,professional_service +services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,2,false,professional_service +services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,2,false,professional_service +services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,3,false,professional_service +services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,3,false,professional_service +services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,3,false,professional_service +services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,2,false,professional_service +services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,2,false,professional_service +services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,2,false,professional_service +services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,2,false,professional_service +services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,2,false,professional_service +services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,3,false,professional_service +services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,2,false,professional_service +services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,2,false,professional_service +services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,2,false,professional_service +services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,2,false,professional_service +services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,2,false,professional_service +services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,2,false,professional_service +services_and_business > professional_service > public_relations,public_relations,Public Relations,2,false,professional_service +services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,2,false,professional_service +services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,2,false,professional_service +services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,2,false,professional_service +services_and_business > professional_service > translation_service,translation_service,Translation Service,2,false,professional_service +services_and_business > professional_service > typing_service,typing_service,Typing Service,2,false,professional_service +services_and_business > professional_service > writing_service,writing_service,Writing Service,2,false,professional_service +services_and_business > real_estate_service,real_estate_service,Real Estate Service,1,true,real_estate_service +services_and_business > real_estate_service > builder,builder,Builder,2,false,real_estate_service +services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,3,false,real_estate_service +services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,2,false,real_estate_service +services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,2,false,real_estate_service +services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,2,false,real_estate_service +services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,2,false,real_estate_service +services_and_business > real_estate_service > home_organization,home_organization,Home Organization,2,false,real_estate_service +services_and_business > real_estate_service > home_staging,home_staging,Home Staging,2,false,real_estate_service +services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,2,false,real_estate_service +services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,2,false,real_estate_service +services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,2,false,real_estate_service +services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,2,false,real_estate_service +services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,2,false,real_estate_service +services_and_business > real_estate_service > property_management,property_management,Property Management,2,false,real_estate_service +services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,2,false,real_estate_service +services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,3,false,real_estate_service +services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,2,false,real_estate_service +services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,2,false,real_estate_service +services_and_business > rental_service,rental_service,Rental Service,1,true,rental_service +services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,2,false,rental_service +services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,2,false,rental_service +services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,2,false,rental_service +services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,2,false,rental_service +services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,2,false,rental_service +services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,2,false,rental_service +services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,2,false,rental_service +services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,3,false,rental_service +services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,3,false,rental_service +services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,3,false,rental_service +services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,3,false,rental_service +services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,3,false,rental_service +services_and_business > security_service,security_service,Security Service,1,true,security_service +services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,2,false,security_service +services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,1,true,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > courier_and_delivery_service,courier_and_delivery_service,Courier and Delivery Service,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,packaging_contractors_and_service,Packaging Contractors and Service,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,2,false,shipping_or_delivery_service +services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,2,false,shipping_or_delivery_service +services_and_business > storage_facility,storage_facility,Storage Facility,1,true,storage_facility +services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,2,false,storage_facility +services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,2,false,storage_facility +services_and_business > storage_facility > package_locker,package_locker,Package Locker,2,false,storage_facility +services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,2,false,storage_facility +services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,2,false,storage_facility +services_and_business > technical_service,technical_service,Technical Service,1,true,technical_service +services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,2,false,technical_service +services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,2,false,technical_service +services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,2,false,technical_service +services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,2,false,technical_service +services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,2,false,technical_service +services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,2,false,technical_service +services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,2,false,technical_service +services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,2,false,technical_service +services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,2,false,technical_service +services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,3,false,technical_service +services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,2,false,technical_service +services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,3,false,technical_service +services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,3,false,technical_service +services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,2,false,technical_service +services_and_business > technical_service > laboratory,laboratory,Laboratory,2,false,technical_service +services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,2,false,technical_service +services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,2,false,technical_service +services_and_business > technical_service > software_development,software_development,Software Development,2,false,technical_service +services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,2,false,technical_service +services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,2,false,technical_service +services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,2,false,technical_service +services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,1,true,telecommunications_service +services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,1,true,utility_energy_infrastructure +services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,2,false,utility_energy_infrastructure +shopping,shopping,Shopping,0,true,shopping +shopping > convenience_store,convenience_store,Convenience Store,1,true,convenience_store +shopping > department_store,department_store,Department Store,1,true,department_store +shopping > discount_store,discount_store,Discount Store,1,true,discount_store +shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,1,true,fashion_and_apparel_store +shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,baby_gear_and_nursery_store,Baby Gear and Nursery Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,Plus Size Clothing Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,Custom T-shirt Store,4,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,4,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,3,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,2,false,fashion_and_apparel_store +shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,3,false,fashion_and_apparel_store +shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,1,true,food_and_beverage_store +shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,2,false,food_and_beverage_store +shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,2,false,food_and_beverage_store +shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,2,false,food_and_beverage_store +shopping > food_and_beverage_store > csa_farm,csa_farm,Csa Farm,2,false,food_and_beverage_store +shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,2,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,2,false,food_and_beverage_store +shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,2,false,food_and_beverage_store +shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,3,false,food_and_beverage_store +shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,2,false,food_and_beverage_store +shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,2,false,food_and_beverage_store +shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,2,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,3,false,food_and_beverage_store +shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,2,false,food_and_beverage_store +shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,2,false,food_and_beverage_store +shopping > food_and_beverage_store > water_store,water_store,Water Store,2,false,food_and_beverage_store +shopping > kiosk,kiosk,Kiosk,1,true,kiosk +shopping > market,market,Market,1,true,market +shopping > market > bazaar,bazaar,Bazaar,2,false,market +shopping > market > farmers_market,farmers_market,Farmers Market,2,true,farmers_market +shopping > market > health_market,health_market,Health Market,2,false,market +shopping > market > holiday_market,holiday_market,Holiday Market,2,false,market +shopping > market > market_stall,market_stall,Market Stall,2,false,market +shopping > market > night_market,night_market,Night Market,2,false,market +shopping > market > public_market,public_market,Public Market,2,false,market +shopping > market > shopping_passage,shopping_passage,Shopping Passage,2,false,market +shopping > market > street_vendor,street_vendor,Street Vendor,2,false,market +shopping > second_hand_store,second_hand_store,Second Hand Store,1,true,second_hand_store +shopping > second_hand_store > antique_store,antique_store,Antique Store,2,false,second_hand_store +shopping > second_hand_store > flea_market,flea_market,Flea Market,2,false,second_hand_store +shopping > second_hand_store > junkyard,junkyard,Junkyard,2,false,second_hand_store +shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,2,false,second_hand_store +shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,2,false,second_hand_store +shopping > shopping_mall,shopping_mall,Shopping Mall,1,true,shopping_mall +shopping > shopping_service,shopping_service,Shopping Service,1,true,shopping_service +shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,2,false,shopping_service +shopping > specialty_store,specialty_store,Specialty Store,1,true,specialty_store +shopping > specialty_store > adult_store,adult_store,Adult Store,2,false,specialty_store +shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,2,true,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,3,false,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,Livestock Feed and Supply Store,3,false,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,3,false,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,4,false,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,4,false,animal_and_pet_store +shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,4,false,animal_and_pet_store +shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,2,true,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,Embroidery and Crochet Store,4,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,knitting_supply_store,Knitting Supply Store,4,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,3,false,arts_crafts_and_hobby_store +shopping > specialty_store > auction_house,auction_house,Auction House,2,false,specialty_store +shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,3,false,specialty_store +shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,2,true,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,3,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,4,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,comic_books_store,Comic Books Store,4,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,4,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,music_and_dvd_store,Music and DVD Store,3,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,Newspaper and Magazines Store,3,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,video_and_video_game_rental,Video and Video Game Rental,3,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,3,false,books_music_and_video_store +shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,3,false,books_music_and_video_store +shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,2,false,specialty_store +shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,2,false,specialty_store +shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,2,false,specialty_store +shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,2,false,specialty_store +shopping > specialty_store > electronics_store,electronics_store,Electronics Store,2,true,electronics_store +shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,3,false,electronics_store +shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,3,false,electronics_store +shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,3,false,electronics_store +shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,3,false,electronics_store +shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,3,false,electronics_store +shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,3,false,electronics_store +shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,3,false,electronics_store +shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,3,false,electronics_store +shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,3,false,electronics_store +shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,2,false,specialty_store +shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,3,false,specialty_store +shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,3,false,specialty_store +shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,2,false,specialty_store +shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,2,true,flowers_and_gifts_store +shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,3,false,flowers_and_gifts_store +shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,3,false,flowers_and_gifts_store +shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,3,false,flowers_and_gifts_store +shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,2,false,specialty_store +shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,2,false,specialty_store +shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,3,false,specialty_store +shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,2,true,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,Bedding and Bath Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,4,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,do_it_yourself_store,Do IT Yourself Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,Welding Supply Store,4,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,Hot Tub and Pool Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,Kitchen and Bath Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,Bathroom Fixture Store,4,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,Kitchen Supply Store,4,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,Nursery and Gardening Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,Hydroponic Gardening Store,4,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,3,false,hardware_home_and_garden_store +shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,2,false,specialty_store +shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,3,false,specialty_store +shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,3,false,specialty_store +shopping > specialty_store > musical_instrument_and_pro_audio_store,musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,2,true,musical_instrument_and_pro_audio_store +shopping > specialty_store > musical_instrument_and_pro_audio_store > dj_equipment_store,dj_equipment_store,DJ Equipment Store,3,false,musical_instrument_and_pro_audio_store +shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store,musical_instrument_store,Musical Instrument Store,3,false,musical_instrument_and_pro_audio_store +shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,guitar_store,Guitar Store,4,false,musical_instrument_and_pro_audio_store +shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,piano_store,Piano Store,4,false,musical_instrument_and_pro_audio_store +shopping > specialty_store > musical_instrument_and_pro_audio_store > pro_audio_store,pro_audio_store,Pro Audio Store,3,false,musical_instrument_and_pro_audio_store +shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,2,true,office_supply_store +shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,3,false,office_supply_store +shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,3,false,office_supply_store +shopping > specialty_store > outlet_store,outlet_store,Outlet Store,2,false,specialty_store +shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,2,false,specialty_store +shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,2,true,personal_care_and_beauty_store +shopping > specialty_store > personal_care_and_beauty_store > bath_and_body_store,bath_and_body_store,Bath and Body Store,3,false,personal_care_and_beauty_store +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,3,false,personal_care_and_beauty_store +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,cosmetics_and_fragrance_store,Cosmetics and Fragrance Store,4,false,personal_care_and_beauty_store +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,hair_supply_store,Hair Supply Store,4,false,personal_care_and_beauty_store +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,4,false,personal_care_and_beauty_store +shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,2,true,pharmacy_and_drug_store +shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,3,false,pharmacy_and_drug_store +shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,3,false,pharmacy_and_drug_store +shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,2,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,2,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,4,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > hindu_goods_store,hindu_goods_store,Hindu Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > islamic_goods_store,islamic_goods_store,Islamic Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > jewish_goods_store,jewish_goods_store,Jewish Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spirit_store,mind_body_spirit_store,Mind Body Spirit Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,3,false,specialty_store +shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,3,false,specialty_store +shopping > specialty_store > safe_store,safe_store,Safe Store,2,false,specialty_store +shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,2,false,specialty_store +shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,2,false,specialty_store +shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,3,false,specialty_store +shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,2,false,specialty_store +shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,2,true,sporting_goods_store +shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,4,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,3,false,sporting_goods_store +shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,3,false,sporting_goods_store +shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,2,false,specialty_store +shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,3,false,specialty_store +shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,3,false,specialty_store +shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,2,true,toys_and_games_store +shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,3,false,toys_and_games_store +shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,3,false,toys_and_games_store +shopping > specialty_store > trophy_store,trophy_store,Trophy Store,2,false,specialty_store +shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,2,true,vehicle_parts_store +shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,3,false,vehicle_parts_store +shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,3,false,vehicle_parts_store +shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,3,false,vehicle_parts_store +shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,3,false,vehicle_parts_store +shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,3,false,vehicle_parts_store +shopping > superstore,superstore,Superstore,1,true,superstore +shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,1,true,vehicle_dealer +shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,2,true,auto_dealer +shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,3,false,auto_dealer +shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,3,false,auto_dealer +shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,3,false,auto_dealer +shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,2,false,vehicle_dealer +shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,2,false,vehicle_dealer +shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,1,true,warehouse_club_store +sports_and_recreation,sports_and_recreation,Sports and Recreation,0,true,sports_and_recreation +sports_and_recreation > park,park,Park,1,true,park +sports_and_recreation > park > dog_park,dog_park,Dog Park,2,true,dog_park +sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,2,false,park +sports_and_recreation > park > national_park,national_park,National Park,2,true,national_park +sports_and_recreation > park > playground,playground,Playground,2,true,playground +sports_and_recreation > park > state_park,state_park,State Park,2,false,park +sports_and_recreation > park > water_park,water_park,Water Park,2,false,park +sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,1,true,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,Canoe and Kayak Hire Service,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,2,false,recreational_equipment_rental +sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,1,true,recreational_trail_or_path +sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,2,false,recreational_trail_or_path +sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,2,false,recreational_trail_or_path +sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,2,false,recreational_trail_or_path +sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,2,false,recreational_trail_or_path +sports_and_recreation > sport_league,sport_league,Sport League,1,true,sport_league +sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,2,false,sport_league +sports_and_recreation > sport_league > esports_league,esports_league,Esports League,2,false,sport_league +sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,2,false,sport_league +sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,2,false,sport_league +sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,1,true,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,2,true,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,3,false,fitness_studio +sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,2,true,golf_course +sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,3,false,golf_course +sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,2,true,gym +sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,3,false,gym +sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track > track_and_field_track,track_and_field_track,Track and Field Track,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > running_and_track > track_field_event,track_field_event,Track Field Event,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,2,true,skate_park +sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,2,true,skating_rink +sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,3,false,skating_rink +sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,3,false,skating_rink +sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,Sky Diving Drop Zone,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,2,true,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,3,false,sport_court +sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,2,true,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,4,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,3,false,sport_field +sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,2,true,sports_complex +sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,2,true,swimming_pool +sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,3,false,swimming_pool +sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,4,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,4,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,3,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,4,false,sport_or_fitness_facility +sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,2,false,sport_or_fitness_facility +sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,1,true,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,Chinese Martial Arts Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,muay_thai_club,Muay Thai Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > running_and_track_club,running_and_track_club,Running and Track Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > running_and_track_club > track_and_field_club,track_and_field_club,Track and Field Club,3,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,2,false,sport_or_recreation_club +sports_and_recreation > sport_team,sport_team,Sport Team,1,true,sport_team +sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,2,false,sport_team +sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,2,false,sport_team +sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,2,false,sport_team +sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,2,false,sport_team +travel_and_transportation,travel_and_transportation,Travel and Transportation,0,true,travel_and_transportation +travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility or Service,1,true,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies,aircraft_parts_and_supplies,Aircraft Parts and Supplies,2,false,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,avionics_shop,Avionics Shop,3,false,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,2,false,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,2,false,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,2,true,airport +travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,3,false,airport +travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,2,false,air_transport_facility_or_service +travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,2,false,air_transport_facility_or_service +travel_and_transportation > fueling_station,fueling_station,Fueling Station,1,true,fueling_station +travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,2,true,ev_charging_station +travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,2,true,gas_station +travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,3,false,gas_station +travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,3,false,gas_station +travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,1,true,ground_transport_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service,bikes_and_bike_service,Bikes and Bike Service,2,false,ground_transport_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,bike_sharing_location,Bike Sharing Location,3,false,ground_transport_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,public_transit_facility_or_service,Public Transit Facility or Service,2,true,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,bus_station,Bus Station,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,bus_ticket_agency,Bus Ticket Agency,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,cable_car_service,Cable Car Service,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,coach_bus,Coach Bus,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > light_rail_and_subway_station,light_rail_and_subway_station,Light Rail and Subway Station,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,metro_station,Metro Station,3,false,public_transit_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,rail_facility_or_service,Rail Facility or Service,2,true,rail_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,railway_ticket_agent,Railway Ticket Agent,3,false,rail_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,3,false,rail_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,3,true,train_station +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,2,false,ground_transport_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,rest_stop,Rest Stop,3,true,rest_stop +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,3,true,toll_station +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,3,false,ground_transport_facility_or_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,taxi_or_ride_share_service,Taxi or Ride Share Service,2,true,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,car_sharing,Car Sharing,3,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,limo_service,Limo Service,3,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,pedicab_service,Pedicab Service,3,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,ride_share_service,Ride Share Service,3,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,taxi_service,Taxi Service,3,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,taxi_stand,Taxi Stand,4,false,taxi_or_ride_share_service +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,town_car_service,Town Car Service,3,false,taxi_or_ride_share_service +travel_and_transportation > parking,parking,Parking,1,true,parking +travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,2,false,parking +travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,2,false,parking +travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,2,true,park_and_ride +travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,2,true,parking_garage +travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,2,true,parking_lot +travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,1,false,travel_and_transportation +travel_and_transportation > travel_service,travel_service,Travel Service,1,true,travel_service +travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,2,false,travel_service +travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,2,false,travel_service +travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,2,false,travel_service +travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,3,false,travel_service +travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,2,false,travel_service +travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,3,false,travel_service +travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,3,false,travel_service +travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,2,false,travel_service +travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,2,false,travel_service +travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,2,false,travel_service +travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,1,true,vehicle_service +travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,2,false,vehicle_service +travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,2,true,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,Windshield Installation and Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,brake_service_and_repair,Brake Service and Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,Exhaust and Muffler Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,Tire Dealer and Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,Wheel and Rim Repair,4,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,3,false,automotive_service +travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,3,false,automotive_service +travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,2,false,vehicle_service +travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,3,false,vehicle_service +travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,2,false,vehicle_service +travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,2,false,vehicle_service +travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,3,false,vehicle_service +travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,2,false,vehicle_service +travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,3,false,vehicle_service +travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,2,false,vehicle_service +travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,3,false,vehicle_service +travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,1,true,water_transport_facility_or_service +travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,2,true,ferry_service +travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,2,true,water_taxi_service diff --git a/static/taxonomy/2026-09-23.0/taxonomy.json b/static/taxonomy/2026-09-23.0/taxonomy.json new file mode 100644 index 000000000..ebbbab0cc --- /dev/null +++ b/static/taxonomy/2026-09-23.0/taxonomy.json @@ -0,0 +1 @@ +{"version":"2026-09-23.0","schemaVersion":"v2.0.0","releaseDate":"2026-09-23","generatedAt":"2026-09-23","source":{"taxonomy":"overture_taxonomy.json","basicCategories":"overture_basic_category.json"},"stats":{"categories":2302,"basicCategories":298,"rootGroups":13,"maxDepth":5,"totalPlaces":78517770},"tree":[{"name":"arts_and_entertainment","displayName":"Arts and Entertainment","isBasic":true,"count":318208,"totalCount":1637265,"children":[{"name":"amusement_attraction","displayName":"Amusement Attraction","isBasic":true,"totalCount":51393,"children":[{"name":"amusement_park","displayName":"Amusement Park","isBasic":true,"count":44180,"totalCount":44180},{"name":"carnival_venue","displayName":"Carnival Venue","basicCategory":"amusement_attraction","count":23,"totalCount":23},{"name":"carousel","displayName":"Carousel","basicCategory":"amusement_attraction","count":6,"totalCount":6},{"name":"circus_venue","displayName":"Circus Venue","basicCategory":"amusement_attraction","count":4277,"totalCount":4277},{"name":"haunted_house","displayName":"Haunted House","basicCategory":"amusement_attraction","count":2907,"totalCount":2907}]},{"name":"animal_attraction","displayName":"Animal Attraction","isBasic":true,"totalCount":31434,"children":[{"name":"aquarium","displayName":"Aquarium","isBasic":true,"count":6983,"totalCount":6983},{"name":"wildlife_sanctuary","displayName":"Wildlife Sanctuary","basicCategory":"animal_attraction","count":10958,"totalCount":10958},{"name":"zoo","displayName":"Zoo","isBasic":true,"count":10342,"totalCount":13493,"children":[{"name":"petting_zoo","displayName":"Petting Zoo","basicCategory":"zoo","count":3000,"totalCount":3000},{"name":"zoo_exhibit","displayName":"Zoo Exhibit","basicCategory":"zoo","count":151,"totalCount":151}]}]},{"name":"arts_and_crafts_space","displayName":"Arts and Crafts Space","isBasic":true,"count":15,"totalCount":171085,"children":[{"name":"art_gallery","displayName":"Art Gallery","isBasic":true,"count":153703,"totalCount":153703},{"name":"artist_studio","displayName":"Artist Studio","basicCategory":"arts_and_crafts_space","count":5321,"totalCount":5321},{"name":"glass_blowing_venue","displayName":"Glass Blowing Venue","basicCategory":"arts_and_crafts_space","count":2399,"totalCount":2399},{"name":"paint_and_sip_venue","displayName":"Paint and Sip Venue","basicCategory":"arts_and_crafts_space","count":311,"totalCount":311},{"name":"paint_your_own_pottery_venue","displayName":"Paint Your Own Pottery Venue","basicCategory":"arts_and_crafts_space","count":184,"totalCount":184},{"name":"sculpture_park","displayName":"Sculpture Park","basicCategory":"arts_and_crafts_space","count":2,"totalCount":2},{"name":"sculpture_statue","displayName":"Sculpture Statue","isBasic":true,"count":7872,"totalCount":7872},{"name":"street_art","displayName":"Street Art","isBasic":true,"count":1278,"totalCount":1278}]},{"name":"event_venue","displayName":"Event Venue","isBasic":true,"count":31310,"totalCount":55482,"children":[{"name":"auditorium","displayName":"Auditorium","basicCategory":"event_venue","count":20552,"totalCount":20552},{"name":"exhibition_and_trade_fair_venue","displayName":"Exhibition and Trade Fair Venue","basicCategory":"event_venue","count":3620,"totalCount":3620}]},{"name":"festival_venue","displayName":"Festival Venue","isBasic":true,"count":5654,"totalCount":17425,"children":[{"name":"fairgrounds","displayName":"Fairgrounds","isBasic":true,"count":11493,"totalCount":11493},{"name":"film_festival_venue","displayName":"Film Festival Venue","basicCategory":"festival_venue","count":78,"totalCount":78},{"name":"music_festival_venue","displayName":"Music Festival Venue","basicCategory":"festival_venue","count":200,"totalCount":200}]},{"name":"gaming_venue","displayName":"Gaming Venue","isBasic":true,"totalCount":114837,"children":[{"name":"arcade","displayName":"Arcade","isBasic":true,"count":29999,"totalCount":29999},{"name":"betting_center","displayName":"Betting Center","basicCategory":"gaming_venue","count":18427,"totalCount":18427},{"name":"bingo_hall","displayName":"Bingo Hall","basicCategory":"gaming_venue","count":3175,"totalCount":3175},{"name":"casino","displayName":"Casino","isBasic":true,"count":34615,"totalCount":34615},{"name":"escape_room","displayName":"Escape Room","basicCategory":"gaming_venue","count":10408,"totalCount":10408},{"name":"lottery_vendor","displayName":"Lottery Vendor","basicCategory":"gaming_venue","count":18196,"totalCount":18196},{"name":"scavenger_hunt","displayName":"Scavenger Hunt","basicCategory":"gaming_venue","count":17,"totalCount":17}]},{"name":"movie_theater","displayName":"Movie Theater","isBasic":true,"count":63367,"totalCount":66760,"children":[{"name":"drive_in_theater","displayName":"Drive-In Theater","basicCategory":"movie_theater","count":3277,"totalCount":3277},{"name":"outdoor_movie_space","displayName":"Outdoor Movie Space","basicCategory":"movie_theater","count":116,"totalCount":116}]},{"name":"museum","displayName":"Museum","isBasic":true,"count":77606,"totalCount":141922,"children":[{"name":"art_museum","displayName":"Art Museum","basicCategory":"museum","count":13215,"totalCount":16875,"children":[{"name":"asian_art_museum","displayName":"Asian Art Museum","basicCategory":"museum","count":109,"totalCount":109},{"name":"cartooning_museum","displayName":"Cartooning Museum","basicCategory":"museum","count":71,"totalCount":71},{"name":"contemporary_art_museum","displayName":"Contemporary Art Museum","basicCategory":"museum","count":1153,"totalCount":1153},{"name":"costume_museum","displayName":"Costume Museum","basicCategory":"museum","count":131,"totalCount":131},{"name":"decorative_arts_museum","displayName":"Decorative Arts Museum","basicCategory":"museum","count":191,"totalCount":191},{"name":"design_museum","displayName":"Design Museum","basicCategory":"museum","count":387,"totalCount":387},{"name":"modern_art_museum","displayName":"Modern Art Museum","basicCategory":"museum","count":991,"totalCount":991},{"name":"photography_museum","displayName":"Photography Museum","basicCategory":"museum","count":202,"totalCount":202},{"name":"textile_museum","displayName":"Textile Museum","basicCategory":"museum","count":425,"totalCount":425}]},{"name":"aviation_museum","displayName":"Aviation Museum","basicCategory":"museum","count":630,"totalCount":630},{"name":"childrens_museum","displayName":"Children's Museum","basicCategory":"museum","count":1550,"totalCount":1550},{"name":"history_museum","displayName":"History Museum","basicCategory":"museum","count":38357,"totalCount":41026,"children":[{"name":"civilization_museum","displayName":"Civilization Museum","basicCategory":"museum","count":516,"totalCount":516},{"name":"community_museum","displayName":"Community Museum","basicCategory":"museum","count":2153,"totalCount":2153}]},{"name":"military_museum","displayName":"Military Museum","basicCategory":"museum","count":35,"totalCount":35},{"name":"national_museum","displayName":"National Museum","basicCategory":"museum","count":7,"totalCount":7},{"name":"science_museum","displayName":"Science Museum","basicCategory":"museum","count":2956,"totalCount":3482,"children":[{"name":"computer_museum","displayName":"Computer Museum","basicCategory":"museum","count":526,"totalCount":526}]},{"name":"sports_museum","displayName":"Sports Museum","basicCategory":"museum","count":512,"totalCount":512},{"name":"state_museum","displayName":"State Museum","basicCategory":"museum","count":199,"totalCount":199}]},{"name":"nightlife_venue","displayName":"Nightlife Venue","isBasic":true,"count":6579,"totalCount":111811,"children":[{"name":"adult_entertainment_venue","displayName":"Adult Entertainment Venue","isBasic":true,"count":11801,"totalCount":13578,"children":[{"name":"erotic_massage_venue","displayName":"Erotic Massage Venue","basicCategory":"adult_entertainment_venue","count":473,"totalCount":473},{"name":"strip_club","displayName":"Strip Club","basicCategory":"adult_entertainment_venue","count":1304,"totalCount":1304}]},{"name":"bar_crawl","displayName":"Bar Crawl","basicCategory":"nightlife_venue","count":16,"totalCount":16},{"name":"club_crawl","displayName":"Club Crawl","basicCategory":"nightlife_venue","count":8,"totalCount":8},{"name":"dance_club","displayName":"Dance Club","isBasic":true,"count":90326,"totalCount":91630,"children":[{"name":"salsa_club","displayName":"Salsa Club","basicCategory":"dance_club","count":1304,"totalCount":1304}]}]},{"name":"performing_arts_venue","displayName":"Performing Arts Venue","isBasic":true,"count":24230,"totalCount":330034,"children":[{"name":"amphitheater","displayName":"Amphitheater","basicCategory":"performing_arts_venue","count":111,"totalCount":111},{"name":"cabaret","displayName":"Cabaret","basicCategory":"performing_arts_venue","count":46,"totalCount":46},{"name":"comedy_club","displayName":"Comedy Club","isBasic":true,"count":8188,"totalCount":8188},{"name":"music_venue","displayName":"Music Venue","isBasic":true,"count":196726,"totalCount":240674,"children":[{"name":"band_orchestra_symphony","displayName":"Band Orchestra Symphony","basicCategory":"music_venue","count":1392,"totalCount":1392},{"name":"choir","displayName":"Choir","basicCategory":"music_venue","count":7719,"totalCount":7719},{"name":"jazz_and_blues_venue","displayName":"Jazz and Blues Venue","basicCategory":"music_venue","count":3401,"totalCount":3401},{"name":"karaoke_venue","displayName":"Karaoke Venue","basicCategory":"music_venue","count":30030,"totalCount":30030},{"name":"opera_and_ballet","displayName":"Opera and Ballet","basicCategory":"music_venue","count":1406,"totalCount":1406}]},{"name":"theatre_venue","displayName":"Theatre Venue","isBasic":true,"count":56405,"totalCount":56785,"children":[{"name":"dinner_theater","displayName":"Dinner Theater","basicCategory":"theatre_venue","count":380,"totalCount":380}]}]},{"name":"rural_attraction","displayName":"Rural Attraction","isBasic":true,"totalCount":2666,"children":[{"name":"attraction_farm","displayName":"Attraction Farm","basicCategory":"rural_attraction","count":127,"totalCount":127},{"name":"corn_maze","displayName":"Corn Maze","basicCategory":"rural_attraction","totalCount":0},{"name":"country_dance_hall","displayName":"Country Dance Hall","basicCategory":"rural_attraction","count":133,"totalCount":133},{"name":"pumpkin_patch","displayName":"Pumpkin Patch","basicCategory":"rural_attraction","count":160,"totalCount":160},{"name":"rodeo","displayName":"Rodeo","isBasic":true,"count":2246,"totalCount":2246}]},{"name":"science_attraction","displayName":"Science Attraction","isBasic":true,"totalCount":4927,"children":[{"name":"makerspace","displayName":"Makerspace","isBasic":true,"count":213,"totalCount":213},{"name":"observatory","displayName":"Observatory","basicCategory":"science_attraction","count":3180,"totalCount":3180},{"name":"planetarium","displayName":"Planetarium","isBasic":true,"count":1432,"totalCount":1432},{"name":"virtual_reality_center","displayName":"Virtual Reality Center","basicCategory":"science_attraction","count":101,"totalCount":102,"children":[{"name":"vr_cafe","displayName":"VR Cafe","basicCategory":"science_attraction","count":1,"totalCount":1}]}]},{"name":"social_club","displayName":"Social Club","isBasic":true,"count":59709,"totalCount":65802,"children":[{"name":"country_club","displayName":"Country Club","isBasic":true,"count":1045,"totalCount":1045},{"name":"fraternal_organization","displayName":"Fraternal Organization","basicCategory":"social_club","count":2221,"totalCount":2221},{"name":"veterans_organization","displayName":"Veterans Organization","basicCategory":"social_club","count":2827,"totalCount":2827}]},{"name":"spiritual_advising","displayName":"Spiritual Advising","isBasic":true,"count":228,"totalCount":27723,"children":[{"name":"astrological_advising","displayName":"Astrological Advising","isBasic":true,"count":9482,"totalCount":9482},{"name":"fortune_telling","displayName":"Fortune Telling","basicCategory":"spiritual_advising","count":162,"totalCount":162},{"name":"psychic_advising","displayName":"Psychic Advising","isBasic":true,"count":17851,"totalCount":17851}]},{"name":"stadium_arena","displayName":"Stadium Arena","isBasic":true,"count":94430,"totalCount":124301,"children":[{"name":"arena","displayName":"Arena","basicCategory":"stadium_arena","count":76,"totalCount":76},{"name":"stadium","displayName":"Stadium","basicCategory":"stadium_arena","count":347,"totalCount":29795,"children":[{"name":"baseball_stadium","displayName":"Baseball Stadium","basicCategory":"stadium_arena","count":1824,"totalCount":1824},{"name":"basketball_stadium","displayName":"Basketball Stadium","basicCategory":"stadium_arena","count":895,"totalCount":895},{"name":"cricket_ground","displayName":"Cricket Ground","basicCategory":"stadium_arena","count":5088,"totalCount":5088},{"name":"football_stadium","displayName":"Football Stadium","basicCategory":"stadium_arena","count":9018,"totalCount":9018},{"name":"hockey_arena","displayName":"Hockey Arena","basicCategory":"stadium_arena","count":1266,"totalCount":1266},{"name":"rugby_stadium","displayName":"Rugby Stadium","basicCategory":"stadium_arena","count":582,"totalCount":582},{"name":"soccer_stadium","displayName":"Soccer Stadium","basicCategory":"stadium_arena","count":7732,"totalCount":7732},{"name":"tennis_stadium","displayName":"Tennis Stadium","basicCategory":"stadium_arena","count":852,"totalCount":852},{"name":"track_stadium","displayName":"Track Stadium","basicCategory":"stadium_arena","count":2191,"totalCount":2191}]}]},{"name":"ticket_office_or_booth","displayName":"Ticket Office or Booth","isBasic":true,"count":1455,"totalCount":1455}]},{"name":"community_and_government","displayName":"Community and Government","isBasic":true,"count":235416,"totalCount":2826472,"children":[{"name":"civic_organization","displayName":"Civic Organization","isBasic":true,"count":53535,"totalCount":309060,"children":[{"name":"charity_organization","displayName":"Charity Organization","basicCategory":"civic_organization","count":115631,"totalCount":115631},{"name":"civic_center","displayName":"Civic Center","isBasic":true,"count":1043,"totalCount":1043},{"name":"labor_union","displayName":"Labor Union","isBasic":true,"count":28961,"totalCount":28961},{"name":"non_governmental_association","displayName":"Non Governmental Association","basicCategory":"civic_organization","count":58390,"totalCount":58390},{"name":"political_organization","displayName":"Political Organization","isBasic":true,"count":27570,"totalCount":51500,"children":[{"name":"political_party_office","displayName":"Political Party Office","basicCategory":"political_organization","count":23930,"totalCount":23930}]}]},{"name":"government_office","displayName":"Government Office","isBasic":true,"count":535628,"totalCount":702086,"children":[{"name":"chambers_of_commerce","displayName":"Chambers of Commerce","basicCategory":"government_office","count":1921,"totalCount":1921},{"name":"courthouse","displayName":"Courthouse","isBasic":true,"count":35523,"totalCount":35523},{"name":"embassy","displayName":"Embassy","isBasic":true,"count":17406,"totalCount":17406},{"name":"government_department","displayName":"Government Department","isBasic":true,"count":23,"totalCount":17039,"children":[{"name":"department_of_motor_vehicles","displayName":"Department of Motor Vehicles","basicCategory":"government_department","count":11146,"totalCount":11146},{"name":"department_of_social_service","displayName":"Department of Social Service","basicCategory":"government_department","count":152,"totalCount":152},{"name":"health_department","displayName":"Health Department","basicCategory":"government_department","count":5718,"totalCount":5718}]},{"name":"immigration_and_naturalization_office","displayName":"Immigration and Naturalization Office","basicCategory":"government_office","count":936,"totalCount":936},{"name":"national_security_service","displayName":"National Security Service","basicCategory":"government_office","count":7,"totalCount":7},{"name":"office_of_vital_records","displayName":"Office of Vital Records","basicCategory":"government_office","count":11,"totalCount":11},{"name":"pension_office","displayName":"Pension Office","basicCategory":"government_office","count":335,"totalCount":335},{"name":"registry_office","displayName":"Registry Office","basicCategory":"government_office","count":216,"totalCount":216},{"name":"social_security_service","displayName":"Social Security Service","basicCategory":"government_office","count":1058,"totalCount":1058},{"name":"tax_office","displayName":"Tax Office","basicCategory":"government_office","count":1057,"totalCount":1057},{"name":"town_hall","displayName":"Town Hall","basicCategory":"government_office","count":90804,"totalCount":90804},{"name":"unemployment_office","displayName":"Unemployment Office","basicCategory":"government_office","count":145,"totalCount":145}]},{"name":"military_site","displayName":"Military Site","isBasic":true,"count":36195,"totalCount":36614,"children":[{"name":"military_base","displayName":"Military Base","isBasic":true,"count":419,"totalCount":419},{"name":"military_office","displayName":"Military Office","isBasic":true,"totalCount":0}]},{"name":"public_facility","displayName":"Public Facility","isBasic":true,"totalCount":80761,"children":[{"name":"public_fountain","displayName":"Public Fountain","isBasic":true,"count":12876,"totalCount":12982,"children":[{"name":"drinking_fountain","displayName":"Drinking Fountain","basicCategory":"public_fountain","count":106,"totalCount":106}]},{"name":"public_pathway","displayName":"Public Pathway","isBasic":true,"totalCount":0},{"name":"public_phone","displayName":"Public Phone","basicCategory":"public_facility","count":2,"totalCount":2},{"name":"public_plaza","displayName":"Public Plaza","isBasic":true,"count":62836,"totalCount":62836},{"name":"public_restroom","displayName":"Public Restroom","isBasic":true,"count":4941,"totalCount":4941}]},{"name":"public_safety_service","displayName":"Public Safety Service","isBasic":true,"count":523,"totalCount":193400,"children":[{"name":"fire_station","displayName":"Fire Station","isBasic":true,"count":84930,"totalCount":84930},{"name":"jail_or_prison","displayName":"Jail or Prison","isBasic":true,"count":9094,"totalCount":9202,"children":[{"name":"juvenile_detention_center","displayName":"Juvenile Detention Center","basicCategory":"jail_or_prison","count":108,"totalCount":108}]},{"name":"police_station","displayName":"Police Station","isBasic":true,"count":98745,"totalCount":98745}]},{"name":"public_utility","displayName":"Public Utility","isBasic":true,"count":15087,"totalCount":135401,"children":[{"name":"electric_utility_provider","displayName":"Electric Utility Provider","isBasic":true,"count":25870,"totalCount":25870},{"name":"garbage_collection_service","displayName":"Garbage Collection Service","basicCategory":"public_utility","count":54910,"totalCount":54910},{"name":"natural_gas_utility_provider","displayName":"Natural Gas Utility Provider","isBasic":true,"count":11896,"totalCount":11896},{"name":"septic_service","displayName":"Septic Service","basicCategory":"public_utility","count":8353,"totalCount":8353},{"name":"water_utility_provider","displayName":"Water Utility Provider","isBasic":true,"count":19285,"totalCount":19285}]},{"name":"social_or_community_service","displayName":"Social or Community Service","isBasic":true,"count":860131,"totalCount":1133734,"children":[{"name":"child_protection_service","displayName":"Child Protection Service","basicCategory":"social_or_community_service","count":1524,"totalCount":1524},{"name":"community_center","displayName":"Community Center","isBasic":true,"count":110024,"totalCount":110024},{"name":"disability_services_and_support_organization","displayName":"Disability Services and Support Organization","basicCategory":"social_or_community_service","count":24286,"totalCount":24286},{"name":"food_bank","displayName":"Food Bank","isBasic":true,"count":8688,"totalCount":8688},{"name":"foster_care_service","displayName":"Foster Care Service","basicCategory":"social_or_community_service","count":3069,"totalCount":3069},{"name":"gay_and_lesbian_services_organization","displayName":"Gay and Lesbian Services Organization","basicCategory":"social_or_community_service","count":163,"totalCount":163},{"name":"homeless_shelter","displayName":"Homeless Shelter","basicCategory":"social_or_community_service","count":7331,"totalCount":7331},{"name":"housing_authority","displayName":"Housing Authority","basicCategory":"social_or_community_service","count":9455,"totalCount":9455},{"name":"scout_hall","displayName":"Scout Hall","basicCategory":"social_or_community_service","count":9839,"totalCount":9839},{"name":"senior_citizen_service","displayName":"Senior Citizen Service","basicCategory":"social_or_community_service","count":18652,"totalCount":18652},{"name":"social_and_human_service","displayName":"Social and Human Service","basicCategory":"social_or_community_service","count":17001,"totalCount":17001},{"name":"social_welfare_center","displayName":"Social Welfare Center","basicCategory":"social_or_community_service","count":943,"totalCount":943},{"name":"volunteer_association","displayName":"Volunteer Association","basicCategory":"social_or_community_service","count":1012,"totalCount":1012},{"name":"youth_organization","displayName":"Youth Organization","isBasic":true,"count":61616,"totalCount":61616}]}]},{"name":"cultural_and_historic","displayName":"Cultural and Historic","isBasic":true,"totalCount":3167325,"children":[{"name":"cultural_center","displayName":"Cultural Center","isBasic":true,"count":57841,"totalCount":57841},{"name":"historic_site","displayName":"Historic Site","isBasic":true,"count":1014125,"totalCount":1043328,"children":[{"name":"castle","displayName":"Castle","isBasic":true,"count":15506,"totalCount":15506},{"name":"fort","displayName":"Fort","isBasic":true,"count":2300,"totalCount":2300},{"name":"historic_mission","displayName":"Historic Mission","basicCategory":"historic_site","count":2155,"totalCount":2155},{"name":"historic_tower","displayName":"Historic Tower","basicCategory":"historic_site","count":11,"totalCount":11},{"name":"lighthouse","displayName":"Lighthouse","isBasic":true,"count":3836,"totalCount":3836},{"name":"palace","displayName":"Palace","basicCategory":"historic_site","count":5366,"totalCount":5366},{"name":"ruin","displayName":"Ruin","basicCategory":"historic_site","count":29,"totalCount":29}]},{"name":"memorial_site","displayName":"Memorial Site","isBasic":true,"count":28,"totalCount":50150,"children":[{"name":"cemetery","displayName":"Cemetery","isBasic":true,"count":3007,"totalCount":3007},{"name":"memorial_park","displayName":"Memorial Park","basicCategory":"memorial_site","count":115,"totalCount":115},{"name":"monument","displayName":"Monument","isBasic":true,"count":47000,"totalCount":47000}]},{"name":"place_of_worship","displayName":"Place of Worship","isBasic":true,"count":1388,"totalCount":1624281,"children":[{"name":"buddhist_place_of_worship","displayName":"Buddhist Place of Worship","isBasic":true,"count":112123,"totalCount":112123,"children":[{"name":"mahayana_buddhist_place_of_worship","displayName":"Mahayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0,"children":[{"name":"nichiren_buddhist_place_of_worship","displayName":"Nichiren Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0},{"name":"pure_land_buddhist_place_of_worship","displayName":"Pure Land Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0},{"name":"zen_buddhist_place_of_worship","displayName":"Zen Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0}]},{"name":"theravada_buddhist_place_of_worship","displayName":"Theravada Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0},{"name":"vajrayana_buddhist_place_of_worship","displayName":"Vajrayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","totalCount":0}]},{"name":"christian_place_of_worship","displayName":"Christian Place of Worship","isBasic":true,"count":885494,"totalCount":1243576,"children":[{"name":"church_of_the_east_place_of_worship","displayName":"Church of the East Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"eastern_orthodox_place_of_worship","displayName":"Eastern Orthodox Place of Worship","basicCategory":"christian_place_of_worship","count":103,"totalCount":126,"children":[{"name":"antiochan_orthodox_place_of_worship","displayName":"Antiochan Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"bulgarian_orthodox_place_of_worship","displayName":"Bulgarian Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"georgian_orthodox_place_of_worship","displayName":"Georgian Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"greek_orthodox_place_of_worship","displayName":"Greek Orthodox Place of Worship","basicCategory":"christian_place_of_worship","count":15,"totalCount":15},{"name":"romanian_orthodox_place_of_worship","displayName":"Romanian Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"russian_orthodox_place_of_worship","displayName":"Russian Orthodox Place of Worship","basicCategory":"christian_place_of_worship","count":8,"totalCount":8},{"name":"serbian_orthodox_place_of_worship","displayName":"Serbian Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0}]},{"name":"oriental_orthodox_place_of_worship","displayName":"Oriental Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":8,"children":[{"name":"armenian_apostolic_place_of_worship","displayName":"Armenian Apostolic Place of Worship","basicCategory":"christian_place_of_worship","count":8,"totalCount":8},{"name":"coptic_orthodox_place_of_worship","displayName":"Coptic Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"eritrean_orthodox_tewahedo_place_of_worship","displayName":"Eritrean Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"ethiopian_orthodox_tewahedo_place_of_worship","displayName":"Ethiopian Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"malankara_orthodox_syrian_place_of_worship","displayName":"Malankara Orthodox Syrian Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"syriac_orthodox_place_of_worship","displayName":"Syriac Orthodox Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0}]},{"name":"protestant_place_of_worship","displayName":"Protestant Place of Worship","basicCategory":"christian_place_of_worship","count":43670,"totalCount":217952,"children":[{"name":"adventist_place_of_worship","displayName":"Adventist Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"anabaptist_place_of_worship","displayName":"Anabaptist Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"anglican_or_episcopal_place_of_worship","displayName":"Anglican or Episcopal Place of Worship","basicCategory":"christian_place_of_worship","count":25033,"totalCount":25033},{"name":"baptist_place_of_worship","displayName":"Baptist Place of Worship","basicCategory":"christian_place_of_worship","count":104309,"totalCount":104309},{"name":"lutheran_place_of_worship","displayName":"Lutheran Place of Worship","basicCategory":"christian_place_of_worship","count":508,"totalCount":508},{"name":"methodist_place_of_worship","displayName":"Methodist Place of Worship","basicCategory":"christian_place_of_worship","count":1052,"totalCount":1052},{"name":"pentecostal_place_of_worship","displayName":"Pentecostal Place of Worship","basicCategory":"christian_place_of_worship","count":43380,"totalCount":43380},{"name":"reformed_or_calvinist_place_of_worship","displayName":"Reformed or Calvinist Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0}]},{"name":"restorationist_place_of_worship","displayName":"Restorationist Place of Worship","basicCategory":"christian_place_of_worship","totalCount":2683,"children":[{"name":"jehovahs_witness_place_of_worship","displayName":"Jehovahs Witness Place of Worship","basicCategory":"christian_place_of_worship","count":2683,"totalCount":2683},{"name":"mormon_place_of_worship","displayName":"Mormon Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0}]},{"name":"roman_catholic_place_of_worship","displayName":"Roman Catholic Place of Worship","basicCategory":"christian_place_of_worship","count":137313,"totalCount":137313,"children":[{"name":"eastern_catholic_place_of_worship","displayName":"Eastern Catholic Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"western_catholic_place_of_worship","displayName":"Western Catholic Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0}]}]},{"name":"hindu_place_of_worship","displayName":"Hindu Place of Worship","isBasic":true,"count":129682,"totalCount":129682,"children":[{"name":"shaiva_hindu_place_of_worship","displayName":"Shaiva Hindu Place of Worship","basicCategory":"hindu_place_of_worship","totalCount":0},{"name":"shakta_hindu_place_of_worship","displayName":"Shakta Hindu Place of Worship","basicCategory":"hindu_place_of_worship","totalCount":0},{"name":"smarta_hindu_place_of_worship","displayName":"Smarta Hindu Place of Worship","basicCategory":"hindu_place_of_worship","totalCount":0},{"name":"vaishnava_hindu_place_of_worship","displayName":"Vaishnava Hindu Place of Worship","basicCategory":"hindu_place_of_worship","totalCount":0}]},{"name":"jewish_place_of_worship","displayName":"Jewish Place of Worship","isBasic":true,"count":8381,"totalCount":8381,"children":[{"name":"conservative_jewish_place_of_worship","displayName":"Conservative Jewish Place of Worship","basicCategory":"jewish_place_of_worship","totalCount":0},{"name":"orthodox_jewish_place_of_worship","displayName":"Orthodox Jewish Place of Worship","basicCategory":"jewish_place_of_worship","totalCount":0},{"name":"reconstructionist_jewish_place_of_worship","displayName":"Reconstructionist Jewish Place of Worship","basicCategory":"jewish_place_of_worship","totalCount":0},{"name":"reform_jewish_place_of_worship","displayName":"Reform Jewish Place of Worship","basicCategory":"jewish_place_of_worship","totalCount":0}]},{"name":"muslim_place_of_worship","displayName":"Muslim Place of Worship","isBasic":true,"count":123711,"totalCount":123711,"children":[{"name":"ibadi_muslim_place_of_worship","displayName":"Ibadi Muslim Place of Worship","basicCategory":"muslim_place_of_worship","totalCount":0},{"name":"shia_muslim_place_of_worship","displayName":"Shia Muslim Place of Worship","basicCategory":"muslim_place_of_worship","totalCount":0},{"name":"sunni_muslim_place_of_worship","displayName":"Sunni Muslim Place of Worship","basicCategory":"muslim_place_of_worship","totalCount":0}]},{"name":"sikh_place_of_worship","displayName":"Sikh Place of Worship","basicCategory":"place_of_worship","count":5420,"totalCount":5420}]},{"name":"religious_landmark","displayName":"Religious Landmark","isBasic":true,"totalCount":133,"children":[{"name":"pilgrimage_site","displayName":"Pilgrimage Site","basicCategory":"religious_landmark","count":115,"totalCount":115,"children":[{"name":"buddhist_pilgrimage_site","displayName":"Buddhist Pilgrimage Site","basicCategory":"religious_landmark","totalCount":0},{"name":"christian_pilgrimage_site","displayName":"Christian Pilgrimage Site","basicCategory":"religious_landmark","totalCount":0},{"name":"hindu_pilgrimage_site","displayName":"Hindu Pilgrimage Site","basicCategory":"religious_landmark","totalCount":0},{"name":"muslim_pilgrimage_site","displayName":"Muslim Pilgrimage Site","basicCategory":"religious_landmark","totalCount":0}]},{"name":"shrine","displayName":"Shrine","basicCategory":"religious_landmark","count":11,"totalCount":18,"children":[{"name":"catholic_shrine","displayName":"Catholic Shrine","basicCategory":"religious_landmark","totalCount":0},{"name":"shinto_shrine","displayName":"Shinto Shrine","basicCategory":"religious_landmark","count":7,"totalCount":7},{"name":"sufi_shrine","displayName":"Sufi Shrine","basicCategory":"religious_landmark","totalCount":0}]}]},{"name":"religious_organization","displayName":"Religious Organization","isBasic":true,"count":391409,"totalCount":391589,"children":[{"name":"convent","displayName":"Convent","basicCategory":"religious_organization","count":31,"totalCount":31},{"name":"monastery","displayName":"Monastery","basicCategory":"religious_organization","count":48,"totalCount":48},{"name":"seminary","displayName":"Seminary","basicCategory":"religious_organization","count":101,"totalCount":101}]},{"name":"religious_retreat_or_center","displayName":"Religious Retreat or Center","isBasic":true,"totalCount":3,"children":[{"name":"christian_retreat_center","displayName":"Christian Retreat Center","basicCategory":"religious_retreat_or_center","totalCount":0},{"name":"hindu_ashram","displayName":"Hindu Ashram","basicCategory":"religious_retreat_or_center","count":3,"totalCount":3},{"name":"zen_center","displayName":"Zen Center","basicCategory":"religious_retreat_or_center","totalCount":0}]}]},{"name":"education","displayName":"Education","isBasic":true,"count":461780,"totalCount":3597112,"children":[{"name":"education_office","displayName":"Education Office","isBasic":true,"count":9,"totalCount":2343,"children":[{"name":"board_of_education_office","displayName":"Board of Education Office","basicCategory":"education_office","count":445,"totalCount":445},{"name":"school_district_office","displayName":"School District Office","isBasic":true,"count":1889,"totalCount":1889}]},{"name":"educational_facility","displayName":"Educational Facility","isBasic":true,"count":7977,"totalCount":103959,"children":[{"name":"campus","displayName":"Campus","isBasic":true,"totalCount":0},{"name":"campus_building","displayName":"Campus Building","isBasic":true,"count":84265,"totalCount":88358,"children":[{"name":"student_union","displayName":"Student Union","basicCategory":"campus_building","count":4093,"totalCount":4093}]},{"name":"educational_camp","displayName":"Educational Camp","basicCategory":"educational_facility","count":7624,"totalCount":7624}]},{"name":"educational_service","displayName":"Educational Service","isBasic":true,"count":72150,"totalCount":190982,"children":[{"name":"after_school_program","displayName":"After School Program","basicCategory":"educational_service","count":2171,"totalCount":2171},{"name":"archaeological_service","displayName":"Archaeological Service","basicCategory":"educational_service","count":1597,"totalCount":1597},{"name":"college_counseling","displayName":"College Counseling","basicCategory":"educational_service","count":281,"totalCount":281},{"name":"test_preparation","displayName":"Test Preparation","basicCategory":"educational_service","count":18217,"totalCount":18217},{"name":"tutoring_service","displayName":"Tutoring Service","isBasic":true,"count":94861,"totalCount":96566,"children":[{"name":"private_tutor","displayName":"Private Tutor","basicCategory":"tutoring_service","count":1705,"totalCount":1705}]}]},{"name":"library","displayName":"Library","isBasic":true,"count":138982,"totalCount":138982},{"name":"place_of_learning","displayName":"Place of Learning","isBasic":true,"totalCount":2655664,"children":[{"name":"academy","displayName":"Academy","isBasic":true,"totalCount":64,"children":[{"name":"civil_examinations_academy","displayName":"Civil Examinations Academy","basicCategory":"academy","count":64,"totalCount":64}]},{"name":"adult_education_center","displayName":"Adult Education Center","basicCategory":"place_of_learning","count":9691,"totalCount":9691},{"name":"class_venue","displayName":"Class Venue","isBasic":true,"totalCount":37,"children":[{"name":"tasting_class","displayName":"Tasting Class","basicCategory":"class_venue","count":8,"totalCount":37,"children":[{"name":"cheese_tasting_class","displayName":"Cheese Tasting Class","basicCategory":"class_venue","count":9,"totalCount":9},{"name":"wine_tasting_class","displayName":"Wine Tasting Class","basicCategory":"class_venue","count":20,"totalCount":20}]}]},{"name":"college_university","displayName":"College University","isBasic":true,"count":379087,"totalCount":381819,"children":[{"name":"architecture_school","displayName":"Architecture School","basicCategory":"college_university","count":83,"totalCount":83},{"name":"business_school","displayName":"Business School","basicCategory":"college_university","count":1018,"totalCount":1018},{"name":"engineering_school","displayName":"Engineering School","basicCategory":"college_university","count":506,"totalCount":506},{"name":"law_school","displayName":"Law School","basicCategory":"college_university","count":418,"totalCount":418},{"name":"medical_sciences_school","displayName":"Medical Sciences School","basicCategory":"college_university","count":298,"totalCount":644,"children":[{"name":"dentistry_school","displayName":"Dentistry School","basicCategory":"college_university","count":313,"totalCount":313},{"name":"pharmacy_school","displayName":"Pharmacy School","basicCategory":"college_university","count":32,"totalCount":32},{"name":"veterinary_school","displayName":"Veterinary School","basicCategory":"college_university","count":1,"totalCount":1}]},{"name":"science_school","displayName":"Science School","basicCategory":"college_university","count":63,"totalCount":63}]},{"name":"school","displayName":"School","basicCategory":"place_of_learning","count":654616,"totalCount":1760620,"children":[{"name":"charter_school","displayName":"Charter School","basicCategory":"place_of_learning","count":562,"totalCount":562},{"name":"elementary_school","displayName":"Elementary School","isBasic":true,"count":423710,"totalCount":423710},{"name":"high_school","displayName":"High School","isBasic":true,"count":174822,"totalCount":174822},{"name":"kindergarten","displayName":"Kindergarten","isBasic":true,"count":468,"totalCount":468},{"name":"middle_school","displayName":"Middle School","isBasic":true,"count":68195,"totalCount":68195},{"name":"montessori_school","displayName":"Montessori School","basicCategory":"place_of_learning","count":1059,"totalCount":1059},{"name":"preschool","displayName":"Preschool","isBasic":true,"count":284651,"totalCount":284651},{"name":"private_school","displayName":"Private School","basicCategory":"place_of_learning","count":72461,"totalCount":72461},{"name":"public_school","displayName":"Public School","basicCategory":"place_of_learning","count":52978,"totalCount":52978},{"name":"religious_school","displayName":"Religious School","basicCategory":"place_of_learning","count":27081,"totalCount":27081},{"name":"waldorf_school","displayName":"Waldorf School","basicCategory":"place_of_learning","count":17,"totalCount":17}]},{"name":"specialty_school","displayName":"Specialty School","isBasic":true,"count":52715,"totalCount":503433,"children":[{"name":"art_school","displayName":"Art School","basicCategory":"specialty_school","count":36401,"totalCount":36401},{"name":"bartending_school","displayName":"Bartending School","basicCategory":"specialty_school","count":1059,"totalCount":1059},{"name":"cheerleading","displayName":"Cheerleading","basicCategory":"specialty_school","count":104,"totalCount":104},{"name":"childbirth_education","displayName":"Childbirth Education","basicCategory":"specialty_school","count":388,"totalCount":388},{"name":"circus_school","displayName":"Circus School","basicCategory":"specialty_school","count":39,"totalCount":39},{"name":"computer_coaching","displayName":"Computer Coaching","basicCategory":"specialty_school","count":32010,"totalCount":32010},{"name":"cooking_school","displayName":"Cooking School","basicCategory":"specialty_school","count":10443,"totalCount":10443},{"name":"cosmetology_school","displayName":"Cosmetology School","basicCategory":"specialty_school","count":13433,"totalCount":13433},{"name":"cpr_class","displayName":"CPR Class","basicCategory":"specialty_school","count":1013,"totalCount":1013},{"name":"drama_school","displayName":"Drama School","basicCategory":"specialty_school","count":629,"totalCount":629},{"name":"driving_school","displayName":"Driving School","basicCategory":"specialty_school","count":105212,"totalCount":105212},{"name":"dui_school","displayName":"DUI School","basicCategory":"specialty_school","count":48,"totalCount":48},{"name":"firearm_training","displayName":"Firearm Training","basicCategory":"specialty_school","count":1196,"totalCount":1196},{"name":"first_aid_class","displayName":"First Aid Class","basicCategory":"specialty_school","count":3847,"totalCount":3847},{"name":"flight_school","displayName":"Flight School","basicCategory":"specialty_school","count":10199,"totalCount":10199},{"name":"food_safety_training","displayName":"Food Safety Training","basicCategory":"specialty_school","count":718,"totalCount":718},{"name":"language_school","displayName":"Language School","basicCategory":"specialty_school","count":91756,"totalCount":91756},{"name":"massage_school","displayName":"Massage School","basicCategory":"specialty_school","count":2338,"totalCount":2338},{"name":"medical_school","displayName":"Medical School","basicCategory":"specialty_school","count":10323,"totalCount":10323},{"name":"music_school","displayName":"Music School","basicCategory":"specialty_school","count":70103,"totalCount":70103},{"name":"nursing_school","displayName":"Nursing School","basicCategory":"specialty_school","count":7060,"totalCount":7060},{"name":"parenting_class","displayName":"Parenting Class","basicCategory":"specialty_school","count":171,"totalCount":171},{"name":"photography_class","displayName":"Photography Class","basicCategory":"specialty_school","count":161,"totalCount":161},{"name":"speech_training","displayName":"Speech Training","basicCategory":"specialty_school","count":179,"totalCount":179},{"name":"sports_school","displayName":"Sports School","basicCategory":"specialty_school","count":1113,"totalCount":1113},{"name":"traffic_school","displayName":"Traffic School","basicCategory":"specialty_school","count":1804,"totalCount":1804},{"name":"vocational_and_technical_school","displayName":"Vocational and Technical School","basicCategory":"specialty_school","count":48971,"totalCount":48971}]}]},{"name":"research_institute","displayName":"Research Institute","isBasic":true,"count":3159,"totalCount":43402,"children":[{"name":"educational_research_institute","displayName":"Educational Research Institute","basicCategory":"research_institute","count":19430,"totalCount":19430},{"name":"medical_research_institute","displayName":"Medical Research Institute","basicCategory":"research_institute","count":20813,"totalCount":20813}]}]},{"name":"food_and_drink","displayName":"Food and Drink","isBasic":true,"count":104283,"totalCount":10559837,"children":[{"name":"alcoholic_beverage_venue","displayName":"Alcoholic Beverage Venue","isBasic":true,"totalCount":1253265,"children":[{"name":"bar","displayName":"Bar","isBasic":true,"count":668433,"totalCount":1030622,"children":[{"name":"bar_tabac","displayName":"Bar Tabac","basicCategory":"bar","count":2058,"totalCount":2058},{"name":"beach_bar","displayName":"Beach Bar","basicCategory":"bar","count":475,"totalCount":475},{"name":"beer_bar","displayName":"Beer Bar","basicCategory":"bar","count":25631,"totalCount":25631},{"name":"champagne_bar","displayName":"Champagne Bar","basicCategory":"bar","count":242,"totalCount":242},{"name":"cigar_bar","displayName":"Cigar Bar","basicCategory":"bar","count":623,"totalCount":623},{"name":"cocktail_bar","displayName":"Cocktail Bar","basicCategory":"bar","count":53228,"totalCount":53228},{"name":"dive_bar","displayName":"Dive Bar","basicCategory":"bar","count":6783,"totalCount":6783},{"name":"drive_thru_bar","displayName":"Drive Thru Bar","basicCategory":"bar","count":64,"totalCount":64},{"name":"gay_bar","displayName":"Gay Bar","basicCategory":"bar","count":4180,"totalCount":4180},{"name":"hookah_bar","displayName":"Hookah Bar","basicCategory":"bar","count":18929,"totalCount":18929},{"name":"hotel_bar","displayName":"Hotel Bar","basicCategory":"bar","count":3308,"totalCount":3308},{"name":"piano_bar","displayName":"Piano Bar","basicCategory":"bar","count":189,"totalCount":189},{"name":"pub","displayName":"Pub","basicCategory":"bar","count":150228,"totalCount":157939,"children":[{"name":"irish_pub","displayName":"Irish Pub","basicCategory":"bar","count":7711,"totalCount":7711}]},{"name":"sake_bar","displayName":"Sake Bar","basicCategory":"bar","count":13353,"totalCount":13353},{"name":"speakeasy","displayName":"Speakeasy","basicCategory":"bar","count":2818,"totalCount":2818},{"name":"sports_bar","displayName":"Sports Bar","basicCategory":"bar","count":30317,"totalCount":30317},{"name":"tiki_bar","displayName":"Tiki Bar","basicCategory":"bar","count":1013,"totalCount":1013},{"name":"vermouth_bar","displayName":"Vermouth Bar","basicCategory":"bar","count":1,"totalCount":1},{"name":"whiskey_bar","displayName":"Whiskey Bar","basicCategory":"bar","count":1930,"totalCount":1930},{"name":"wine_bar","displayName":"Wine Bar","basicCategory":"bar","count":39108,"totalCount":39108}]},{"name":"beer_garden","displayName":"Beer Garden","basicCategory":"alcoholic_beverage_venue","count":16696,"totalCount":16696},{"name":"brewery","displayName":"Brewery","isBasic":true,"count":50574,"totalCount":50574},{"name":"cidery","displayName":"Cidery","basicCategory":"alcoholic_beverage_venue","count":152,"totalCount":152},{"name":"distillery","displayName":"Distillery","isBasic":true,"count":10433,"totalCount":10433},{"name":"lounge","displayName":"Lounge","isBasic":true,"count":54786,"totalCount":58670,"children":[{"name":"airport_lounge","displayName":"Airport Lounge","basicCategory":"lounge","count":3884,"totalCount":3884}]},{"name":"winery","displayName":"Winery","isBasic":true,"count":85897,"totalCount":86118,"children":[{"name":"wine_tasting_room","displayName":"Wine Tasting Room","basicCategory":"winery","count":221,"totalCount":221}]}]},{"name":"casual_eatery","displayName":"Casual Eatery","isBasic":true,"totalCount":2721776,"children":[{"name":"bagel_shop","displayName":"Bagel Shop","basicCategory":"casual_eatery","count":10911,"totalCount":10911},{"name":"bakery","displayName":"Bakery","basicCategory":"casual_eatery","count":531548,"totalCount":532415,"children":[{"name":"baguette_shop","displayName":"Baguette Shop","basicCategory":"casual_eatery","totalCount":0},{"name":"flatbread_shop","displayName":"Flatbread Shop","basicCategory":"casual_eatery","count":15,"totalCount":15},{"name":"macaron_shop","displayName":"Macaron Shop","basicCategory":"casual_eatery","count":57,"totalCount":57},{"name":"pretzel_shop","displayName":"Pretzel Shop","basicCategory":"casual_eatery","count":795,"totalCount":795}]},{"name":"bistro","displayName":"Bistro","basicCategory":"casual_eatery","count":10334,"totalCount":10334},{"name":"cafe","displayName":"Cafe","isBasic":true,"count":743425,"totalCount":768727,"children":[{"name":"animal_cafe","displayName":"Animal Cafe","basicCategory":"cafe","count":19,"totalCount":78,"children":[{"name":"cat_cafe","displayName":"Cat Cafe","basicCategory":"cafe","count":10,"totalCount":10},{"name":"dog_cafe","displayName":"Dog Cafe","basicCategory":"cafe","count":49,"totalCount":49}]},{"name":"hong_kong_style_cafe","displayName":"Hong Kong Style Cafe","basicCategory":"cafe","count":1214,"totalCount":1214},{"name":"internet_cafe","displayName":"Internet Cafe","basicCategory":"cafe","count":24010,"totalCount":24010}]},{"name":"candy_store","displayName":"Candy Store","basicCategory":"casual_eatery","count":65141,"totalCount":98841,"children":[{"name":"chocolatier","displayName":"Chocolatier","basicCategory":"casual_eatery","count":33246,"totalCount":33246},{"name":"indian_sweets_shop","displayName":"Indian Sweets Shop","basicCategory":"casual_eatery","count":125,"totalCount":125},{"name":"japanese_confectionery_shop","displayName":"Japanese Confectionery Shop","basicCategory":"casual_eatery","count":329,"totalCount":329}]},{"name":"canteen","displayName":"Canteen","basicCategory":"casual_eatery","count":2,"totalCount":2},{"name":"delicatessen","displayName":"Delicatessen","basicCategory":"casual_eatery","count":82945,"totalCount":82945},{"name":"dessert_shop","displayName":"Dessert Shop","basicCategory":"casual_eatery","count":129114,"totalCount":415312,"children":[{"name":"cupcake_shop","displayName":"Cupcake Shop","basicCategory":"casual_eatery","count":29505,"totalCount":29505},{"name":"donut_shop","displayName":"Donut Shop","basicCategory":"casual_eatery","count":30042,"totalCount":30042},{"name":"frozen_yogurt_shop","displayName":"Frozen Yogurt Shop","basicCategory":"casual_eatery","count":10084,"totalCount":10084},{"name":"gelato_shop","displayName":"Gelato Shop","basicCategory":"casual_eatery","count":12798,"totalCount":12798},{"name":"ice_cream_shop","displayName":"Ice Cream Shop","basicCategory":"casual_eatery","count":197311,"totalCount":197311},{"name":"pie_shop","displayName":"Pie Shop","basicCategory":"casual_eatery","count":875,"totalCount":875},{"name":"shaved_ice_shop","displayName":"Shaved Ice Shop","basicCategory":"casual_eatery","count":5583,"totalCount":5583}]},{"name":"diner","displayName":"Diner","basicCategory":"casual_eatery","count":99794,"totalCount":99794},{"name":"fast_food_restaurant","displayName":"Fast Food Restaurant","isBasic":true,"count":440451,"totalCount":440451},{"name":"fondue_restaurant","displayName":"Fondue Restaurant","basicCategory":"casual_eatery","count":2528,"totalCount":2528},{"name":"food_court","displayName":"Food Court","isBasic":true,"count":2927,"totalCount":2927},{"name":"food_truck_stand","displayName":"Food Truck or Stand","isBasic":true,"count":87399,"totalCount":87399},{"name":"friterie","displayName":"Friterie","basicCategory":"casual_eatery","count":366,"totalCount":366},{"name":"gastropub","displayName":"Gastropub","basicCategory":"casual_eatery","count":30548,"totalCount":30548},{"name":"popcorn_shop","displayName":"Popcorn Shop","basicCategory":"casual_eatery","count":544,"totalCount":544},{"name":"sandwich_shop","displayName":"Sandwich Shop","basicCategory":"casual_eatery","count":95017,"totalCount":95017},{"name":"sugar_shack","displayName":"Sugar Shack","basicCategory":"casual_eatery","count":5,"totalCount":5},{"name":"tapas_bar","displayName":"Tapas Bar","basicCategory":"casual_eatery","count":42710,"totalCount":42710}]},{"name":"non_alcoholic_beverage_venue","displayName":"Non-Alcoholic Beverage Venue","isBasic":true,"count":60,"totalCount":825157,"children":[{"name":"bubble_tea_shop","displayName":"Bubble Tea Shop","basicCategory":"non_alcoholic_beverage_venue","count":40896,"totalCount":40896},{"name":"coffee_shop","displayName":"Coffee Shop","isBasic":true,"count":655459,"totalCount":657599,"children":[{"name":"coffee_roastery","displayName":"Coffee Roastery","basicCategory":"coffee_shop","count":2140,"totalCount":2140}]},{"name":"kombucha_bar","displayName":"Kombucha Bar","basicCategory":"non_alcoholic_beverage_venue","count":41,"totalCount":41},{"name":"milk_bar","displayName":"Milk Bar","basicCategory":"non_alcoholic_beverage_venue","count":355,"totalCount":355},{"name":"milkshake_bar","displayName":"Milkshake Bar","basicCategory":"non_alcoholic_beverage_venue","totalCount":0},{"name":"smoothie_juice_bar","displayName":"Smoothie or Juice Bar","isBasic":true,"count":65522,"totalCount":65522},{"name":"tea_room","displayName":"Tea Room","basicCategory":"non_alcoholic_beverage_venue","count":60684,"totalCount":60684}]},{"name":"restaurant","displayName":"Restaurant","isBasic":true,"count":1944848,"totalCount":5655356,"children":[{"name":"african_restaurant","displayName":"African Restaurant","basicCategory":"restaurant","count":7804,"totalCount":14205,"children":[{"name":"east_african_restaurant","displayName":"East African Restaurant","basicCategory":"restaurant","count":34,"totalCount":1712,"children":[{"name":"eritrean_restaurant","displayName":"Eritrean Restaurant","basicCategory":"restaurant","count":19,"totalCount":19},{"name":"ethiopian_restaurant","displayName":"Ethiopian Restaurant","basicCategory":"restaurant","count":1659,"totalCount":1659},{"name":"somalian_restaurant","displayName":"Somalian Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"north_african_restaurant","displayName":"North African Restaurant","basicCategory":"restaurant","count":3,"totalCount":3969,"children":[{"name":"algerian_restaurant","displayName":"Algerian Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"egyptian_restaurant","displayName":"Egyptian Restaurant","basicCategory":"restaurant","count":1016,"totalCount":1016},{"name":"moroccan_restaurant","displayName":"Moroccan Restaurant","basicCategory":"restaurant","count":2949,"totalCount":2949}]},{"name":"southern_african_restaurant","displayName":"Southern African Restaurant","basicCategory":"restaurant","totalCount":229,"children":[{"name":"south_african_restaurant","displayName":"South African Restaurant","basicCategory":"restaurant","count":229,"totalCount":229}]},{"name":"west_african_restaurant","displayName":"West African Restaurant","basicCategory":"restaurant","count":60,"totalCount":491,"children":[{"name":"ghanaian_restaurant","displayName":"Ghanaian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"nigerian_restaurant","displayName":"Nigerian Restaurant","basicCategory":"restaurant","count":319,"totalCount":319},{"name":"senegalese_restaurant","displayName":"Senegalese Restaurant","basicCategory":"restaurant","count":112,"totalCount":112}]}]},{"name":"asian_restaurant","displayName":"Asian Restaurant","basicCategory":"restaurant","count":76272,"totalCount":1201082,"children":[{"name":"central_asian_restaurant","displayName":"Central Asian Restaurant","basicCategory":"restaurant","totalCount":2417,"children":[{"name":"afghani_restaurant","displayName":"Afghani Restaurant","basicCategory":"restaurant","count":2174,"totalCount":2174},{"name":"kazakhstani_restaurant","displayName":"Kazakhstani Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"uzbek_restaurant","displayName":"Uzbek Restaurant","basicCategory":"restaurant","count":243,"totalCount":243}]},{"name":"east_asian_restaurant","displayName":"East Asian Restaurant","basicCategory":"restaurant","totalCount":738030,"children":[{"name":"chinese_restaurant","displayName":"Chinese Restaurant","basicCategory":"restaurant","count":187423,"totalCount":193378,"children":[{"name":"baozi_restaurant","displayName":"Baozi Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"beijing_restaurant","displayName":"Beijing Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"cantonese_restaurant","displayName":"Cantonese Restaurant","basicCategory":"restaurant","count":131,"totalCount":131},{"name":"dim_sum_restaurant","displayName":"Dim Sum Restaurant","basicCategory":"restaurant","count":5121,"totalCount":5121},{"name":"dongbei_restaurant","displayName":"Dongbei Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"fujian_restaurant","displayName":"Fujian Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"hunan_restaurant","displayName":"Hunan Restaurant","basicCategory":"restaurant","count":10,"totalCount":10},{"name":"indo_chinese_restaurant","displayName":"Indo Chinese Restaurant","basicCategory":"restaurant","count":622,"totalCount":622},{"name":"jiangsu_restaurant","displayName":"Jiangsu Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"shandong_restaurant","displayName":"Shandong Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"shanghainese_restaurant","displayName":"Shanghainese Restaurant","basicCategory":"restaurant","count":22,"totalCount":22},{"name":"sichuan_restaurant","displayName":"Sichuan Restaurant","basicCategory":"restaurant","count":48,"totalCount":48},{"name":"xinjiang_restaurant","displayName":"Xinjiang Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"japanese_restaurant","displayName":"Japanese Restaurant","basicCategory":"restaurant","count":346744,"totalCount":451200,"children":[{"name":"sushi_restaurant","displayName":"Sushi Restaurant","basicCategory":"restaurant","count":104456,"totalCount":104456}]},{"name":"korean_restaurant","displayName":"Korean Restaurant","basicCategory":"restaurant","count":83466,"totalCount":83466},{"name":"mongolian_restaurant","displayName":"Mongolian Restaurant","basicCategory":"restaurant","count":760,"totalCount":760},{"name":"taiwanese_restaurant","displayName":"Taiwanese Restaurant","basicCategory":"restaurant","count":9226,"totalCount":9226}]},{"name":"ramen_restaurant","displayName":"Ramen Restaurant","basicCategory":"restaurant","count":46486,"totalCount":46486},{"name":"south_asian_restaurant","displayName":"South Asian Restaurant","basicCategory":"restaurant","count":10,"totalCount":114989,"children":[{"name":"bangladeshi_restaurant","displayName":"Bangladeshi Restaurant","basicCategory":"restaurant","count":2026,"totalCount":2026},{"name":"himalayan_restaurant","displayName":"Himalayan Restaurant","basicCategory":"restaurant","count":60,"totalCount":2859,"children":[{"name":"nepalese_restaurant","displayName":"Nepalese Restaurant","basicCategory":"restaurant","count":2799,"totalCount":2799}]},{"name":"indian_restaurant","displayName":"Indian Restaurant","basicCategory":"restaurant","count":105488,"totalCount":105544,"children":[{"name":"bengali_restaurant","displayName":"Bengali Restaurant","basicCategory":"restaurant","count":5,"totalCount":5},{"name":"chettinad_restaurant","displayName":"Chettinad Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"gujarati_restaurant","displayName":"Gujarati Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"hyderabadi_restaurant","displayName":"Hyderabadi Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"north_indian_restaurant","displayName":"North Indian Restaurant","basicCategory":"restaurant","count":14,"totalCount":14},{"name":"punjabi_restaurant","displayName":"Punjabi Restaurant","basicCategory":"restaurant","count":4,"totalCount":4},{"name":"rajasthani_restaurant","displayName":"Rajasthani Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"south_indian_restaurant","displayName":"South Indian Restaurant","basicCategory":"restaurant","count":32,"totalCount":32}]},{"name":"pakistani_restaurant","displayName":"Pakistani Restaurant","basicCategory":"restaurant","count":3342,"totalCount":3342},{"name":"sri_lankan_restaurant","displayName":"Sri Lankan Restaurant","basicCategory":"restaurant","count":1192,"totalCount":1192},{"name":"tibetan_restaurant","displayName":"Tibetan Restaurant","basicCategory":"restaurant","count":16,"totalCount":16}]},{"name":"southeast_asian_restaurant","displayName":"Southeast Asian Restaurant","basicCategory":"restaurant","count":26,"totalCount":222829,"children":[{"name":"burmese_restaurant","displayName":"Burmese Restaurant","basicCategory":"restaurant","count":645,"totalCount":645},{"name":"cambodian_restaurant","displayName":"Cambodian Restaurant","basicCategory":"restaurant","count":815,"totalCount":815},{"name":"filipino_restaurant","displayName":"Filipino Restaurant","basicCategory":"restaurant","count":11006,"totalCount":11006},{"name":"indonesian_restaurant","displayName":"Indonesian Restaurant","basicCategory":"restaurant","count":56323,"totalCount":56324,"children":[{"name":"sundanese_restaurant","displayName":"Sundanese Restaurant","basicCategory":"restaurant","count":1,"totalCount":1}]},{"name":"laotian_restaurant","displayName":"Laotian Restaurant","basicCategory":"restaurant","count":23,"totalCount":23},{"name":"malaysian_restaurant","displayName":"Malaysian Restaurant","basicCategory":"restaurant","count":12682,"totalCount":12682},{"name":"nasi_restaurant","displayName":"Nasi Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"singaporean_restaurant","displayName":"Singaporean Restaurant","basicCategory":"restaurant","count":792,"totalCount":792},{"name":"thai_restaurant","displayName":"Thai Restaurant","basicCategory":"restaurant","count":103081,"totalCount":103081},{"name":"vietnamese_restaurant","displayName":"Vietnamese Restaurant","basicCategory":"restaurant","count":37434,"totalCount":37434}]},{"name":"wok_restaurant","displayName":"Wok Restaurant","basicCategory":"restaurant","count":59,"totalCount":59}]},{"name":"bar_and_grill_restaurant","displayName":"Bar and Grill Restaurant","basicCategory":"restaurant","count":89125,"totalCount":89125},{"name":"breakfast_and_brunch_restaurant","displayName":"Breakfast and Brunch Restaurant","basicCategory":"restaurant","count":76339,"totalCount":92107,"children":[{"name":"pancake_house","displayName":"Pancake House","basicCategory":"restaurant","count":15479,"totalCount":15479},{"name":"waffle_restaurant","displayName":"Waffle Restaurant","basicCategory":"restaurant","count":289,"totalCount":289}]},{"name":"buffet_restaurant","displayName":"Buffet Restaurant","basicCategory":"restaurant","count":35559,"totalCount":35559},{"name":"cafeteria","displayName":"Cafeteria","basicCategory":"restaurant","count":4492,"totalCount":4492},{"name":"comfort_food_restaurant","displayName":"Comfort Food Restaurant","basicCategory":"restaurant","count":10905,"totalCount":10905},{"name":"diy_foods_restaurant","displayName":"DIY Foods Restaurant","basicCategory":"restaurant","count":53,"totalCount":53},{"name":"dumpling_restaurant","displayName":"Dumpling Restaurant","basicCategory":"restaurant","count":1176,"totalCount":1176},{"name":"european_restaurant","displayName":"European Restaurant","basicCategory":"restaurant","count":12564,"totalCount":928348,"children":[{"name":"central_european_restaurant","displayName":"Central European Restaurant","basicCategory":"restaurant","count":3,"totalCount":41260,"children":[{"name":"austrian_restaurant","displayName":"Austrian Restaurant","basicCategory":"restaurant","count":4743,"totalCount":4743},{"name":"czech_restaurant","displayName":"Czech Restaurant","basicCategory":"restaurant","count":1373,"totalCount":1373},{"name":"german_restaurant","displayName":"German Restaurant","basicCategory":"restaurant","count":29306,"totalCount":29306,"children":[{"name":"fischbrotchen_restaurant","displayName":"Fischbrotchen Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"hungarian_restaurant","displayName":"Hungarian Restaurant","basicCategory":"restaurant","count":1152,"totalCount":1152},{"name":"polish_restaurant","displayName":"Polish Restaurant","basicCategory":"restaurant","count":2784,"totalCount":2784},{"name":"schnitzel_restaurant","displayName":"Schnitzel Restaurant","basicCategory":"restaurant","count":37,"totalCount":37},{"name":"slovakian_restaurant","displayName":"Slovakian Restaurant","basicCategory":"restaurant","count":78,"totalCount":78},{"name":"swiss_restaurant","displayName":"Swiss Restaurant","basicCategory":"restaurant","count":1784,"totalCount":1784}]},{"name":"eastern_european_restaurant","displayName":"Eastern European Restaurant","basicCategory":"restaurant","count":3700,"totalCount":7589,"children":[{"name":"belarusian_restaurant","displayName":"Belarusian Restaurant","basicCategory":"restaurant","count":36,"totalCount":36},{"name":"bulgarian_restaurant","displayName":"Bulgarian Restaurant","basicCategory":"restaurant","count":634,"totalCount":634},{"name":"lithuanian_restaurant","displayName":"Lithuanian Restaurant","basicCategory":"restaurant","count":2,"totalCount":2},{"name":"romanian_restaurant","displayName":"Romanian Restaurant","basicCategory":"restaurant","count":647,"totalCount":647},{"name":"russian_restaurant","displayName":"Russian Restaurant","basicCategory":"restaurant","count":1452,"totalCount":1530,"children":[{"name":"tatar_restaurant","displayName":"Tatar Restaurant","basicCategory":"restaurant","count":78,"totalCount":78}]},{"name":"serbo_croatian_restaurant","displayName":"Serbo-Croatian Restaurant","basicCategory":"restaurant","count":75,"totalCount":75},{"name":"ukrainian_restaurant","displayName":"Ukrainian Restaurant","basicCategory":"restaurant","count":965,"totalCount":965}]},{"name":"iberian_restaurant","displayName":"Iberian Restaurant","basicCategory":"restaurant","count":48,"totalCount":41662,"children":[{"name":"portuguese_restaurant","displayName":"Portuguese Restaurant","basicCategory":"restaurant","count":9849,"totalCount":9849},{"name":"spanish_restaurant","displayName":"Spanish Restaurant","basicCategory":"restaurant","count":29494,"totalCount":31765,"children":[{"name":"basque_restaurant","displayName":"Basque Restaurant","basicCategory":"restaurant","count":1063,"totalCount":1063},{"name":"catalan_restaurant","displayName":"Catalan Restaurant","basicCategory":"restaurant","count":1208,"totalCount":1208}]}]},{"name":"mediterranean_restaurant","displayName":"Mediterranean Restaurant","basicCategory":"restaurant","count":28318,"totalCount":744828,"children":[{"name":"greek_restaurant","displayName":"Greek Restaurant","basicCategory":"restaurant","count":29165,"totalCount":29165},{"name":"italian_restaurant","displayName":"Italian Restaurant","basicCategory":"restaurant","count":231900,"totalCount":687345,"children":[{"name":"piadina_restaurant","displayName":"Piadina Restaurant","basicCategory":"restaurant","count":462,"totalCount":462},{"name":"pizza_restaurant","displayName":"Pizza Restaurant","basicCategory":"restaurant","count":454983,"totalCount":454983}]},{"name":"maltese_restaurant","displayName":"Maltese Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"scandinavian_restaurant","displayName":"Scandinavian Restaurant","basicCategory":"restaurant","count":3430,"totalCount":3463,"children":[{"name":"danish_restaurant","displayName":"Danish Restaurant","basicCategory":"restaurant","count":25,"totalCount":25},{"name":"finnish_restaurant","displayName":"Finnish Restaurant","basicCategory":"restaurant","count":2,"totalCount":2},{"name":"icelandic_restaurant","displayName":"Icelandic Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"norwegian_restaurant","displayName":"Norwegian Restaurant","basicCategory":"restaurant","count":2,"totalCount":2},{"name":"swedish_restaurant","displayName":"Swedish Restaurant","basicCategory":"restaurant","count":4,"totalCount":4}]},{"name":"western_european_restaurant","displayName":"Western European Restaurant","basicCategory":"restaurant","totalCount":76982,"children":[{"name":"belgian_restaurant","displayName":"Belgian Restaurant","basicCategory":"restaurant","count":4039,"totalCount":4039},{"name":"british_restaurant","displayName":"British Restaurant","basicCategory":"restaurant","count":4737,"totalCount":4737},{"name":"dutch_restaurant","displayName":"Dutch Restaurant","basicCategory":"restaurant","count":10,"totalCount":10},{"name":"french_restaurant","displayName":"French Restaurant","basicCategory":"restaurant","count":66242,"totalCount":67362,"children":[{"name":"brasserie","displayName":"Brasserie","basicCategory":"restaurant","count":1120,"totalCount":1120}]},{"name":"irish_restaurant","displayName":"Irish Restaurant","basicCategory":"restaurant","count":532,"totalCount":532},{"name":"scottish_restaurant","displayName":"Scottish Restaurant","basicCategory":"restaurant","count":302,"totalCount":302},{"name":"welsh_restaurant","displayName":"Welsh Restaurant","basicCategory":"restaurant","totalCount":0}]}]},{"name":"haute_cuisine_restaurant","displayName":"Haute Cuisine Restaurant","basicCategory":"restaurant","count":4,"totalCount":4},{"name":"international_fusion_restaurant","displayName":"International Fusion Restaurant","basicCategory":"restaurant","count":583,"totalCount":17119,"children":[{"name":"asian_fusion_restaurant","displayName":"Asian Fusion Restaurant","basicCategory":"restaurant","count":13633,"totalCount":13633},{"name":"latin_fusion_restaurant","displayName":"Latin Fusion Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"pan_asian_restaurant","displayName":"Pan Asian Restaurant","basicCategory":"restaurant","count":2903,"totalCount":2903}]},{"name":"latin_american_restaurant","displayName":"Latin American Restaurant","basicCategory":"restaurant","count":21947,"totalCount":380285,"children":[{"name":"caribbean_restaurant","displayName":"Caribbean Restaurant","basicCategory":"restaurant","count":7982,"totalCount":16711,"children":[{"name":"cuban_restaurant","displayName":"Cuban Restaurant","basicCategory":"restaurant","count":3212,"totalCount":3212},{"name":"dominican_restaurant","displayName":"Dominican Restaurant","basicCategory":"restaurant","count":1111,"totalCount":1111},{"name":"haitian_restaurant","displayName":"Haitian Restaurant","basicCategory":"restaurant","count":534,"totalCount":534},{"name":"jamaican_restaurant","displayName":"Jamaican Restaurant","basicCategory":"restaurant","count":2638,"totalCount":2638},{"name":"puerto_rican_restaurant","displayName":"Puerto Rican Restaurant","basicCategory":"restaurant","count":1172,"totalCount":1172},{"name":"trinidadian_restaurant","displayName":"Trinidadian Restaurant","basicCategory":"restaurant","count":62,"totalCount":62}]},{"name":"central_american_restaurant","displayName":"Central American Restaurant","basicCategory":"restaurant","count":14,"totalCount":4673,"children":[{"name":"belizean_restaurant","displayName":"Belizean Restaurant","basicCategory":"restaurant","count":11,"totalCount":11},{"name":"costa_rican_restaurant","displayName":"Costa Rican Restaurant","basicCategory":"restaurant","count":92,"totalCount":92},{"name":"guatemalan_restaurant","displayName":"Guatemalan Restaurant","basicCategory":"restaurant","count":477,"totalCount":477},{"name":"honduran_restaurant","displayName":"Honduran Restaurant","basicCategory":"restaurant","count":851,"totalCount":851},{"name":"nicaraguan_restaurant","displayName":"Nicaraguan Restaurant","basicCategory":"restaurant","count":331,"totalCount":331},{"name":"panamanian_restaurant","displayName":"Panamanian Restaurant","basicCategory":"restaurant","count":272,"totalCount":272},{"name":"salvadoran_restaurant","displayName":"Salvadoran Restaurant","basicCategory":"restaurant","count":2625,"totalCount":2625}]},{"name":"empanada_restaurant","displayName":"Empanada Restaurant","basicCategory":"restaurant","count":287,"totalCount":287},{"name":"mexican_restaurant","displayName":"Mexican Restaurant","basicCategory":"restaurant","count":218154,"totalCount":218154},{"name":"south_american_restaurant","displayName":"South American Restaurant","basicCategory":"restaurant","count":76,"totalCount":67321,"children":[{"name":"argentine_restaurant","displayName":"Argentine Restaurant","basicCategory":"restaurant","count":4670,"totalCount":4670},{"name":"bolivian_restaurant","displayName":"Bolivian Restaurant","basicCategory":"restaurant","count":152,"totalCount":152},{"name":"brazilian_restaurant","displayName":"Brazilian Restaurant","basicCategory":"restaurant","count":46110,"totalCount":46110},{"name":"chilean_restaurant","displayName":"Chilean Restaurant","basicCategory":"restaurant","count":309,"totalCount":309},{"name":"colombian_restaurant","displayName":"Colombian Restaurant","basicCategory":"restaurant","count":3233,"totalCount":3233},{"name":"ecuadorian_restaurant","displayName":"Ecuadorian Restaurant","basicCategory":"restaurant","count":1050,"totalCount":1050},{"name":"paraguayan_restaurant","displayName":"Paraguayan Restaurant","basicCategory":"restaurant","count":81,"totalCount":81},{"name":"peruvian_restaurant","displayName":"Peruvian Restaurant","basicCategory":"restaurant","count":9664,"totalCount":9664},{"name":"surinamese_restaurant","displayName":"Surinamese Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"uruguayan_restaurant","displayName":"Uruguayan Restaurant","basicCategory":"restaurant","count":197,"totalCount":197},{"name":"venezuelan_restaurant","displayName":"Venezuelan Restaurant","basicCategory":"restaurant","count":1779,"totalCount":1779}]},{"name":"taco_restaurant","displayName":"Taco Restaurant","basicCategory":"restaurant","count":43339,"totalCount":43339},{"name":"texmex_restaurant","displayName":"Texmex Restaurant","basicCategory":"restaurant","count":7853,"totalCount":7853}]},{"name":"meat_restaurant","displayName":"Meat Restaurant","basicCategory":"restaurant","count":159,"totalCount":465879,"children":[{"name":"barbecue_restaurant","displayName":"Barbecue Restaurant","basicCategory":"restaurant","count":116865,"totalCount":116865},{"name":"burger_restaurant","displayName":"Burger Restaurant","basicCategory":"restaurant","count":165815,"totalCount":165815},{"name":"cheesesteak_restaurant","displayName":"Cheesesteak Restaurant","basicCategory":"restaurant","count":550,"totalCount":550},{"name":"chicken_restaurant","displayName":"Chicken Restaurant","basicCategory":"restaurant","count":95059,"totalCount":95059},{"name":"chicken_wings_restaurant","displayName":"Chicken Wings Restaurant","basicCategory":"restaurant","count":7222,"totalCount":7222},{"name":"curry_sausage_restaurant","displayName":"Curry Sausage Restaurant","basicCategory":"restaurant","count":2,"totalCount":2},{"name":"hot_dog_restaurant","displayName":"Hot Dog Restaurant","basicCategory":"restaurant","count":14285,"totalCount":14285},{"name":"meatball_restaurant","displayName":"Meatball Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"rotisserie_chicken_restaurant","displayName":"Rotisserie Chicken Restaurant","basicCategory":"restaurant","count":5,"totalCount":5},{"name":"steakhouse","displayName":"Steakhouse","basicCategory":"restaurant","count":65916,"totalCount":65916},{"name":"venison_restaurant","displayName":"Venison Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"wild_game_meats_restaurant","displayName":"Wild Game Meats Restaurant","basicCategory":"restaurant","count":1,"totalCount":1}]},{"name":"middle_eastern_restaurant","displayName":"Middle Eastern Restaurant","basicCategory":"restaurant","count":17723,"totalCount":103499,"children":[{"name":"arabian_restaurant","displayName":"Arabian Restaurant","basicCategory":"restaurant","count":3312,"totalCount":3312},{"name":"armenian_restaurant","displayName":"Armenian Restaurant","basicCategory":"restaurant","count":432,"totalCount":432},{"name":"azerbaijani_restaurant","displayName":"Azerbaijani Restaurant","basicCategory":"restaurant","count":65,"totalCount":65},{"name":"falafel_restaurant","displayName":"Falafel Restaurant","basicCategory":"restaurant","count":1405,"totalCount":1405},{"name":"georgian_restaurant","displayName":"Georgian Restaurant","basicCategory":"restaurant","count":1407,"totalCount":1407},{"name":"israeli_restaurant","displayName":"Israeli Restaurant","basicCategory":"restaurant","count":313,"totalCount":313},{"name":"kofta_restaurant","displayName":"Kofta Restaurant","basicCategory":"restaurant","count":29,"totalCount":29},{"name":"kurdish_restaurant","displayName":"Kurdish Restaurant","basicCategory":"restaurant","count":111,"totalCount":111},{"name":"lebanese_restaurant","displayName":"Lebanese Restaurant","basicCategory":"restaurant","count":6964,"totalCount":6964},{"name":"palestinian_restaurant","displayName":"Palestinian Restaurant","basicCategory":"restaurant","count":3,"totalCount":3},{"name":"persian_restaurant","displayName":"Persian Restaurant","basicCategory":"restaurant","count":2681,"totalCount":2681},{"name":"syrian_restaurant","displayName":"Syrian Restaurant","basicCategory":"restaurant","count":1361,"totalCount":1361},{"name":"turkish_restaurant","displayName":"Turkish Restaurant","basicCategory":"restaurant","count":37722,"totalCount":67687,"children":[{"name":"doner_kebab_restaurant","displayName":"Doner Kebab Restaurant","basicCategory":"restaurant","count":29965,"totalCount":29965}]},{"name":"turkmen_restaurant","displayName":"Turkmen Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"yemenite_restaurant","displayName":"Yemenite Restaurant","basicCategory":"restaurant","count":5,"totalCount":5}]},{"name":"north_american_restaurant","displayName":"North American Restaurant","basicCategory":"restaurant","totalCount":79503,"children":[{"name":"american_restaurant","displayName":"American Restaurant","basicCategory":"restaurant","count":67316,"totalCount":78313,"children":[{"name":"cajun_and_creole_restaurant","displayName":"Cajun and Creole Restaurant","basicCategory":"restaurant","count":5136,"totalCount":5136},{"name":"southern_american_restaurant","displayName":"Southern American Restaurant","basicCategory":"restaurant","count":5861,"totalCount":5861}]},{"name":"canadian_restaurant","displayName":"Canadian Restaurant","basicCategory":"restaurant","count":1149,"totalCount":1190,"children":[{"name":"poutinerie_restaurant","displayName":"Poutinerie Restaurant","basicCategory":"restaurant","count":41,"totalCount":41}]}]},{"name":"pacific_rim_restaurant","displayName":"Pacific Rim Restaurant","basicCategory":"restaurant","count":3,"totalCount":9763,"children":[{"name":"australian_restaurant","displayName":"Australian Restaurant","basicCategory":"restaurant","count":2045,"totalCount":2045},{"name":"melanesian_restaurant","displayName":"Melanesian Restaurant","basicCategory":"restaurant","totalCount":0,"children":[{"name":"fijian_restaurant","displayName":"Fijian Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"micronesian_restaurant","displayName":"Micronesian Restaurant","basicCategory":"restaurant","totalCount":1,"children":[{"name":"guamanian_restaurant","displayName":"Guamanian Restaurant","basicCategory":"restaurant","count":1,"totalCount":1}]},{"name":"new_zealand_restaurant","displayName":"New Zealand Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"polynesian_restaurant","displayName":"Polynesian Restaurant","basicCategory":"restaurant","count":179,"totalCount":7714,"children":[{"name":"hawaiian_restaurant","displayName":"Hawaiian Restaurant","basicCategory":"restaurant","count":2752,"totalCount":7535,"children":[{"name":"poke_restaurant","displayName":"Poke Restaurant","basicCategory":"restaurant","count":4783,"totalCount":4783}]}]}]},{"name":"pop_up_restaurant","displayName":"Pop Up Restaurant","basicCategory":"restaurant","count":97,"totalCount":97},{"name":"salad_bar","displayName":"Salad Bar","basicCategory":"restaurant","count":13208,"totalCount":13208},{"name":"seafood_restaurant","displayName":"Seafood Restaurant","basicCategory":"restaurant","count":150827,"totalCount":168602,"children":[{"name":"fish_and_chips_restaurant","displayName":"Fish and Chips Restaurant","basicCategory":"restaurant","count":17575,"totalCount":17575},{"name":"fish_restaurant","displayName":"Fish Restaurant","basicCategory":"restaurant","count":200,"totalCount":200}]},{"name":"soul_food","displayName":"Soul Food","basicCategory":"restaurant","count":3380,"totalCount":3380},{"name":"soup_restaurant","displayName":"Soup Restaurant","basicCategory":"restaurant","count":14153,"totalCount":14153},{"name":"special_diet_restaurant","displayName":"Special Diet Restaurant","basicCategory":"restaurant","totalCount":54604,"children":[{"name":"acai_bowls","displayName":"Acai Bowls","basicCategory":"restaurant","count":349,"totalCount":349},{"name":"gluten_free_restaurant","displayName":"Gluten Free Restaurant","basicCategory":"restaurant","count":1300,"totalCount":1300},{"name":"halal_restaurant","displayName":"Halal Restaurant","basicCategory":"restaurant","count":8126,"totalCount":8126},{"name":"health_food_restaurant","displayName":"Health Food Restaurant","basicCategory":"restaurant","count":10214,"totalCount":10214},{"name":"jewish_restaurant","displayName":"Jewish Restaurant","basicCategory":"restaurant","count":60,"totalCount":60},{"name":"kosher_restaurant","displayName":"Kosher Restaurant","basicCategory":"restaurant","count":1363,"totalCount":1363},{"name":"live_and_raw_food_restaurant","displayName":"Live and Raw Food Restaurant","basicCategory":"restaurant","count":842,"totalCount":842},{"name":"molecular_gastronomy_restaurant","displayName":"Molecular Gastronomy Restaurant","basicCategory":"restaurant","count":375,"totalCount":375},{"name":"vegan_restaurant","displayName":"Vegan Restaurant","basicCategory":"restaurant","count":4980,"totalCount":4980},{"name":"vegetarian_restaurant","displayName":"Vegetarian Restaurant","basicCategory":"restaurant","count":26995,"totalCount":26995}]},{"name":"supper_club","displayName":"Supper Club","basicCategory":"restaurant","count":6,"totalCount":6},{"name":"theme_restaurant","displayName":"Theme Restaurant","basicCategory":"restaurant","count":23351,"totalCount":23351},{"name":"wrap_restaurant","displayName":"Wrap Restaurant","basicCategory":"restaurant","count":3,"totalCount":3}]}]},{"name":"geographic_entities","displayName":"Geographic Entities","isBasic":true,"count":177932,"totalCount":985270,"children":[{"name":"built_feature","displayName":"Built Feature","isBasic":true,"totalCount":81690,"children":[{"name":"bridge","displayName":"Bridge","isBasic":true,"count":44275,"totalCount":44275},{"name":"building","displayName":"Building","isBasic":true,"count":340,"totalCount":343,"children":[{"name":"skyscraper","displayName":"Skyscraper","basicCategory":"building","count":3,"totalCount":3}]},{"name":"dam","displayName":"Dam","isBasic":true,"count":2,"totalCount":4,"children":[{"name":"weir","displayName":"Weir","basicCategory":"dam","count":2,"totalCount":2}]},{"name":"dock","displayName":"Dock","isBasic":true,"totalCount":0},{"name":"garden","displayName":"Garden","isBasic":true,"count":327,"totalCount":11084,"children":[{"name":"botanical_garden","displayName":"Botanical Garden","basicCategory":"garden","count":10560,"totalCount":10560},{"name":"community_garden","displayName":"Community Garden","basicCategory":"garden","count":197,"totalCount":197}]},{"name":"lookout","displayName":"Lookout","basicCategory":"built_feature","count":45,"totalCount":45},{"name":"marina","displayName":"Marina","isBasic":true,"count":20482,"totalCount":20482},{"name":"pier","displayName":"Pier","isBasic":true,"count":4912,"totalCount":4912},{"name":"quay","displayName":"Quay","basicCategory":"built_feature","count":545,"totalCount":545}]},{"name":"land_feature","displayName":"Land Feature","isBasic":true,"totalCount":355234,"children":[{"name":"beach","displayName":"Beach","isBasic":true,"count":183535,"totalCount":183535,"children":[{"name":"beach_combing_area","displayName":"Beach Combing Area","basicCategory":"beach","totalCount":0}]},{"name":"canyon","displayName":"Canyon","isBasic":true,"count":13,"totalCount":13},{"name":"cave","displayName":"Cave","basicCategory":"land_feature","count":4422,"totalCount":4422},{"name":"crater","displayName":"Crater","basicCategory":"land_feature","totalCount":0},{"name":"desert","displayName":"Desert","basicCategory":"land_feature","count":45,"totalCount":45},{"name":"forest","displayName":"Forest","isBasic":true,"count":7917,"totalCount":7917},{"name":"geologic_formation","displayName":"Geologic Formation","basicCategory":"land_feature","count":1,"totalCount":1},{"name":"hill","displayName":"Hill","isBasic":true,"count":1,"totalCount":1},{"name":"island","displayName":"Island","isBasic":true,"count":2494,"totalCount":2494},{"name":"mountain","displayName":"Mountain","isBasic":true,"count":130491,"totalCount":130491},{"name":"nature_reserve","displayName":"Nature Reserve","isBasic":true,"count":26305,"totalCount":26305},{"name":"sand_dune","displayName":"Sand Dune","basicCategory":"land_feature","count":10,"totalCount":10},{"name":"valley","displayName":"Valley","isBasic":true,"totalCount":0}]},{"name":"scenic_viewpoint","displayName":"Scenic Viewpoint","isBasic":true,"totalCount":2,"children":[{"name":"skyline","displayName":"Skyline","basicCategory":"scenic_viewpoint","count":2,"totalCount":2},{"name":"stargazing_area","displayName":"Stargazing Area","basicCategory":"scenic_viewpoint","totalCount":0}]},{"name":"water_feature","displayName":"Water Feature","isBasic":true,"totalCount":370412,"children":[{"name":"canal","displayName":"Canal","isBasic":true,"count":2656,"totalCount":2656},{"name":"hot_springs","displayName":"Hot Springs","isBasic":true,"count":5750,"totalCount":5750},{"name":"lake","displayName":"Lake","isBasic":true,"count":218393,"totalCount":218393},{"name":"ocean","displayName":"Ocean","isBasic":true,"totalCount":0},{"name":"river","displayName":"River","isBasic":true,"count":135588,"totalCount":135588},{"name":"sea","displayName":"Sea","isBasic":true,"totalCount":0},{"name":"waterfall","displayName":"Waterfall","isBasic":true,"count":8025,"totalCount":8025}]}]},{"name":"health_care","displayName":"Health Care","isBasic":true,"count":573000,"totalCount":5202713,"children":[{"name":"emergency_or_urgent_care_facility","displayName":"Emergency or Urgent Care Facility","isBasic":true,"count":925,"totalCount":51345,"children":[{"name":"ambulance_or_ems_service","displayName":"Ambulance or EMS Service","basicCategory":"emergency_or_urgent_care_facility","count":26261,"totalCount":26261},{"name":"emergency_department","displayName":"Emergency Department","isBasic":true,"count":14845,"totalCount":14845},{"name":"urgent_care_clinic","displayName":"Urgent Care Clinic","isBasic":true,"count":6141,"totalCount":6141},{"name":"walk_in_clinic","displayName":"Walk-In Clinic","isBasic":true,"count":3173,"totalCount":3173}]},{"name":"hospital","displayName":"Hospital","isBasic":true,"count":511914,"totalCount":514060,"children":[{"name":"general_hospital","displayName":"General Hospital","isBasic":true,"count":263,"totalCount":263},{"name":"specialty_hospital","displayName":"Specialty Hospital","isBasic":true,"count":216,"totalCount":1883,"children":[{"name":"childrens_hospital","displayName":"Children's Hospital","basicCategory":"specialty_hospital","count":1166,"totalCount":1166},{"name":"long_term_care_hospital","displayName":"Long Term Care Hospital","basicCategory":"specialty_hospital","totalCount":0},{"name":"psychiatric_hospital","displayName":"Psychiatric Hospital","basicCategory":"specialty_hospital","count":451,"totalCount":451},{"name":"rehabilitation_hospital","displayName":"Rehabilitation Hospital","basicCategory":"specialty_hospital","totalCount":0},{"name":"veterans_hospital","displayName":"Veterans Hospital","basicCategory":"specialty_hospital","count":50,"totalCount":50}]}]},{"name":"medical_service","displayName":"Medical Service","isBasic":true,"count":815,"totalCount":190838,"children":[{"name":"blood_and_plasma_donation_center","displayName":"Blood and Plasma Donation Center","basicCategory":"medical_service","count":8408,"totalCount":8408},{"name":"ems_training","displayName":"EMS Training","basicCategory":"medical_service","count":584,"totalCount":584},{"name":"health_insurance_office","displayName":"Health Insurance Office","basicCategory":"medical_service","count":10291,"totalCount":10291},{"name":"home_health_care","displayName":"Home Health Care","basicCategory":"medical_service","count":83770,"totalCount":83770},{"name":"hospice","displayName":"Hospice","basicCategory":"medical_service","count":11305,"totalCount":11305},{"name":"medical_billing","displayName":"Medical Billing","basicCategory":"medical_service","count":2672,"totalCount":2672},{"name":"medical_cannabis","displayName":"Medical Cannabis","basicCategory":"medical_service","totalCount":10823,"children":[{"name":"cannabis_clinic","displayName":"Cannabis Clinic","basicCategory":"medical_service","count":10644,"totalCount":10644},{"name":"cannabis_collective","displayName":"Cannabis Collective","basicCategory":"medical_service","count":16,"totalCount":16},{"name":"medical_cannabis_referral","displayName":"Medical Cannabis Referral","basicCategory":"medical_service","count":163,"totalCount":163}]},{"name":"medical_service_organization","displayName":"Medical Service Organization","basicCategory":"medical_service","count":59183,"totalCount":59183},{"name":"medical_transportation","displayName":"Medical Transportation","basicCategory":"medical_service","count":2939,"totalCount":2939},{"name":"sperm_clinic","displayName":"Sperm Clinic","basicCategory":"medical_service","count":48,"totalCount":48}]},{"name":"outpatient_care_facility","displayName":"Outpatient Care Facility","isBasic":true,"count":221208,"totalCount":3715997,"children":[{"name":"behavioral_or_mental_health_clinic","displayName":"Behavioral or Mental Health Clinic","isBasic":true,"count":36176,"totalCount":478632,"children":[{"name":"behavioral_or_crisis_service","displayName":"Behavioral or Crisis Service","basicCategory":"behavioral_or_mental_health_clinic","totalCount":1573,"children":[{"name":"behavior_analysis","displayName":"Behavior Analysis","basicCategory":"behavioral_or_mental_health_clinic","count":448,"totalCount":448},{"name":"crisis_intervention_service","displayName":"Crisis Intervention Service","basicCategory":"behavioral_or_mental_health_clinic","count":1096,"totalCount":1096},{"name":"stress_management_service","displayName":"Stress Management Service","basicCategory":"behavioral_or_mental_health_clinic","count":27,"totalCount":27},{"name":"suicide_prevention_service","displayName":"Suicide Prevention Service","basicCategory":"behavioral_or_mental_health_clinic","count":2,"totalCount":2}]},{"name":"counseling","displayName":"Counseling","basicCategory":"behavioral_or_mental_health_clinic","count":160152,"totalCount":178663,"children":[{"name":"family_counseling","displayName":"Family Counseling","basicCategory":"behavioral_or_mental_health_clinic","count":8379,"totalCount":8379},{"name":"marriage_or_relationship_counseling","displayName":"Marriage or Relationship Counseling","basicCategory":"behavioral_or_mental_health_clinic","count":8156,"totalCount":8156},{"name":"sex_therapy","displayName":"Sex Therapy","basicCategory":"behavioral_or_mental_health_clinic","count":1976,"totalCount":1976}]},{"name":"psychiatry_or_psychology_service","displayName":"Psychiatry or Psychology Service","basicCategory":"behavioral_or_mental_health_clinic","totalCount":262220,"children":[{"name":"psychiatry","displayName":"Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":27712,"totalCount":30080,"children":[{"name":"child_psychiatry","displayName":"Child Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":2321,"totalCount":2321},{"name":"geriatric_psychiatry","displayName":"Geriatric Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":47,"totalCount":47}]},{"name":"psychoanalysis","displayName":"Psychoanalysis","basicCategory":"behavioral_or_mental_health_clinic","count":288,"totalCount":288},{"name":"psychology","displayName":"Psychology","basicCategory":"behavioral_or_mental_health_clinic","count":141989,"totalCount":142303,"children":[{"name":"sports_psychology","displayName":"Sports Psychology","basicCategory":"behavioral_or_mental_health_clinic","count":314,"totalCount":314}]},{"name":"psychotherapy","displayName":"Psychotherapy","basicCategory":"behavioral_or_mental_health_clinic","count":84269,"totalCount":89549,"children":[{"name":"art_therapy","displayName":"Art Therapy","basicCategory":"behavioral_or_mental_health_clinic","totalCount":0},{"name":"hypnotherapy","displayName":"Hypnotherapy","basicCategory":"behavioral_or_mental_health_clinic","count":5280,"totalCount":5280}]}]},{"name":"sophrology","displayName":"Sophrology","basicCategory":"behavioral_or_mental_health_clinic","totalCount":0}]},{"name":"complementary_and_alternative_medicine","displayName":"Complementary and Alternative Medicine","isBasic":true,"count":49696,"totalCount":384930,"children":[{"name":"acupuncture","displayName":"Acupuncture","basicCategory":"complementary_and_alternative_medicine","count":46201,"totalCount":46201},{"name":"aromatherapy","displayName":"Aromatherapy","basicCategory":"complementary_and_alternative_medicine","count":5627,"totalCount":5627},{"name":"ayurveda","displayName":"Ayurveda","basicCategory":"complementary_and_alternative_medicine","count":361,"totalCount":361},{"name":"chiropractic","displayName":"Chiropractic","basicCategory":"complementary_and_alternative_medicine","count":114254,"totalCount":114254},{"name":"homeopathy","displayName":"Homeopathy","basicCategory":"complementary_and_alternative_medicine","count":2391,"totalCount":2391},{"name":"naturopathic_medicine","displayName":"Naturopathic Medicine","basicCategory":"complementary_and_alternative_medicine","count":155298,"totalCount":155298},{"name":"reflexology","displayName":"Reflexology","basicCategory":"complementary_and_alternative_medicine","count":7983,"totalCount":7983},{"name":"reiki","displayName":"Reiki","basicCategory":"complementary_and_alternative_medicine","count":2925,"totalCount":2925},{"name":"traditional_chinese_medicine","displayName":"Traditional Chinese Medicine","basicCategory":"complementary_and_alternative_medicine","count":145,"totalCount":194,"children":[{"name":"tui_na","displayName":"Tui Na","basicCategory":"complementary_and_alternative_medicine","count":49,"totalCount":49}]}]},{"name":"dental_clinic","displayName":"Dental Clinic","isBasic":true,"count":574391,"totalCount":792132,"children":[{"name":"cosmetic_dentistry","displayName":"Cosmetic Dentistry","basicCategory":"dental_clinic","count":28491,"totalCount":28491},{"name":"dental_hygiene","displayName":"Dental Hygiene","basicCategory":"dental_clinic","count":292,"totalCount":292},{"name":"endodontics","displayName":"Endodontics","basicCategory":"dental_clinic","count":7084,"totalCount":7084},{"name":"general_dentistry","displayName":"General Dentistry","basicCategory":"dental_clinic","count":116732,"totalCount":116732},{"name":"orthodontics","displayName":"Orthodontics","basicCategory":"dental_clinic","count":38468,"totalCount":38468},{"name":"pediatric_dentistry","displayName":"Pediatric Dentistry","basicCategory":"dental_clinic","count":17888,"totalCount":17888},{"name":"periodontics","displayName":"Periodontics","basicCategory":"dental_clinic","count":5431,"totalCount":5431},{"name":"prosthodontics","displayName":"Prosthodontics","basicCategory":"dental_clinic","count":3355,"totalCount":3355}]},{"name":"diagnostics_imaging_or_lab_service","displayName":"Diagnostics Imaging or Lab Service","isBasic":true,"totalCount":612965,"children":[{"name":"diagnostic_imaging","displayName":"Diagnostic Imaging","basicCategory":"diagnostics_imaging_or_lab_service","count":25420,"totalCount":25534,"children":[{"name":"ultrasound_imaging","displayName":"Ultrasound Imaging","basicCategory":"diagnostics_imaging_or_lab_service","count":114,"totalCount":114}]},{"name":"doctors_office","displayName":"Doctors Office","basicCategory":"diagnostics_imaging_or_lab_service","count":485999,"totalCount":485999},{"name":"laboratory_testing","displayName":"Laboratory Testing","basicCategory":"diagnostics_imaging_or_lab_service","count":82907,"totalCount":83142,"children":[{"name":"paternity_testing","displayName":"Paternity Testing","basicCategory":"diagnostics_imaging_or_lab_service","count":235,"totalCount":235}]},{"name":"pathology","displayName":"Pathology","basicCategory":"diagnostics_imaging_or_lab_service","count":5280,"totalCount":5280},{"name":"radiology","displayName":"Radiology","basicCategory":"diagnostics_imaging_or_lab_service","count":13010,"totalCount":13010}]},{"name":"pediatric_clinic","displayName":"Pediatric Clinic","isBasic":true,"count":61242,"totalCount":65391,"children":[{"name":"general_pediatrics","displayName":"General Pediatrics","basicCategory":"pediatric_clinic","totalCount":0},{"name":"pediatric_anesthesiology","displayName":"Pediatric Anesthesiology","basicCategory":"pediatric_clinic","count":124,"totalCount":124},{"name":"pediatric_cardiology","displayName":"Pediatric Cardiology","basicCategory":"pediatric_clinic","count":1654,"totalCount":1654},{"name":"pediatric_endocrinology","displayName":"Pediatric Endocrinology","basicCategory":"pediatric_clinic","count":413,"totalCount":413},{"name":"pediatric_gastroenterology","displayName":"Pediatric Gastroenterology","basicCategory":"pediatric_clinic","count":453,"totalCount":453},{"name":"pediatric_infectious_disease","displayName":"Pediatric Infectious Disease","basicCategory":"pediatric_clinic","count":22,"totalCount":22},{"name":"pediatric_nephrology","displayName":"Pediatric Nephrology","basicCategory":"pediatric_clinic","count":137,"totalCount":137},{"name":"pediatric_neurology","displayName":"Pediatric Neurology","basicCategory":"pediatric_clinic","count":410,"totalCount":410},{"name":"pediatric_oncology","displayName":"Pediatric Oncology","basicCategory":"pediatric_clinic","count":333,"totalCount":333},{"name":"pediatric_pulmonology","displayName":"Pediatric Pulmonology","basicCategory":"pediatric_clinic","count":529,"totalCount":529},{"name":"pediatric_radiology","displayName":"Pediatric Radiology","basicCategory":"pediatric_clinic","count":74,"totalCount":74}]},{"name":"physical_medicine_and_rehabilitation","displayName":"Physical Medicine and Rehabilitation","isBasic":true,"totalCount":317844,"children":[{"name":"animal_assisted_therapy","displayName":"Animal Assisted Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":12,"totalCount":12},{"name":"occupational_therapy","displayName":"Occupational Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":17048,"totalCount":17048},{"name":"orthotics","displayName":"Orthotics","basicCategory":"physical_medicine_and_rehabilitation","count":1212,"totalCount":1212},{"name":"physical_therapy","displayName":"Physical Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":252050,"totalCount":252050},{"name":"prosthetics","displayName":"Prosthetics","basicCategory":"physical_medicine_and_rehabilitation","count":7436,"totalCount":7436},{"name":"psychomotor_therapy","displayName":"Psychomotor Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":234,"totalCount":234},{"name":"rehabilitation_center","displayName":"Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","count":8476,"totalCount":14251,"children":[{"name":"addiction_rehabilitation_center","displayName":"Addiction Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","count":5775,"totalCount":5775}]},{"name":"speech_therapy","displayName":"Speech Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":25601,"totalCount":25601}]},{"name":"primary_care_or_general_clinic","displayName":"Primary Care or General Clinic","isBasic":true,"count":8080,"totalCount":114624,"children":[{"name":"community_health_center","displayName":"Community Health Center","basicCategory":"primary_care_or_general_clinic","count":1400,"totalCount":1400},{"name":"concierge_medicine","displayName":"Concierge Medicine","basicCategory":"primary_care_or_general_clinic","count":80,"totalCount":80},{"name":"family_practice","displayName":"Family Practice","basicCategory":"primary_care_or_general_clinic","count":61835,"totalCount":61835},{"name":"mobile_clinic","displayName":"Mobile Clinic","basicCategory":"primary_care_or_general_clinic","count":11,"totalCount":11},{"name":"public_health_clinic","displayName":"Public Health Clinic","basicCategory":"primary_care_or_general_clinic","count":43218,"totalCount":43218},{"name":"storefront_clinic","displayName":"Storefront Clinic","basicCategory":"primary_care_or_general_clinic","totalCount":0}]},{"name":"reproductive_perinatal_and_womens_care","displayName":"Reproductive Perinatal and Women's Care","isBasic":true,"count":12739,"totalCount":111934,"children":[{"name":"doula_service","displayName":"Doula Service","basicCategory":"reproductive_perinatal_and_womens_care","count":544,"totalCount":544},{"name":"lactation_service","displayName":"Lactation Service","basicCategory":"reproductive_perinatal_and_womens_care","count":260,"totalCount":260},{"name":"maternity_center","displayName":"Maternity Center","basicCategory":"reproductive_perinatal_and_womens_care","count":7853,"totalCount":7853},{"name":"midwifery","displayName":"Midwifery","basicCategory":"reproductive_perinatal_and_womens_care","count":10706,"totalCount":10706},{"name":"obstetrics_and_gynecology","displayName":"Obstetrics and Gynecology","basicCategory":"reproductive_perinatal_and_womens_care","count":70469,"totalCount":70469},{"name":"prenatal_and_perinatal_care","displayName":"Prenatal and Perinatal Care","basicCategory":"reproductive_perinatal_and_womens_care","count":9363,"totalCount":9363}]},{"name":"specialized_health_care","displayName":"Specialized Health Care","isBasic":true,"count":5686,"totalCount":482515,"children":[{"name":"cardiovascular_and_vascular_medicine","displayName":"Cardiovascular and Vascular Medicine","basicCategory":"specialized_health_care","totalCount":32812,"children":[{"name":"cardiology","displayName":"Cardiology","basicCategory":"specialized_health_care","count":32443,"totalCount":32443},{"name":"phlebology","displayName":"Phlebology","basicCategory":"specialized_health_care","count":45,"totalCount":45},{"name":"vascular_medicine","displayName":"Vascular Medicine","basicCategory":"specialized_health_care","count":324,"totalCount":324}]},{"name":"ear_nose_and_throat","displayName":"Ear Nose and Throat","basicCategory":"specialized_health_care","count":19933,"totalCount":42717,"children":[{"name":"audiology","displayName":"Audiology","basicCategory":"specialized_health_care","count":17747,"totalCount":17747},{"name":"otolaryngology","displayName":"Otolaryngology","basicCategory":"specialized_health_care","count":4762,"totalCount":5037,"children":[{"name":"neurotology","displayName":"Neurotology","basicCategory":"specialized_health_care","count":11,"totalCount":11},{"name":"otology","displayName":"Otology","basicCategory":"specialized_health_care","count":264,"totalCount":264}]}]},{"name":"endocrinology","displayName":"Endocrinology","basicCategory":"specialized_health_care","count":8063,"totalCount":8063},{"name":"gastroenterology","displayName":"Gastroenterology","basicCategory":"specialized_health_care","count":16159,"totalCount":18421,"children":[{"name":"endoscopy","displayName":"Endoscopy","basicCategory":"specialized_health_care","count":42,"totalCount":42},{"name":"hepatology","displayName":"Hepatology","basicCategory":"specialized_health_care","count":113,"totalCount":113},{"name":"proctology","displayName":"Proctology","basicCategory":"specialized_health_care","count":2107,"totalCount":2107}]},{"name":"genetics","displayName":"Genetics","basicCategory":"specialized_health_care","count":106,"totalCount":953,"children":[{"name":"gerontology","displayName":"Gerontology","basicCategory":"specialized_health_care","count":847,"totalCount":847}]},{"name":"geriatric_medicine","displayName":"Geriatric Medicine","basicCategory":"specialized_health_care","count":1144,"totalCount":1144},{"name":"internal_medicine","displayName":"Internal Medicine","basicCategory":"specialized_health_care","count":40250,"totalCount":73736,"children":[{"name":"allergy_and_immunology","displayName":"Allergy and Immunology","basicCategory":"specialized_health_care","count":6778,"totalCount":6778},{"name":"infectious_disease","displayName":"Infectious Disease","basicCategory":"specialized_health_care","count":3104,"totalCount":3104,"children":[{"name":"tropical_medicine","displayName":"Tropical Medicine","basicCategory":"specialized_health_care","totalCount":0}]},{"name":"oncology","displayName":"Oncology","basicCategory":"specialized_health_care","count":14880,"totalCount":18656,"children":[{"name":"hematology","displayName":"Hematology","basicCategory":"specialized_health_care","count":3776,"totalCount":3776}]},{"name":"rheumatology","displayName":"Rheumatology","basicCategory":"specialized_health_care","count":4948,"totalCount":4948}]},{"name":"medical_skin_care","displayName":"Medical Skin Care","basicCategory":"specialized_health_care","totalCount":50382,"children":[{"name":"aesthetic_medicine","displayName":"Aesthetic Medicine","basicCategory":"specialized_health_care","count":299,"totalCount":299},{"name":"body_contouring","displayName":"Body Contouring","basicCategory":"specialized_health_care","count":457,"totalCount":457},{"name":"dermatology","displayName":"Dermatology","basicCategory":"specialized_health_care","count":49000,"totalCount":49031,"children":[{"name":"immunodermatology","displayName":"Immunodermatology","basicCategory":"specialized_health_care","count":31,"totalCount":31}]},{"name":"tattoo_removal","displayName":"Tattoo Removal","basicCategory":"specialized_health_care","count":595,"totalCount":595}]},{"name":"musculoskeletal_medicine","displayName":"Musculoskeletal Medicine","basicCategory":"specialized_health_care","totalCount":91691,"children":[{"name":"orthopedics","displayName":"Orthopedics","basicCategory":"specialized_health_care","count":43183,"totalCount":43183},{"name":"podiatry","displayName":"Podiatry","basicCategory":"specialized_health_care","count":48508,"totalCount":48508}]},{"name":"nephrology","displayName":"Nephrology","basicCategory":"specialized_health_care","count":5563,"totalCount":5563},{"name":"neurology","displayName":"Neurology","basicCategory":"specialized_health_care","count":20888,"totalCount":23240,"children":[{"name":"neuropathology","displayName":"Neuropathology","basicCategory":"specialized_health_care","count":2352,"totalCount":2352}]},{"name":"nursing","displayName":"Nursing","basicCategory":"specialized_health_care","count":45131,"totalCount":45131},{"name":"osteopathic_medicine","displayName":"Osteopathic Medicine","basicCategory":"specialized_health_care","count":31739,"totalCount":31739},{"name":"pain_management","displayName":"Pain Management","basicCategory":"specialized_health_care","count":7210,"totalCount":12607,"children":[{"name":"anesthesiology","displayName":"Anesthesiology","basicCategory":"specialized_health_care","count":5397,"totalCount":5397}]},{"name":"preventive_medicine","displayName":"Preventive Medicine","basicCategory":"specialized_health_care","count":88,"totalCount":4073,"children":[{"name":"environmental_medicine","displayName":"Environmental Medicine","basicCategory":"specialized_health_care","count":5,"totalCount":5},{"name":"hyperbaric_medicine","displayName":"Hyperbaric Medicine","basicCategory":"specialized_health_care","count":166,"totalCount":166},{"name":"occupational_medicine","displayName":"Occupational Medicine","basicCategory":"specialized_health_care","count":3779,"totalCount":3779},{"name":"toxicology","displayName":"Toxicology","basicCategory":"specialized_health_care","count":35,"totalCount":35}]},{"name":"pulmonology","displayName":"Pulmonology","basicCategory":"specialized_health_care","count":6550,"totalCount":8772,"children":[{"name":"sleep_medicine","displayName":"Sleep Medicine","basicCategory":"specialized_health_care","count":2222,"totalCount":2222}]},{"name":"sports_medicine","displayName":"Sports Medicine","basicCategory":"specialized_health_care","count":6475,"totalCount":6475},{"name":"urology","displayName":"Urology","basicCategory":"specialized_health_care","count":19310,"totalCount":19310}]},{"name":"vision_or_eye_care_clinic","displayName":"Vision or Eye Care Clinic","isBasic":true,"count":35764,"totalCount":133822,"children":[{"name":"ophthalmology","displayName":"Ophthalmology","basicCategory":"vision_or_eye_care_clinic","count":17158,"totalCount":19214,"children":[{"name":"refractive_surgery_or_lasik","displayName":"Refractive Surgery or Lasik","basicCategory":"vision_or_eye_care_clinic","count":1819,"totalCount":1819},{"name":"retina_services","displayName":"Retina Services","basicCategory":"vision_or_eye_care_clinic","count":237,"totalCount":237}]},{"name":"optometry","displayName":"Optometry","basicCategory":"vision_or_eye_care_clinic","count":78844,"totalCount":78844}]}]},{"name":"specialized_medical_facility","displayName":"Specialized Medical Facility","isBasic":true,"count":309,"totalCount":157473,"children":[{"name":"abortion_clinic","displayName":"Abortion Clinic","basicCategory":"specialized_medical_facility","count":476,"totalCount":476},{"name":"abuse_and_addiction_treatment_center","displayName":"Abuse and Addiction Treatment Center","basicCategory":"specialized_medical_facility","count":19527,"totalCount":24684,"children":[{"name":"alcohol_and_drug_treatment_center","displayName":"Alcohol and Drug Treatment Center","basicCategory":"specialized_medical_facility","count":5157,"totalCount":5157}]},{"name":"cancer_treatment_center","displayName":"Cancer Treatment Center","basicCategory":"specialized_medical_facility","count":1964,"totalCount":1964},{"name":"dialysis_clinic","displayName":"Dialysis Clinic","basicCategory":"specialized_medical_facility","count":13181,"totalCount":13181},{"name":"eating_disorder_treatment_center","displayName":"Eating Disorder Treatment Center","basicCategory":"specialized_medical_facility","count":234,"totalCount":234},{"name":"fertility_clinic","displayName":"Fertility Clinic","basicCategory":"specialized_medical_facility","count":6875,"totalCount":6875},{"name":"organ_and_tissue_donor_service","displayName":"Organ and Tissue Donor Service","basicCategory":"specialized_medical_facility","count":44,"totalCount":44},{"name":"surgery","displayName":"Surgery","isBasic":true,"count":34491,"totalCount":109706,"children":[{"name":"cardiothoracic_surgery","displayName":"Cardiothoracic Surgery","basicCategory":"surgery","count":1842,"totalCount":1842},{"name":"oral_and_maxillofacial_surgery","displayName":"Oral and Maxillofacial Surgery","basicCategory":"surgery","count":13936,"totalCount":13936},{"name":"orthopedic_surgery","displayName":"Orthopedic Surgery","basicCategory":"surgery","count":9613,"totalCount":10223,"children":[{"name":"pediatric_orthopedic_surgery","displayName":"Pediatric Orthopedic Surgery","basicCategory":"surgery","count":449,"totalCount":449},{"name":"spine_surgery","displayName":"Spine Surgery","basicCategory":"surgery","count":161,"totalCount":161}]},{"name":"pediatric_surgery","displayName":"Pediatric Surgery","basicCategory":"surgery","count":359,"totalCount":359},{"name":"plastic_and_reconstructive_surgery","displayName":"Plastic and Reconstructive Surgery","basicCategory":"surgery","count":35787,"totalCount":38494,"children":[{"name":"cosmetic_surgery","displayName":"Cosmetic Surgery","basicCategory":"surgery","count":2707,"totalCount":2707}]},{"name":"surgery_center","displayName":"Surgery Center","basicCategory":"surgery","count":10361,"totalCount":10361}]}]}]},{"name":"lifestyle_services","displayName":"Lifestyle Services","isBasic":true,"totalCount":5007526,"children":[{"name":"animal_or_pet_service","displayName":"Animal or Pet Service","isBasic":true,"count":86673,"totalCount":575787,"children":[{"name":"animal_adoption_or_rescue","displayName":"Animal Adoption or Rescue","basicCategory":"animal_or_pet_service","totalCount":36586,"children":[{"name":"animal_rescue_service","displayName":"Animal Rescue Service","basicCategory":"animal_or_pet_service","count":5995,"totalCount":5995},{"name":"animal_shelter","displayName":"Animal Shelter","basicCategory":"animal_or_pet_service","count":28886,"totalCount":28886},{"name":"pet_adoption","displayName":"Pet Adoption","basicCategory":"animal_or_pet_service","count":1705,"totalCount":1705}]},{"name":"equine_service","displayName":"Equine Service","basicCategory":"animal_or_pet_service","totalCount":24834,"children":[{"name":"farrier_service","displayName":"Farrier Service","basicCategory":"animal_or_pet_service","count":62,"totalCount":62},{"name":"horse_boarding","displayName":"Horse Boarding","basicCategory":"animal_or_pet_service","count":17493,"totalCount":17493},{"name":"horse_trainer","displayName":"Horse Trainer","basicCategory":"animal_or_pet_service","count":7279,"totalCount":7279}]},{"name":"pet_breeder","displayName":"Pet Breeder","basicCategory":"animal_or_pet_service","count":37720,"totalCount":37720},{"name":"pet_care_service","displayName":"Pet Care Service","basicCategory":"animal_or_pet_service","count":582,"totalCount":176471,"children":[{"name":"aquarium_service","displayName":"Aquarium Service","basicCategory":"animal_or_pet_service","count":155,"totalCount":155},{"name":"dog_walker","displayName":"Dog Walker","basicCategory":"animal_or_pet_service","count":6298,"totalCount":6298},{"name":"pet_boarding","displayName":"Pet Boarding","basicCategory":"animal_or_pet_service","count":19424,"totalCount":19424},{"name":"pet_groomer","displayName":"Pet Groomer","basicCategory":"animal_or_pet_service","count":104196,"totalCount":104196},{"name":"pet_sitting","displayName":"Pet Sitting","basicCategory":"animal_or_pet_service","count":13307,"totalCount":13307},{"name":"pet_training","displayName":"Pet Training","basicCategory":"animal_or_pet_service","count":1493,"totalCount":32393,"children":[{"name":"dog_trainer","displayName":"Dog Trainer","basicCategory":"animal_or_pet_service","count":30900,"totalCount":30900}]},{"name":"pet_transportation","displayName":"Pet Transportation","basicCategory":"animal_or_pet_service","count":60,"totalCount":60},{"name":"pet_waste_removal","displayName":"Pet Waste Removal","basicCategory":"animal_or_pet_service","count":56,"totalCount":56}]},{"name":"pet_cemetery_and_crematorium_service","displayName":"Pet Cemetery and Crematorium Service","basicCategory":"animal_or_pet_service","count":421,"totalCount":421},{"name":"pet_insurance","displayName":"Pet Insurance","basicCategory":"animal_or_pet_service","count":22,"totalCount":22},{"name":"pet_photography","displayName":"Pet Photography","basicCategory":"animal_or_pet_service","count":71,"totalCount":71},{"name":"veterinary_care","displayName":"Veterinary Care","basicCategory":"animal_or_pet_service","count":1014,"totalCount":212989,"children":[{"name":"animal_hospital","displayName":"Animal Hospital","basicCategory":"animal_or_pet_service","count":2195,"totalCount":2195},{"name":"animal_physical_therapy","displayName":"Animal Physical Therapy","basicCategory":"animal_or_pet_service","count":16,"totalCount":16},{"name":"emergency_pet_hospital","displayName":"Emergency Pet Hospital","basicCategory":"animal_or_pet_service","count":677,"totalCount":677},{"name":"holistic_animal_care","displayName":"Holistic Animal Care","basicCategory":"animal_or_pet_service","count":81,"totalCount":81},{"name":"pet_hospice","displayName":"Pet Hospice","basicCategory":"animal_or_pet_service","count":1117,"totalCount":1117},{"name":"veterinarian","displayName":"Veterinarian","basicCategory":"animal_or_pet_service","count":207889,"totalCount":207889}]}]},{"name":"food_service","displayName":"Food Service","isBasic":true,"count":2379,"totalCount":73446,"children":[{"name":"food_consultant","displayName":"Food Consultant","basicCategory":"food_service","count":2979,"totalCount":2979},{"name":"food_delivery_service","displayName":"Food Delivery Service","basicCategory":"food_service","count":58053,"totalCount":68088,"children":[{"name":"pizza_delivery_service","displayName":"Pizza Delivery Service","basicCategory":"food_service","count":10035,"totalCount":10035}]}]},{"name":"personal_or_beauty_service","displayName":"Personal or Beauty Service","isBasic":true,"count":43178,"totalCount":3261406,"children":[{"name":"acne_treatment","displayName":"Acne Treatment","basicCategory":"personal_or_beauty_service","count":78,"totalCount":78},{"name":"barber","displayName":"Barber","basicCategory":"personal_or_beauty_service","count":397315,"totalCount":397586,"children":[{"name":"mens_grooming_salon","displayName":"Men's Grooming Salon","basicCategory":"personal_or_beauty_service","count":271,"totalCount":271}]},{"name":"beauty_salon","displayName":"Beauty Salon","basicCategory":"personal_or_beauty_service","count":1297379,"totalCount":1297379,"children":[{"name":"teeth_jewelry_service","displayName":"Teeth Jewelry Service","basicCategory":"personal_or_beauty_service","totalCount":0}]},{"name":"body_modification","displayName":"Body Modification","basicCategory":"personal_or_beauty_service","totalCount":201495,"children":[{"name":"body_art","displayName":"Body Art","basicCategory":"personal_or_beauty_service","count":4,"totalCount":4},{"name":"mehndi_henna","displayName":"Mehndi Henna","basicCategory":"personal_or_beauty_service","totalCount":0},{"name":"scalp_micropigmentation","displayName":"Scalp Micropigmentation","basicCategory":"personal_or_beauty_service","totalCount":0},{"name":"tattoo_and_piercing","displayName":"Tattoo and Piercing","basicCategory":"personal_or_beauty_service","count":182793,"totalCount":201491,"children":[{"name":"piercing","displayName":"Piercing","basicCategory":"personal_or_beauty_service","count":2821,"totalCount":2821},{"name":"tattoo","displayName":"Tattoo","basicCategory":"personal_or_beauty_service","count":15877,"totalCount":15877}]}]},{"name":"eyebrow_service","displayName":"Eyebrow Service","basicCategory":"personal_or_beauty_service","count":831,"totalCount":831},{"name":"eyelash_service","displayName":"Eyelash Service","basicCategory":"personal_or_beauty_service","count":5375,"totalCount":5375},{"name":"foot_care","displayName":"Foot Care","basicCategory":"personal_or_beauty_service","count":6534,"totalCount":6534},{"name":"hair_removal","displayName":"Hair Removal","basicCategory":"personal_or_beauty_service","count":13013,"totalCount":53060,"children":[{"name":"laser_hair_removal","displayName":"Laser Hair Removal","basicCategory":"personal_or_beauty_service","count":19904,"totalCount":19904},{"name":"sugaring","displayName":"Sugaring","basicCategory":"personal_or_beauty_service","count":1243,"totalCount":1243},{"name":"threading_service","displayName":"Threading Service","basicCategory":"personal_or_beauty_service","count":3280,"totalCount":3280},{"name":"waxing","displayName":"Waxing","basicCategory":"personal_or_beauty_service","count":15620,"totalCount":15620}]},{"name":"hair_replacement","displayName":"Hair Replacement","basicCategory":"personal_or_beauty_service","count":7087,"totalCount":16706,"children":[{"name":"hair_extensions","displayName":"Hair Extensions","basicCategory":"personal_or_beauty_service","count":8670,"totalCount":8670},{"name":"hair_loss_center","displayName":"Hair Loss Center","basicCategory":"personal_or_beauty_service","count":949,"totalCount":949},{"name":"wig_hairpiece_service","displayName":"Wig Hairpiece Service","basicCategory":"personal_or_beauty_service","totalCount":0}]},{"name":"hair_salon","displayName":"Hair Salon","basicCategory":"personal_or_beauty_service","count":726823,"totalCount":742253,"children":[{"name":"blow_dry_blow_out_service","displayName":"Blow Dry Blow Out Service","basicCategory":"personal_or_beauty_service","count":408,"totalCount":408},{"name":"hair_color_bar","displayName":"Hair Color Bar","basicCategory":"personal_or_beauty_service","totalCount":0},{"name":"hair_stylist","displayName":"Hair Stylist","basicCategory":"personal_or_beauty_service","count":12944,"totalCount":12944},{"name":"kids_hair_salon","displayName":"Kids Hair Salon","basicCategory":"personal_or_beauty_service","count":2078,"totalCount":2078}]},{"name":"image_consultant","displayName":"Image Consultant","basicCategory":"personal_or_beauty_service","count":3908,"totalCount":3908},{"name":"life_coach","displayName":"Life Coach","basicCategory":"personal_or_beauty_service","count":41523,"totalCount":41523},{"name":"matchmaker","displayName":"Matchmaker","basicCategory":"personal_or_beauty_service","count":393,"totalCount":393},{"name":"nail_salon","displayName":"Nail Salon","basicCategory":"personal_or_beauty_service","count":260509,"totalCount":260509},{"name":"shoe_repair","displayName":"Shoe Repair","basicCategory":"personal_or_beauty_service","count":18896,"totalCount":18896},{"name":"shoe_shining_service","displayName":"Shoe Shining Service","basicCategory":"personal_or_beauty_service","count":83,"totalCount":83},{"name":"skin_care_and_makeup","displayName":"Skin Care and Makeup","basicCategory":"personal_or_beauty_service","count":88420,"totalCount":129890,"children":[{"name":"esthetician","displayName":"Esthetician","basicCategory":"personal_or_beauty_service","count":674,"totalCount":674},{"name":"makeup_artist","displayName":"Makeup Artist","basicCategory":"personal_or_beauty_service","count":38985,"totalCount":38985},{"name":"permanent_makeup","displayName":"Permanent Makeup","basicCategory":"personal_or_beauty_service","count":1811,"totalCount":1811}]},{"name":"tanning_salon","displayName":"Tanning Salon","basicCategory":"personal_or_beauty_service","count":37813,"totalCount":38849,"children":[{"name":"spray_tanning","displayName":"Spray Tanning","basicCategory":"personal_or_beauty_service","count":882,"totalCount":882},{"name":"tanning_bed","displayName":"Tanning Bed","basicCategory":"personal_or_beauty_service","count":154,"totalCount":154}]},{"name":"teeth_whitening","displayName":"Teeth Whitening","basicCategory":"personal_or_beauty_service","count":2880,"totalCount":2880}]},{"name":"wellness_service","displayName":"Wellness Service","isBasic":true,"count":10806,"totalCount":1096887,"children":[{"name":"colonic_hydrotherapy","displayName":"Colonic Hydrotherapy","basicCategory":"wellness_service","count":76,"totalCount":76},{"name":"cryotherapy","displayName":"Cryotherapy","basicCategory":"wellness_service","count":243,"totalCount":243},{"name":"halotherapy","displayName":"Halotherapy","basicCategory":"wellness_service","count":35,"totalCount":35},{"name":"health_and_wellness_club","displayName":"Health and Wellness Club","basicCategory":"wellness_service","count":2004,"totalCount":2004},{"name":"health_coaching","displayName":"Health Coaching","basicCategory":"wellness_service","count":12710,"totalCount":12710},{"name":"hydrotherapy","displayName":"Hydrotherapy","basicCategory":"wellness_service","count":23,"totalCount":23},{"name":"iv_hydration","displayName":"IV Hydration","basicCategory":"wellness_service","count":295,"totalCount":295},{"name":"massage_therapy","displayName":"Massage Therapy","basicCategory":"wellness_service","count":204146,"totalCount":204146},{"name":"meditation_center","displayName":"Meditation Center","basicCategory":"wellness_service","count":11619,"totalCount":11619},{"name":"nutrition_service","displayName":"Nutrition Service","basicCategory":"wellness_service","count":77371,"totalCount":77371},{"name":"oxygen_bar","displayName":"Oxygen Bar","basicCategory":"wellness_service","count":15,"totalCount":15},{"name":"public_bath_house","displayName":"Public Bath House","basicCategory":"wellness_service","count":794,"totalCount":5238,"children":[{"name":"onsen","displayName":"Onsen","basicCategory":"wellness_service","count":4444,"totalCount":4444},{"name":"turkish_bath","displayName":"Turkish Bath","basicCategory":"wellness_service","totalCount":0}]},{"name":"sauna","displayName":"Sauna","basicCategory":"wellness_service","count":1707,"totalCount":1707},{"name":"snuggle_service","displayName":"Snuggle Service","basicCategory":"wellness_service","count":4,"totalCount":4},{"name":"spa","displayName":"Spa","basicCategory":"wellness_service","count":644551,"totalCount":747280,"children":[{"name":"day_spa","displayName":"Day Spa","basicCategory":"wellness_service","count":30804,"totalCount":30804},{"name":"float_spa","displayName":"Float Spa","basicCategory":"wellness_service","count":58,"totalCount":58},{"name":"health_spa","displayName":"Health Spa","basicCategory":"wellness_service","count":19805,"totalCount":19805},{"name":"medical_spa","displayName":"Medical Spa","basicCategory":"wellness_service","count":52062,"totalCount":52062}]},{"name":"weight_loss_center","displayName":"Weight Loss Center","basicCategory":"wellness_service","count":23315,"totalCount":23315}]}]},{"name":"lodging","displayName":"Lodging","isBasic":true,"count":453638,"totalCount":2760980,"children":[{"name":"bed_and_breakfast","displayName":"Bed and Breakfast","isBasic":true,"count":186167,"totalCount":186167},{"name":"cabin","displayName":"Cabin","basicCategory":"lodging","count":39849,"totalCount":39849},{"name":"campground","displayName":"Campground","isBasic":true,"count":109759,"totalCount":109759},{"name":"cottage","displayName":"Cottage","basicCategory":"lodging","count":41435,"totalCount":41435},{"name":"country_house","displayName":"Country House","basicCategory":"lodging","count":1001,"totalCount":1001},{"name":"holiday_park","displayName":"Holiday Park","basicCategory":"lodging","count":75,"totalCount":75},{"name":"hostel","displayName":"Hostel","basicCategory":"lodging","count":64590,"totalCount":64590},{"name":"hotel","displayName":"Hotel","isBasic":true,"count":1242128,"totalCount":1275983,"children":[{"name":"motel","displayName":"Motel","basicCategory":"hotel","count":33855,"totalCount":33855}]},{"name":"houseboat","displayName":"Houseboat","basicCategory":"lodging","count":15,"totalCount":15},{"name":"inn","displayName":"Inn","isBasic":true,"count":24999,"totalCount":24999},{"name":"lodge","displayName":"Lodge","basicCategory":"lodging","count":69429,"totalCount":69429},{"name":"mountain_hut","displayName":"Mountain Hut","basicCategory":"lodging","count":148,"totalCount":148},{"name":"private_lodging","displayName":"Private Lodging","isBasic":true,"totalCount":319120,"children":[{"name":"guest_house","displayName":"Guest House","basicCategory":"private_lodging","count":7970,"totalCount":7970},{"name":"holiday_rental_home","displayName":"Holiday Rental Home","basicCategory":"private_lodging","count":311150,"totalCount":311150}]},{"name":"resort","displayName":"Resort","isBasic":true,"count":104897,"totalCount":128571,"children":[{"name":"beach_resort","displayName":"Beach Resort","basicCategory":"resort","count":8373,"totalCount":8373},{"name":"ski_resort","displayName":"Ski Resort","basicCategory":"resort","count":15301,"totalCount":15301}]},{"name":"retreat","displayName":"Retreat","basicCategory":"lodging","count":287,"totalCount":403,"children":[{"name":"health_retreat","displayName":"Health Retreat","basicCategory":"lodging","count":116,"totalCount":116}]},{"name":"rv_park","displayName":"RV Park","isBasic":true,"count":24113,"totalCount":24113},{"name":"ryokan","displayName":"Ryokan","basicCategory":"lodging","count":3,"totalCount":3},{"name":"self_catering_accommodation","displayName":"Self Catering Accommodation","basicCategory":"lodging","count":1562,"totalCount":1562},{"name":"service_apartment","displayName":"Service Apartment","basicCategory":"lodging","count":20120,"totalCount":20120}]},{"name":"services_and_business","displayName":"Services and Business","isBasic":true,"count":1018,"totalCount":21176037,"children":[{"name":"agricultural_service","displayName":"Agricultural Service","isBasic":true,"count":97624,"totalCount":425871,"children":[{"name":"agriculture_association","displayName":"Agriculture Association","basicCategory":"agricultural_service","count":911,"totalCount":911},{"name":"farm","displayName":"Farm","isBasic":true,"count":296906,"totalCount":326388,"children":[{"name":"dairy_farm","displayName":"Dairy Farm","basicCategory":"farm","count":13160,"totalCount":13160},{"name":"orchard","displayName":"Orchard","basicCategory":"farm","count":635,"totalCount":635},{"name":"pig_farm","displayName":"Pig Farm","basicCategory":"farm","count":270,"totalCount":270},{"name":"poultry_farm","displayName":"Poultry Farm","basicCategory":"farm","count":7136,"totalCount":7136},{"name":"ranch","displayName":"Ranch","basicCategory":"farm","count":1178,"totalCount":1178},{"name":"urban_farm","displayName":"Urban Farm","basicCategory":"farm","count":7103,"totalCount":7103}]},{"name":"farm_equipment_repair_service","displayName":"Farm Equipment Repair Service","basicCategory":"agricultural_service","count":948,"totalCount":948}]},{"name":"b2b_service","displayName":"B2B Service","isBasic":true,"count":122261,"totalCount":2595625,"children":[{"name":"b2b_agriculture_service","displayName":"B2B Agriculture Service","basicCategory":"b2b_service","count":86,"totalCount":152483,"children":[{"name":"agricultural_cooperative","displayName":"Agricultural Cooperative","basicCategory":"b2b_service","count":28690,"totalCount":28690},{"name":"agriculture","displayName":"Agriculture","basicCategory":"b2b_service","count":66372,"totalCount":66372},{"name":"apiary_beekeeper","displayName":"Apiary Beekeeper","basicCategory":"b2b_service","count":39,"totalCount":39},{"name":"b2b_dairy","displayName":"B2B Dairy","basicCategory":"b2b_service","count":81,"totalCount":81},{"name":"b2b_farming","displayName":"B2B Farming","basicCategory":"b2b_service","count":12,"totalCount":20288,"children":[{"name":"b2b_farm","displayName":"B2B Farm","basicCategory":"b2b_service","count":80,"totalCount":80},{"name":"farm_equipment_and_supply","displayName":"Farm Equipment and Supply","basicCategory":"b2b_service","count":11260,"totalCount":14659,"children":[{"name":"fertilizer_store","displayName":"Fertilizer Store","basicCategory":"b2b_service","count":1086,"totalCount":1086},{"name":"grain_elevator","displayName":"Grain Elevator","basicCategory":"b2b_service","count":1687,"totalCount":1687},{"name":"greenhouse","displayName":"Greenhouse","basicCategory":"b2b_service","count":626,"totalCount":626}]},{"name":"farming_service","displayName":"Farming Service","basicCategory":"b2b_service","count":5537,"totalCount":5537}]},{"name":"b2b_food_products","displayName":"B2B Food Products","basicCategory":"b2b_service","count":4459,"totalCount":4459},{"name":"crops_production","displayName":"Crops Production","basicCategory":"b2b_service","count":2426,"totalCount":3512,"children":[{"name":"grain_production","displayName":"Grain Production","basicCategory":"b2b_service","count":1081,"totalCount":1081},{"name":"orchards_production","displayName":"Orchards Production","basicCategory":"b2b_service","count":5,"totalCount":5}]},{"name":"fish_farm_hatchery","displayName":"Fish Farm Hatchery","basicCategory":"b2b_service","count":148,"totalCount":7547,"children":[{"name":"fish_farm","displayName":"Fish Farm","basicCategory":"b2b_service","count":7399,"totalCount":7399}]},{"name":"livestock_breeder","displayName":"Livestock Breeder","basicCategory":"b2b_service","count":21047,"totalCount":21047},{"name":"livestock_dealer","displayName":"Livestock Dealer","basicCategory":"b2b_service","count":252,"totalCount":252},{"name":"poultry_farming","displayName":"Poultry Farming","basicCategory":"b2b_service","count":110,"totalCount":110}]},{"name":"b2b_energy_and_utility_service","displayName":"B2B Energy and Utility Service","isBasic":true,"count":38355,"totalCount":68998,"children":[{"name":"b2b_mining","displayName":"B2B Mining","basicCategory":"b2b_energy_and_utility_service","count":10906,"totalCount":12955,"children":[{"name":"b2b_coal_and_coke","displayName":"B2B Coal and Coke","basicCategory":"b2b_energy_and_utility_service","count":583,"totalCount":583},{"name":"b2b_quarry","displayName":"B2B Quarry","basicCategory":"b2b_energy_and_utility_service","count":1466,"totalCount":1466}]},{"name":"b2b_oil_and_gas","displayName":"B2B Oil and Gas","basicCategory":"b2b_energy_and_utility_service","count":9258,"totalCount":16048,"children":[{"name":"b2b_oil_and_gas_equipment","displayName":"B2B Oil and Gas Equipment","basicCategory":"b2b_energy_and_utility_service","count":2999,"totalCount":2999},{"name":"b2b_oil_and_gas_exploration_and_development","displayName":"B2B Oil and Gas Exploration and Development","basicCategory":"b2b_energy_and_utility_service","count":702,"totalCount":702},{"name":"b2b_oil_and_gas_extraction","displayName":"B2B Oil and Gas Extraction","basicCategory":"b2b_energy_and_utility_service","count":1358,"totalCount":1358},{"name":"b2b_oil_refinery","displayName":"B2B Oil Refinery","basicCategory":"b2b_energy_and_utility_service","count":1731,"totalCount":1731}]},{"name":"b2b_power_plants_and_power_plant_service","displayName":"B2B Power Plants and Power Plant Service","basicCategory":"b2b_energy_and_utility_service","count":960,"totalCount":960},{"name":"energy_management_service","displayName":"Energy Management Service","basicCategory":"b2b_energy_and_utility_service","count":680,"totalCount":680}]},{"name":"b2b_environmental_service","displayName":"B2B Environmental Service","basicCategory":"b2b_service","count":7384,"totalCount":66286,"children":[{"name":"b2b_cleaning_and_waste_management","displayName":"B2B Cleaning and Waste Management","basicCategory":"b2b_service","count":6408,"totalCount":6408},{"name":"b2b_water_treatment_service","displayName":"B2B Water Treatment Service","basicCategory":"b2b_service","count":30377,"totalCount":30377},{"name":"geological_service","displayName":"Geological Service","basicCategory":"b2b_service","count":5215,"totalCount":5215},{"name":"logging_contractor","displayName":"Logging Contractor","basicCategory":"b2b_service","count":2678,"totalCount":2678},{"name":"logging_equipment_and_supplies","displayName":"Logging Equipment and Supplies","basicCategory":"b2b_service","count":404,"totalCount":404},{"name":"logging_service","displayName":"Logging Service","basicCategory":"b2b_service","count":13820,"totalCount":13820}]},{"name":"b2b_industrial_and_machine_service","displayName":"B2B Industrial and Machine Service","isBasic":true,"count":3495,"totalCount":113309,"children":[{"name":"automation_service","displayName":"Automation Service","basicCategory":"b2b_industrial_and_machine_service","count":26561,"totalCount":26561},{"name":"b2b_equipment_maintenance_and_repair","displayName":"B2B Equipment Maintenance and Repair","basicCategory":"b2b_industrial_and_machine_service","count":936,"totalCount":936},{"name":"casting_molding_service","displayName":"Casting Molding Service","basicCategory":"b2b_industrial_and_machine_service","count":135,"totalCount":135},{"name":"chemical_plant","displayName":"Chemical Plant","basicCategory":"b2b_industrial_and_machine_service","count":56981,"totalCount":56981},{"name":"inventory_control_service","displayName":"Inventory Control Service","basicCategory":"b2b_industrial_and_machine_service","count":1039,"totalCount":1039},{"name":"laser_cutting_service","displayName":"Laser Cutting Service","basicCategory":"b2b_industrial_and_machine_service","count":854,"totalCount":854},{"name":"manufacturing_and_industrial_consultant","displayName":"Manufacturing and Industrial Consultant","basicCategory":"b2b_industrial_and_machine_service","count":968,"totalCount":968},{"name":"metal_plating_service","displayName":"Metal Plating Service","basicCategory":"b2b_industrial_and_machine_service","count":3273,"totalCount":3273},{"name":"occupational_safety","displayName":"Occupational Safety","basicCategory":"b2b_industrial_and_machine_service","count":16695,"totalCount":16695},{"name":"plastic_injection_molding_service","displayName":"Plastic Injection Molding Service","basicCategory":"b2b_industrial_and_machine_service","count":1019,"totalCount":1019},{"name":"turnery","displayName":"Turnery","basicCategory":"b2b_industrial_and_machine_service","count":1353,"totalCount":1353}]},{"name":"b2b_media_service","displayName":"B2B Media Service","basicCategory":"b2b_service","totalCount":3073,"children":[{"name":"b2b_audio_visual_production","displayName":"B2B Audio Visual Production","basicCategory":"b2b_service","count":3073,"totalCount":3073}]},{"name":"b2b_medical_support_service","displayName":"B2B Medical Support Service","basicCategory":"b2b_service","count":210,"totalCount":48145,"children":[{"name":"b2b_clinical_lab","displayName":"B2B Clinical Lab","basicCategory":"b2b_service","count":5877,"totalCount":5877},{"name":"b2b_dental_lab","displayName":"B2B Dental Lab","basicCategory":"b2b_service","count":12963,"totalCount":12963},{"name":"b2b_hospital_equipment_and_supplies","displayName":"B2B Hospital Equipment and Supplies","basicCategory":"b2b_service","count":5489,"totalCount":5489},{"name":"b2b_surgical_appliances_and_supplies","displayName":"B2B Surgical Appliances and Supplies","basicCategory":"b2b_service","count":23606,"totalCount":23606}]},{"name":"b2b_office_and_professional_service","displayName":"B2B Office and Professional Service","isBasic":true,"totalCount":223426,"children":[{"name":"b2b_advertising_and_marketing_service","displayName":"B2B Advertising and Marketing Service","basicCategory":"b2b_office_and_professional_service","count":57658,"totalCount":104693,"children":[{"name":"b2b_direct_mail_advertising","displayName":"B2B Direct Mail Advertising","basicCategory":"b2b_office_and_professional_service","count":477,"totalCount":477},{"name":"b2b_marketing_consultant","displayName":"B2B Marketing Consultant","basicCategory":"b2b_office_and_professional_service","count":33137,"totalCount":33137},{"name":"b2b_newspaper_advertising","displayName":"B2B Newspaper Advertising","basicCategory":"b2b_office_and_professional_service","count":776,"totalCount":776},{"name":"b2b_outdoor_advertising","displayName":"B2B Outdoor Advertising","basicCategory":"b2b_office_and_professional_service","count":174,"totalCount":174},{"name":"b2b_promotional_products_and_services","displayName":"B2B Promotional Products and Services","basicCategory":"b2b_office_and_professional_service","count":5380,"totalCount":5380},{"name":"b2b_publicity_service","displayName":"B2B Publicity Service","basicCategory":"b2b_office_and_professional_service","count":689,"totalCount":689},{"name":"b2b_radio_and_television_commercials","displayName":"B2B Radio and Television Commercials","basicCategory":"b2b_office_and_professional_service","count":1165,"totalCount":1165},{"name":"b2b_signage_service","displayName":"B2B Signage Service","basicCategory":"b2b_office_and_professional_service","count":1251,"totalCount":1251},{"name":"b2b_telemarketing_service","displayName":"B2B Telemarketing Service","basicCategory":"b2b_office_and_professional_service","count":3986,"totalCount":3986}]},{"name":"b2b_background_check_service","displayName":"B2B Background Check Service","basicCategory":"b2b_office_and_professional_service","count":33,"totalCount":33},{"name":"b2b_business_management_service","displayName":"B2B Business Management Service","basicCategory":"b2b_office_and_professional_service","count":81191,"totalCount":84445,"children":[{"name":"b2b_executive_search_consultants","displayName":"B2B Executive Search Consultants","basicCategory":"b2b_office_and_professional_service","count":1579,"totalCount":1579},{"name":"b2b_secretarial_service","displayName":"B2B Secretarial Service","basicCategory":"b2b_office_and_professional_service","count":1675,"totalCount":1675}]},{"name":"b2b_domestic_trade_service","displayName":"B2B Domestic Trade Service","basicCategory":"b2b_office_and_professional_service","count":1171,"totalCount":1171},{"name":"b2b_human_resource_service","displayName":"B2B Human Resource Service","basicCategory":"b2b_office_and_professional_service","count":11647,"totalCount":11647},{"name":"b2b_international_trade_service","displayName":"B2B International Trade Service","basicCategory":"b2b_office_and_professional_service","count":8435,"totalCount":8435},{"name":"b2b_records_storage_service","displayName":"B2B Records Storage Service","basicCategory":"b2b_office_and_professional_service","count":1699,"totalCount":1699},{"name":"restaurant_management","displayName":"Restaurant Management","basicCategory":"b2b_office_and_professional_service","count":14,"totalCount":14},{"name":"transcription_service","displayName":"Transcription Service","basicCategory":"b2b_office_and_professional_service","count":594,"totalCount":594},{"name":"translating_and_interpreting_service","displayName":"Translating and Interpreting Service","basicCategory":"b2b_office_and_professional_service","count":10695,"totalCount":10695}]},{"name":"b2b_science_and_technology_service","displayName":"B2B Science and Technology Service","isBasic":true,"count":15642,"totalCount":24502,"children":[{"name":"b2b_scientific_equipment","displayName":"B2B Scientific Equipment","basicCategory":"b2b_science_and_technology_service","count":501,"totalCount":501},{"name":"b2b_scientific_lab","displayName":"B2B Scientific Lab","basicCategory":"b2b_science_and_technology_service","count":8359,"totalCount":8359}]},{"name":"b2b_telecommunications_service","displayName":"B2B Telecommunications Service","basicCategory":"b2b_service","totalCount":193,"children":[{"name":"tower_communication_service","displayName":"Tower Communication Service","basicCategory":"b2b_service","count":193,"totalCount":193}]},{"name":"b2b_transportation_and_storage_service","displayName":"B2B Transportation and Storage Service","isBasic":true,"count":1044,"totalCount":284803,"children":[{"name":"b2b_storage","displayName":"B2B Storage","basicCategory":"b2b_transportation_and_storage_service","count":107,"totalCount":23258,"children":[{"name":"warehouse","displayName":"Warehouse","basicCategory":"b2b_transportation_and_storage_service","count":23082,"totalCount":23082},{"name":"warehouse_rental_service_yard","displayName":"Warehouse Rental Service Yard","basicCategory":"b2b_transportation_and_storage_service","count":69,"totalCount":69}]},{"name":"freight_and_cargo_service","displayName":"Freight and Cargo Service","basicCategory":"b2b_transportation_and_storage_service","count":196669,"totalCount":226286,"children":[{"name":"distribution_service","displayName":"Distribution Service","basicCategory":"b2b_transportation_and_storage_service","count":16673,"totalCount":16673},{"name":"freight_forwarding_agency","displayName":"Freight Forwarding Agency","basicCategory":"b2b_transportation_and_storage_service","count":12944,"totalCount":12944}]},{"name":"motor_freight_trucking","displayName":"Motor Freight Trucking","basicCategory":"b2b_transportation_and_storage_service","count":24544,"totalCount":24544},{"name":"pipeline_transportation","displayName":"Pipeline Transportation","basicCategory":"b2b_transportation_and_storage_service","count":633,"totalCount":633},{"name":"railroad_freight","displayName":"Railroad Freight","basicCategory":"b2b_transportation_and_storage_service","count":5035,"totalCount":5035},{"name":"truck_and_industrial_vehicle_services","displayName":"Truck and Industrial Vehicle Services","basicCategory":"b2b_transportation_and_storage_service","count":330,"totalCount":4003,"children":[{"name":"tractor_dealer","displayName":"Tractor Dealer","basicCategory":"b2b_transportation_and_storage_service","count":2087,"totalCount":2087},{"name":"truck_parts_and_accessories","displayName":"Truck Parts and Accessories","basicCategory":"b2b_transportation_and_storage_service","count":1586,"totalCount":1586}]}]},{"name":"commercial_industrial","displayName":"Commercial Industrial","basicCategory":"b2b_service","count":110597,"totalCount":110597},{"name":"manufacturer","displayName":"Manufacturer","isBasic":true,"count":319541,"totalCount":887529,"children":[{"name":"apparel_manufacturer","displayName":"Apparel Manufacturer","basicCategory":"manufacturer","count":10036,"totalCount":11035,"children":[{"name":"shoe_factory_manufacturer","displayName":"Shoe Factory Manufacturer","basicCategory":"manufacturer","count":999,"totalCount":999}]},{"name":"appliance_manufacturer","displayName":"Appliance Manufacturer","basicCategory":"manufacturer","count":10645,"totalCount":10645},{"name":"cosmetic_products_manufacturer","displayName":"Cosmetic Products Manufacturer","basicCategory":"manufacturer","count":1909,"totalCount":1909},{"name":"furniture_manufacturer","displayName":"Furniture Manufacturer","basicCategory":"manufacturer","count":17511,"totalCount":17511},{"name":"glass_manufacturer","displayName":"Glass Manufacturer","basicCategory":"manufacturer","count":7340,"totalCount":7340},{"name":"hardware_and_fastener_manufacturer","displayName":"Hardware and Fastener Manufacturer","basicCategory":"manufacturer","count":149,"totalCount":149},{"name":"jewelry_and_watches_manufacturer","displayName":"Jewelry and Watches Manufacturer","basicCategory":"manufacturer","count":40429,"totalCount":40429},{"name":"jewelry_manufacturer","displayName":"Jewelry Manufacturer","basicCategory":"manufacturer","count":3818,"totalCount":3818},{"name":"leather_products_manufacturer","displayName":"Leather Products Manufacturer","basicCategory":"manufacturer","count":1381,"totalCount":1381},{"name":"lighting_fixture_manufacturer","displayName":"Lighting Fixture Manufacturer","basicCategory":"manufacturer","count":1458,"totalCount":1458},{"name":"machinery_and_tool_manufacturer","displayName":"Machinery and Tool Manufacturer","basicCategory":"manufacturer","count":7884,"totalCount":238572,"children":[{"name":"industrial_equipment_manufacturer","displayName":"Industrial Equipment Manufacturer","basicCategory":"manufacturer","count":230688,"totalCount":230688}]},{"name":"mattress_manufacturing","displayName":"Mattress Manufacturing","basicCategory":"manufacturer","count":3097,"totalCount":3097},{"name":"metal_fabricator","displayName":"Metal Fabricator","basicCategory":"manufacturer","count":136336,"totalCount":145109,"children":[{"name":"iron_fabricator","displayName":"Iron Fabricator","basicCategory":"manufacturer","count":1056,"totalCount":1056},{"name":"sheet_metal_fabricator","displayName":"Sheet Metal Fabricator","basicCategory":"manufacturer","count":2445,"totalCount":2445},{"name":"steel_fabricator","displayName":"Steel Fabricator","basicCategory":"manufacturer","count":5272,"totalCount":5272}]},{"name":"mill","displayName":"Mill","basicCategory":"manufacturer","count":830,"totalCount":9182,"children":[{"name":"cotton_mill","displayName":"Cotton Mill","basicCategory":"manufacturer","count":234,"totalCount":234},{"name":"flour_mill","displayName":"Flour Mill","basicCategory":"manufacturer","count":503,"totalCount":503},{"name":"paper_mill","displayName":"Paper Mill","basicCategory":"manufacturer","count":1461,"totalCount":1461},{"name":"rice_mill","displayName":"Rice Mill","basicCategory":"manufacturer","count":91,"totalCount":91},{"name":"sawmill","displayName":"Sawmill","basicCategory":"manufacturer","count":3056,"totalCount":3056},{"name":"textile_mill","displayName":"Textile Mill","basicCategory":"manufacturer","count":2917,"totalCount":2917},{"name":"weaving_mill","displayName":"Weaving Mill","basicCategory":"manufacturer","count":90,"totalCount":90}]},{"name":"plastic_manufacturer","displayName":"Plastic Manufacturer","basicCategory":"manufacturer","count":16870,"totalCount":16870},{"name":"rubber_and_plastics_manufacturer","displayName":"Rubber and Plastics Manufacturer","basicCategory":"manufacturer","count":2902,"totalCount":2902},{"name":"sporting_goods_manufacturer","displayName":"Sporting Goods Manufacturer","basicCategory":"manufacturer","count":347,"totalCount":347},{"name":"textile_manufacturer","displayName":"Textile Manufacturer","basicCategory":"manufacturer","count":35352,"totalCount":35352},{"name":"vehicle_manufacturer","displayName":"Vehicle Manufacturer","basicCategory":"manufacturer","count":340,"totalCount":19918,"children":[{"name":"aircraft_manufacturer","displayName":"Aircraft Manufacturer","basicCategory":"manufacturer","count":3085,"totalCount":3085},{"name":"auto_manufacturer","displayName":"Auto Manufacturer","basicCategory":"manufacturer","count":13133,"totalCount":13133},{"name":"boat_and_ship_manufacturer","displayName":"Boat and Ship Manufacturer","basicCategory":"manufacturer","count":877,"totalCount":877},{"name":"motorcycle_manufacturer","displayName":"Motorcycle Manufacturer","basicCategory":"manufacturer","count":2483,"totalCount":2483}]},{"name":"vehicle_parts_manufacturer","displayName":"Vehicle Parts Manufacturer","basicCategory":"manufacturer","count":850,"totalCount":964,"children":[{"name":"tires_manufacturer","displayName":"Tires Manufacturer","basicCategory":"manufacturer","count":114,"totalCount":114}]}]},{"name":"supplier_or_distributor","displayName":"Supplier or Distributor","isBasic":true,"count":7606,"totalCount":381575,"children":[{"name":"abrasives_supplier","displayName":"Abrasives Supplier","basicCategory":"supplier_or_distributor","count":356,"totalCount":356},{"name":"aggregate_supplier","displayName":"Aggregate Supplier","basicCategory":"supplier_or_distributor","count":340,"totalCount":340},{"name":"aluminum_supplier","displayName":"Aluminum Supplier","basicCategory":"supplier_or_distributor","count":773,"totalCount":773},{"name":"awning_supplier","displayName":"Awning Supplier","basicCategory":"supplier_or_distributor","count":2321,"totalCount":2321},{"name":"battery_inverter_supplier","displayName":"Battery Inverter Supplier","basicCategory":"supplier_or_distributor","count":1,"totalCount":1},{"name":"bearing_supplier","displayName":"Bearing Supplier","basicCategory":"supplier_or_distributor","count":979,"totalCount":979},{"name":"beauty_product_supplier","displayName":"Beauty Product Supplier","basicCategory":"supplier_or_distributor","count":29435,"totalCount":29435},{"name":"beverage_supplier","displayName":"Beverage Supplier","basicCategory":"supplier_or_distributor","count":7834,"totalCount":7834},{"name":"box_lunch_supplier","displayName":"Box Lunch Supplier","basicCategory":"supplier_or_distributor","count":142,"totalCount":142},{"name":"business_office_supplies_and_stationery","displayName":"Business Office Supplies and Stationery","basicCategory":"supplier_or_distributor","count":13335,"totalCount":13335},{"name":"cement_supplier","displayName":"Cement Supplier","basicCategory":"supplier_or_distributor","count":2065,"totalCount":2065},{"name":"cleaning_products_supplier","displayName":"Cleaning Products Supplier","basicCategory":"supplier_or_distributor","count":3601,"totalCount":3601},{"name":"corporate_gift_supplier","displayName":"Corporate Gift Supplier","basicCategory":"supplier_or_distributor","count":228,"totalCount":228},{"name":"electronic_equipment_supplier","displayName":"Electronic Equipment Supplier","basicCategory":"supplier_or_distributor","count":32483,"totalCount":32483},{"name":"electronic_parts_supplier","displayName":"Electronic Parts Supplier","basicCategory":"supplier_or_distributor","count":7595,"totalCount":7595},{"name":"fastener_supplier","displayName":"Fastener Supplier","basicCategory":"supplier_or_distributor","count":1655,"totalCount":1655},{"name":"food_beverage_distributor","displayName":"Food Beverage Distributor","basicCategory":"supplier_or_distributor","count":50207,"totalCount":50207},{"name":"granite_supplier","displayName":"Granite Supplier","basicCategory":"supplier_or_distributor","count":16411,"totalCount":16411},{"name":"hotel_supply_service","displayName":"Hotel Supply Service","basicCategory":"supplier_or_distributor","count":2915,"totalCount":2915},{"name":"hvac_supplier","displayName":"HVAC Supplier","basicCategory":"supplier_or_distributor","count":13050,"totalCount":13050},{"name":"hydraulic_equipment_supplier","displayName":"Hydraulic Equipment Supplier","basicCategory":"supplier_or_distributor","count":4187,"totalCount":4187},{"name":"ice_supplier","displayName":"Ice Supplier","basicCategory":"supplier_or_distributor","count":2230,"totalCount":2230},{"name":"import_export_service","displayName":"Import Export Service","basicCategory":"supplier_or_distributor","count":6036,"totalCount":14633,"children":[{"name":"exporter","displayName":"Exporter","basicCategory":"supplier_or_distributor","count":5433,"totalCount":6425,"children":[{"name":"food_and_beverage_exporter","displayName":"Food and Beverage Exporter","basicCategory":"supplier_or_distributor","count":992,"totalCount":992}]},{"name":"importer","displayName":"Importer","basicCategory":"supplier_or_distributor","count":2172,"totalCount":2172}]},{"name":"laboratory_equipment_supplier","displayName":"Laboratory Equipment Supplier","basicCategory":"supplier_or_distributor","count":2309,"totalCount":2309},{"name":"metal_supplier","displayName":"Metal Supplier","basicCategory":"supplier_or_distributor","count":62946,"totalCount":62946},{"name":"pipe_supplier","displayName":"Pipe Supplier","basicCategory":"supplier_or_distributor","count":1837,"totalCount":1837},{"name":"playground_equipment_supplier","displayName":"Playground Equipment Supplier","basicCategory":"supplier_or_distributor","count":315,"totalCount":315},{"name":"printing_equipment_supplier","displayName":"Printing Equipment Supplier","basicCategory":"supplier_or_distributor","count":5142,"totalCount":5142},{"name":"propane_supplier","displayName":"Propane Supplier","basicCategory":"supplier_or_distributor","count":48037,"totalCount":48037},{"name":"restaurant_equipment_and_supply","displayName":"Restaurant Equipment and Supply","basicCategory":"supplier_or_distributor","count":14466,"totalCount":14466},{"name":"retaining_wall_supplier","displayName":"Retaining Wall Supplier","basicCategory":"supplier_or_distributor","count":88,"totalCount":88},{"name":"sand_and_gravel_supplier","displayName":"Sand and Gravel Supplier","basicCategory":"supplier_or_distributor","count":1490,"totalCount":1490},{"name":"scale_supplier","displayName":"Scale Supplier","basicCategory":"supplier_or_distributor","count":494,"totalCount":494},{"name":"seal_and_hanko_supplier","displayName":"Seal and Hanko Supplier","basicCategory":"supplier_or_distributor","totalCount":0},{"name":"spring_supplier","displayName":"Spring Supplier","basicCategory":"supplier_or_distributor","count":260,"totalCount":260},{"name":"stone_supplier","displayName":"Stone Supplier","basicCategory":"supplier_or_distributor","count":3174,"totalCount":3174},{"name":"tableware_supplier","displayName":"Tableware Supplier","basicCategory":"supplier_or_distributor","count":311,"totalCount":311},{"name":"tent_house_supplier","displayName":"Tent House Supplier","basicCategory":"supplier_or_distributor","count":11,"totalCount":11},{"name":"thread_supplier","displayName":"Thread Supplier","basicCategory":"supplier_or_distributor","count":35,"totalCount":35},{"name":"vending_machine_supplier","displayName":"Vending Machine Supplier","basicCategory":"supplier_or_distributor","count":8376,"totalCount":8376},{"name":"water_softening_equipment_supplier","displayName":"Water Softening Equipment Supplier","basicCategory":"supplier_or_distributor","count":2061,"totalCount":2061},{"name":"window_supplier","displayName":"Window Supplier","basicCategory":"supplier_or_distributor","count":15841,"totalCount":15841}]},{"name":"wholesaler","displayName":"Wholesaler","isBasic":true,"count":34655,"totalCount":108445,"children":[{"name":"computer_wholesaler","displayName":"Computer Wholesaler","basicCategory":"wholesaler","count":11716,"totalCount":11716},{"name":"electrical_wholesaler","displayName":"Electrical Wholesaler","basicCategory":"wholesaler","count":3282,"totalCount":3282},{"name":"fabric_wholesaler","displayName":"Fabric Wholesaler","basicCategory":"wholesaler","count":4290,"totalCount":4290},{"name":"fitness_equipment_wholesaler","displayName":"Fitness Equipment Wholesaler","basicCategory":"wholesaler","count":986,"totalCount":986},{"name":"fmcg_wholesaler","displayName":"Fmcg Wholesaler","basicCategory":"wholesaler","count":215,"totalCount":215},{"name":"footwear_wholesaler","displayName":"Footwear Wholesaler","basicCategory":"wholesaler","count":203,"totalCount":203},{"name":"furniture_wholesaler","displayName":"Furniture Wholesaler","basicCategory":"wholesaler","count":1896,"totalCount":1896},{"name":"greengrocer","displayName":"Greengrocer","basicCategory":"wholesaler","count":4819,"totalCount":4819},{"name":"industrial_spares_and_products_wholesaler","displayName":"Industrial Spares and Products Wholesaler","basicCategory":"wholesaler","count":321,"totalCount":321},{"name":"iron_and_steel_store","displayName":"Iron and Steel Store","basicCategory":"wholesaler","count":141,"totalCount":141},{"name":"lingerie_wholesaler","displayName":"Lingerie Wholesaler","basicCategory":"wholesaler","count":59,"totalCount":59},{"name":"meat_wholesaler","displayName":"Meat Wholesaler","basicCategory":"wholesaler","count":13867,"totalCount":13867},{"name":"optical_wholesaler","displayName":"Optical Wholesaler","basicCategory":"wholesaler","count":1083,"totalCount":1083},{"name":"pharmaceutical_products_wholesaler","displayName":"Pharmaceutical Products Wholesaler","basicCategory":"wholesaler","count":7029,"totalCount":7029},{"name":"produce_wholesaler","displayName":"Produce Wholesaler","basicCategory":"wholesaler","count":4541,"totalCount":4541},{"name":"restaurant_wholesale","displayName":"Restaurant Wholesale","basicCategory":"wholesaler","count":2880,"totalCount":2880},{"name":"seafood_wholesaler","displayName":"Seafood Wholesaler","basicCategory":"wholesaler","count":1297,"totalCount":1297},{"name":"spices_wholesaler","displayName":"Spices Wholesaler","basicCategory":"wholesaler","count":152,"totalCount":152},{"name":"tea_wholesaler","displayName":"Tea Wholesaler","basicCategory":"wholesaler","count":210,"totalCount":210},{"name":"threads_and_yarns_wholesaler","displayName":"Threads and Yarns Wholesaler","basicCategory":"wholesaler","count":317,"totalCount":317},{"name":"tools_wholesaler","displayName":"Tools Wholesaler","basicCategory":"wholesaler","count":547,"totalCount":547},{"name":"wholesale_florist","displayName":"Wholesale Florist","basicCategory":"wholesaler","count":977,"totalCount":977},{"name":"wholesale_grocer","displayName":"Wholesale Grocer","basicCategory":"wholesaler","count":10464,"totalCount":10464},{"name":"wine_wholesaler","displayName":"Wine Wholesaler","basicCategory":"wholesaler","count":2498,"totalCount":2498}]}]},{"name":"building_or_construction_service","displayName":"Building or Construction Service","isBasic":true,"count":423771,"totalCount":725970,"children":[{"name":"blacksmith","displayName":"Blacksmith","basicCategory":"building_or_construction_service","count":1901,"totalCount":1901},{"name":"blueprinter","displayName":"Blueprinter","basicCategory":"building_or_construction_service","count":476,"totalCount":476},{"name":"civil_engineer","displayName":"Civil Engineer","basicCategory":"building_or_construction_service","count":13460,"totalCount":13460},{"name":"construction_management","displayName":"Construction Management","basicCategory":"building_or_construction_service","count":1028,"totalCount":1028},{"name":"crane_service","displayName":"Crane Service","basicCategory":"building_or_construction_service","count":3112,"totalCount":3112},{"name":"engineering_service","displayName":"Engineering Service","basicCategory":"building_or_construction_service","count":248099,"totalCount":248099},{"name":"gravel_professional","displayName":"Gravel Professional","basicCategory":"building_or_construction_service","count":54,"totalCount":54},{"name":"inspection_service","displayName":"Inspection Service","basicCategory":"building_or_construction_service","count":2307,"totalCount":2307},{"name":"instrumentation_engineer","displayName":"Instrumentation Engineer","basicCategory":"building_or_construction_service","count":160,"totalCount":160},{"name":"ironworker","displayName":"Ironworker","basicCategory":"building_or_construction_service","count":33,"totalCount":33},{"name":"lime_professional","displayName":"Lime Professional","basicCategory":"building_or_construction_service","count":52,"totalCount":52},{"name":"marble_and_granite_professional","displayName":"Marble and Granite Professional","basicCategory":"building_or_construction_service","count":923,"totalCount":923},{"name":"masonry_contractor","displayName":"Masonry Contractor","basicCategory":"building_or_construction_service","count":8624,"totalCount":8624},{"name":"mechanical_engineer","displayName":"Mechanical Engineer","basicCategory":"building_or_construction_service","count":7471,"totalCount":7471},{"name":"metal_material_expert","displayName":"Metal Material Expert","basicCategory":"building_or_construction_service","count":717,"totalCount":717},{"name":"road_contractor","displayName":"Road Contractor","basicCategory":"building_or_construction_service","count":5427,"totalCount":5427},{"name":"stone_and_masonry","displayName":"Stone and Masonry","basicCategory":"building_or_construction_service","count":1077,"totalCount":1077},{"name":"welder","displayName":"Welder","basicCategory":"building_or_construction_service","count":7278,"totalCount":7278}]},{"name":"corporate_or_business_office","displayName":"Corporate or Business Office","isBasic":true,"count":301519,"totalCount":939313,"children":[{"name":"auto_company","displayName":"Auto Company","basicCategory":"corporate_or_business_office","count":54116,"totalCount":54116},{"name":"bags_luggage_company","displayName":"Bags Luggage Company","basicCategory":"corporate_or_business_office","count":3046,"totalCount":3046},{"name":"biotechnology_company","displayName":"Biotechnology Company","basicCategory":"corporate_or_business_office","count":12921,"totalCount":12921},{"name":"bottled_water_company","displayName":"Bottled Water Company","basicCategory":"corporate_or_business_office","count":19627,"totalCount":19627},{"name":"clothing_company","displayName":"Clothing Company","basicCategory":"corporate_or_business_office","count":20931,"totalCount":20931},{"name":"energy_company","displayName":"Energy Company","basicCategory":"corporate_or_business_office","count":34377,"totalCount":34377},{"name":"ferry_boat_company","displayName":"Ferry Boat Company","basicCategory":"corporate_or_business_office","count":8153,"totalCount":8153},{"name":"industrial_company","displayName":"Industrial Company","basicCategory":"corporate_or_business_office","count":83845,"totalCount":83845},{"name":"information_technology_company","displayName":"Information Technology Company","basicCategory":"corporate_or_business_office","count":217446,"totalCount":217446},{"name":"pharmaceutical_company","displayName":"Pharmaceutical Company","basicCategory":"corporate_or_business_office","count":25287,"totalCount":25287},{"name":"plastics_company","displayName":"Plastics Company","basicCategory":"corporate_or_business_office","count":30397,"totalCount":30397},{"name":"private_association","displayName":"Private Association","basicCategory":"corporate_or_business_office","count":14428,"totalCount":14428},{"name":"telecommunications_company","displayName":"Telecommunications Company","basicCategory":"corporate_or_business_office","count":79351,"totalCount":79351},{"name":"tobacco_company","displayName":"Tobacco Company","basicCategory":"corporate_or_business_office","count":652,"totalCount":652},{"name":"travel_company","displayName":"Travel Company","basicCategory":"corporate_or_business_office","count":33217,"totalCount":33217}]},{"name":"design_service","displayName":"Design Service","isBasic":true,"count":3,"totalCount":450210,"children":[{"name":"architect","displayName":"Architect","basicCategory":"design_service","count":98863,"totalCount":98863},{"name":"architectural_designer","displayName":"Architectural Designer","basicCategory":"design_service","count":113050,"totalCount":113050},{"name":"graphic_designer","displayName":"Graphic Designer","basicCategory":"design_service","count":87333,"totalCount":87333},{"name":"product_design","displayName":"Product Design","basicCategory":"design_service","count":8721,"totalCount":8721},{"name":"sign_making","displayName":"Sign Making","basicCategory":"design_service","count":39510,"totalCount":39510},{"name":"web_designer","displayName":"Web Designer","basicCategory":"design_service","count":102730,"totalCount":102730}]},{"name":"environmental_or_ecological_service","displayName":"Environmental or Ecological Service","isBasic":true,"count":11448,"totalCount":75115,"children":[{"name":"environmental_abatement_service","displayName":"Environmental Abatement Service","basicCategory":"environmental_or_ecological_service","count":515,"totalCount":515},{"name":"environmental_conservation_organization","displayName":"Environmental Conservation Organization","basicCategory":"environmental_or_ecological_service","count":29801,"totalCount":29801},{"name":"environmental_testing_service","displayName":"Environmental Testing Service","basicCategory":"environmental_or_ecological_service","count":3313,"totalCount":3313},{"name":"forestry_service","displayName":"Forestry Service","basicCategory":"environmental_or_ecological_service","count":29721,"totalCount":29721},{"name":"wildlife_control","displayName":"Wildlife Control","basicCategory":"environmental_or_ecological_service","count":317,"totalCount":317}]},{"name":"event_or_party_service","displayName":"Event or Party Service","isBasic":true,"count":7281,"totalCount":1034516,"children":[{"name":"audiovisual_equipment_rental","displayName":"Audiovisual Equipment Rental","basicCategory":"event_or_party_service","count":6571,"totalCount":6571},{"name":"balloon_service","displayName":"Balloon Service","basicCategory":"event_or_party_service","count":583,"totalCount":583},{"name":"bartender","displayName":"Bartender","basicCategory":"event_or_party_service","count":3302,"totalCount":3302},{"name":"boat_charter","displayName":"Boat Charter","basicCategory":"event_or_party_service","count":1008,"totalCount":1008},{"name":"bounce_house_rental","displayName":"Bounce House Rental","basicCategory":"event_or_party_service","count":512,"totalCount":512},{"name":"caricature","displayName":"Caricature","basicCategory":"event_or_party_service","count":21,"totalCount":21},{"name":"caterer","displayName":"Caterer","basicCategory":"event_or_party_service","count":103339,"totalCount":103339},{"name":"clown","displayName":"Clown","basicCategory":"event_or_party_service","count":45,"totalCount":45},{"name":"dj_service","displayName":"DJ Service","basicCategory":"event_or_party_service","count":10673,"totalCount":10673},{"name":"event_technology_service","displayName":"Event Technology Service","basicCategory":"event_or_party_service","count":21744,"totalCount":21744},{"name":"face_painting","displayName":"Face Painting","basicCategory":"event_or_party_service","count":60,"totalCount":60},{"name":"floral_designer","displayName":"Floral Designer","basicCategory":"event_or_party_service","count":922,"totalCount":922},{"name":"game_truck_rental","displayName":"Game Truck Rental","basicCategory":"event_or_party_service","count":24,"totalCount":24},{"name":"golf_cart_rental","displayName":"Golf Cart Rental","basicCategory":"event_or_party_service","count":107,"totalCount":107},{"name":"henna_artist","displayName":"Henna Artist","basicCategory":"event_or_party_service","count":82,"totalCount":82},{"name":"karaoke_rental","displayName":"Karaoke Rental","basicCategory":"event_or_party_service","count":55,"totalCount":55},{"name":"kids_recreation_and_party","displayName":"Kids Recreation and Party","basicCategory":"event_or_party_service","count":14658,"totalCount":14658},{"name":"magician","displayName":"Magician","basicCategory":"event_or_party_service","count":1677,"totalCount":1677},{"name":"mohel","displayName":"Mohel","basicCategory":"event_or_party_service","count":7,"totalCount":7},{"name":"musician","displayName":"Musician","basicCategory":"event_or_party_service","count":5576,"totalCount":5576},{"name":"officiating_service","displayName":"Officiating Service","basicCategory":"event_or_party_service","count":245,"totalCount":245},{"name":"party_and_event_planning","displayName":"Party and Event Planning","basicCategory":"event_or_party_service","count":789326,"totalCount":789326},{"name":"party_bike_rental","displayName":"Party Bike Rental","basicCategory":"event_or_party_service","count":11,"totalCount":11},{"name":"party_bus_rental","displayName":"Party Bus Rental","basicCategory":"event_or_party_service","count":366,"totalCount":366},{"name":"party_character","displayName":"Party Character","basicCategory":"event_or_party_service","count":54,"totalCount":54},{"name":"party_equipment_rental","displayName":"Party Equipment Rental","basicCategory":"event_or_party_service","count":8052,"totalCount":8052},{"name":"personal_chef","displayName":"Personal Chef","basicCategory":"event_or_party_service","count":1581,"totalCount":1581},{"name":"photo_booth_rental","displayName":"Photo Booth Rental","basicCategory":"event_or_party_service","count":5360,"totalCount":5360},{"name":"silent_disco","displayName":"Silent Disco","basicCategory":"event_or_party_service","count":7,"totalCount":7},{"name":"sommelier_service","displayName":"Sommelier Service","basicCategory":"event_or_party_service","count":8,"totalCount":8},{"name":"team_building_activity","displayName":"Team Building Activity","basicCategory":"event_or_party_service","count":209,"totalCount":209},{"name":"trivia_host","displayName":"Trivia Host","basicCategory":"event_or_party_service","count":10,"totalCount":10},{"name":"valet_service","displayName":"Valet Service","basicCategory":"event_or_party_service","count":957,"totalCount":957},{"name":"videographer","displayName":"Videographer","basicCategory":"event_or_party_service","count":4978,"totalCount":4978},{"name":"wedding_chapel","displayName":"Wedding Chapel","basicCategory":"event_or_party_service","count":974,"totalCount":974},{"name":"wedding_planning","displayName":"Wedding Planning","basicCategory":"event_or_party_service","count":44131,"totalCount":44131}]},{"name":"family_service","displayName":"Family Service","isBasic":true,"totalCount":280972,"children":[{"name":"adoption_service","displayName":"Adoption Service","basicCategory":"family_service","count":1575,"totalCount":1575},{"name":"child_care_and_day_care","displayName":"Child Care and Day Care","basicCategory":"family_service","count":52759,"totalCount":147389,"children":[{"name":"day_care_preschool","displayName":"Day Care Preschool","basicCategory":"family_service","count":94630,"totalCount":94630}]},{"name":"elder_care_planning","displayName":"Elder Care Planning","basicCategory":"family_service","count":116,"totalCount":116},{"name":"family_service_center","displayName":"Family Service Center","basicCategory":"family_service","count":1050,"totalCount":1050},{"name":"funeral_service","displayName":"Funeral Service","basicCategory":"family_service","count":119750,"totalCount":126130,"children":[{"name":"cremation_service","displayName":"Cremation Service","basicCategory":"family_service","count":5970,"totalCount":5970},{"name":"mortuary_service","displayName":"Mortuary Service","basicCategory":"family_service","count":410,"totalCount":410}]},{"name":"genealogist","displayName":"Genealogist","basicCategory":"family_service","count":938,"totalCount":938},{"name":"mobility_equipment_service","displayName":"Mobility Equipment Service","basicCategory":"family_service","count":2779,"totalCount":2779},{"name":"nanny_service","displayName":"Nanny Service","basicCategory":"family_service","count":995,"totalCount":995}]},{"name":"financial_service","displayName":"Financial Service","isBasic":true,"count":408636,"totalCount":2993229,"children":[{"name":"accountant","displayName":"Accountant","basicCategory":"financial_service","count":273795,"totalCount":273795},{"name":"appraisal_service","displayName":"Appraisal Service","basicCategory":"financial_service","count":33511,"totalCount":33511},{"name":"atm","displayName":"ATM","isBasic":true,"count":370937,"totalCount":370937},{"name":"bank_or_credit_union","displayName":"Bank or Credit Union","isBasic":true,"count":364318,"totalCount":704074,"children":[{"name":"bank","displayName":"Bank","basicCategory":"bank_or_credit_union","count":268816,"totalCount":268816},{"name":"credit_union","displayName":"Credit Union","basicCategory":"bank_or_credit_union","count":70940,"totalCount":70940}]},{"name":"broker","displayName":"Broker","basicCategory":"financial_service","count":8897,"totalCount":23689,"children":[{"name":"business_broker","displayName":"Business Broker","basicCategory":"financial_service","count":3404,"totalCount":3404},{"name":"stock_and_bond_broker","displayName":"Stock and Bond Broker","basicCategory":"financial_service","count":11388,"totalCount":11388}]},{"name":"business_banking_service","displayName":"Business Banking Service","basicCategory":"financial_service","count":523,"totalCount":523},{"name":"business_financing","displayName":"Business Financing","basicCategory":"financial_service","count":877,"totalCount":877},{"name":"check_cashing_payday_loans","displayName":"Check Cashing Payday Loans","basicCategory":"financial_service","count":13897,"totalCount":13897},{"name":"coin_dealer","displayName":"Coin Dealer","basicCategory":"financial_service","count":883,"totalCount":883},{"name":"collection_agency","displayName":"Collection Agency","basicCategory":"financial_service","count":4375,"totalCount":4375},{"name":"credit_and_debt_counseling","displayName":"Credit and Debt Counseling","basicCategory":"financial_service","count":10090,"totalCount":10090},{"name":"currency_exchange","displayName":"Currency Exchange","basicCategory":"financial_service","count":18324,"totalCount":18324},{"name":"customs_broker","displayName":"Customs Broker","basicCategory":"financial_service","count":1215,"totalCount":1215},{"name":"debt_relief_service","displayName":"Debt Relief Service","basicCategory":"financial_service","count":1733,"totalCount":1733},{"name":"financial_advising","displayName":"Financial Advising","basicCategory":"financial_service","count":91316,"totalCount":91316},{"name":"gold_buyer","displayName":"Gold Buyer","basicCategory":"financial_service","count":2938,"totalCount":2938},{"name":"holding_company","displayName":"Holding Company","basicCategory":"financial_service","count":7807,"totalCount":7807},{"name":"installment_loans","displayName":"Installment Loans","basicCategory":"financial_service","count":36704,"totalCount":76758,"children":[{"name":"auto_loan_provider","displayName":"Auto Loan Provider","basicCategory":"financial_service","count":1757,"totalCount":1757},{"name":"mortgage_lender","displayName":"Mortgage Lender","basicCategory":"financial_service","count":38297,"totalCount":38297}]},{"name":"insurance_agency","displayName":"Insurance Agency","basicCategory":"financial_service","count":462332,"totalCount":521868,"children":[{"name":"auto_insurance","displayName":"Auto Insurance","basicCategory":"financial_service","count":38265,"totalCount":38265},{"name":"farm_insurance","displayName":"Farm Insurance","basicCategory":"financial_service","count":33,"totalCount":33},{"name":"fidelity_and_surety_bonds","displayName":"Fidelity and Surety Bonds","basicCategory":"financial_service","count":28,"totalCount":28},{"name":"home_and_rental_insurance","displayName":"Home and Rental Insurance","basicCategory":"financial_service","count":6920,"totalCount":6920},{"name":"life_insurance","displayName":"Life Insurance","basicCategory":"financial_service","count":14290,"totalCount":14290}]},{"name":"investing","displayName":"Investing","basicCategory":"financial_service","count":29784,"totalCount":29784},{"name":"investment_management_company","displayName":"Investment Management Company","basicCategory":"financial_service","count":12075,"totalCount":12075},{"name":"money_transfer_service","displayName":"Money Transfer Service","basicCategory":"financial_service","count":162713,"totalCount":162713},{"name":"mortgage_broker","displayName":"Mortgage Broker","basicCategory":"financial_service","count":65411,"totalCount":65411},{"name":"private_equity_firm","displayName":"Private Equity Firm","basicCategory":"financial_service","count":1195,"totalCount":1195},{"name":"public_adjuster","displayName":"Public Adjuster","basicCategory":"financial_service","count":488,"totalCount":488},{"name":"real_estate_investment","displayName":"Real Estate Investment","basicCategory":"financial_service","count":12524,"totalCount":12524},{"name":"tax_service","displayName":"Tax Service","basicCategory":"financial_service","count":74934,"totalCount":74934},{"name":"trusts","displayName":"Trusts","basicCategory":"financial_service","count":66859,"totalCount":66859}]},{"name":"home_service","displayName":"Home Service","isBasic":true,"count":157126,"totalCount":2851264,"children":[{"name":"air_duct_cleaning_service","displayName":"Air Duct Cleaning Service","basicCategory":"home_service","count":2061,"totalCount":2061},{"name":"antenna_service","displayName":"Antenna Service","basicCategory":"home_service","count":556,"totalCount":556},{"name":"appliance_repair_service","displayName":"Appliance Repair Service","basicCategory":"home_service","count":49420,"totalCount":49420},{"name":"artificial_turf","displayName":"Artificial Turf","basicCategory":"home_service","count":345,"totalCount":345},{"name":"bathroom_remodeling","displayName":"Bathroom Remodeling","basicCategory":"home_service","count":9806,"totalCount":9806},{"name":"bathtub_and_sink_repair","displayName":"Bathtub and Sink Repair","basicCategory":"home_service","count":313,"totalCount":313},{"name":"cabinet_sales_service","displayName":"Cabinet Sales Service","basicCategory":"home_service","count":9419,"totalCount":9419},{"name":"carpenter","displayName":"Carpenter","basicCategory":"home_service","count":118136,"totalCount":118136},{"name":"carpet_cleaning","displayName":"Carpet Cleaning","basicCategory":"home_service","count":22641,"totalCount":22641},{"name":"carpet_dyeing","displayName":"Carpet Dyeing","basicCategory":"home_service","count":4,"totalCount":4},{"name":"carpet_installation","displayName":"Carpet Installation","basicCategory":"home_service","count":913,"totalCount":913},{"name":"ceiling_and_roofing_repair_and_service","displayName":"Ceiling and Roofing Repair and Service","basicCategory":"home_service","count":183,"totalCount":110570,"children":[{"name":"ceiling_service","displayName":"Ceiling Service","basicCategory":"home_service","count":1171,"totalCount":1171},{"name":"roofing","displayName":"Roofing","basicCategory":"home_service","count":109216,"totalCount":109216}]},{"name":"childproofing","displayName":"Childproofing","basicCategory":"home_service","count":34,"totalCount":34},{"name":"chimney_service","displayName":"Chimney Service","basicCategory":"home_service","count":382,"totalCount":10908,"children":[{"name":"chimney_sweep","displayName":"Chimney Sweep","basicCategory":"home_service","count":10526,"totalCount":10526}]},{"name":"clock_repair_service","displayName":"Clock Repair Service","basicCategory":"home_service","count":516,"totalCount":516},{"name":"closet_remodeling","displayName":"Closet Remodeling","basicCategory":"home_service","count":36,"totalCount":36},{"name":"community_book_box","displayName":"Community Book Box","basicCategory":"home_service","count":168,"totalCount":168},{"name":"contractor","displayName":"Contractor","basicCategory":"home_service","count":445961,"totalCount":516101,"children":[{"name":"altering_and_remodeling_contractor","displayName":"Altering and Remodeling Contractor","basicCategory":"home_service","count":4527,"totalCount":4527},{"name":"building_contractor","displayName":"Building Contractor","basicCategory":"home_service","count":22346,"totalCount":22346},{"name":"flooring_contractor","displayName":"Flooring Contractor","basicCategory":"home_service","count":30692,"totalCount":30692},{"name":"paving_contractor","displayName":"Paving Contractor","basicCategory":"home_service","count":12575,"totalCount":12575}]},{"name":"countertop_installation","displayName":"Countertop Installation","basicCategory":"home_service","count":26126,"totalCount":26126},{"name":"damage_restoration","displayName":"Damage Restoration","basicCategory":"home_service","count":14214,"totalCount":21783,"children":[{"name":"fire_and_water_damage_restoration","displayName":"Fire and Water Damage Restoration","basicCategory":"home_service","count":7569,"totalCount":7569}]},{"name":"deck_and_railing_sales_service","displayName":"Deck and Railing Sales Service","basicCategory":"home_service","count":1630,"totalCount":1630},{"name":"demolition_service","displayName":"Demolition Service","basicCategory":"home_service","count":4771,"totalCount":4771},{"name":"donation_center","displayName":"Donation Center","basicCategory":"home_service","count":824,"totalCount":824},{"name":"door_sales_service","displayName":"Door Sales Service","basicCategory":"home_service","count":6582,"totalCount":6582},{"name":"drywall_service","displayName":"Drywall Service","basicCategory":"home_service","count":3978,"totalCount":3978},{"name":"electrician","displayName":"Electrician","basicCategory":"home_service","count":168022,"totalCount":168022},{"name":"excavation_service","displayName":"Excavation Service","basicCategory":"home_service","count":17020,"totalCount":17020},{"name":"exterior_design","displayName":"Exterior Design","basicCategory":"home_service","count":103,"totalCount":103},{"name":"fence_and_gate_sales_service","displayName":"Fence and Gate Sales Service","basicCategory":"home_service","count":17289,"totalCount":17289},{"name":"feng_shui","displayName":"Feng Shui","basicCategory":"home_service","count":296,"totalCount":296},{"name":"fire_protection_service","displayName":"Fire Protection Service","basicCategory":"home_service","count":29042,"totalCount":29042},{"name":"fireplace_service","displayName":"Fireplace Service","basicCategory":"home_service","count":8149,"totalCount":8149},{"name":"firewood","displayName":"Firewood","basicCategory":"home_service","count":536,"totalCount":536},{"name":"foundation_repair","displayName":"Foundation Repair","basicCategory":"home_service","count":1343,"totalCount":1343},{"name":"furniture_assembly","displayName":"Furniture Assembly","basicCategory":"home_service","count":31433,"totalCount":31433},{"name":"furniture_rental_service","displayName":"Furniture Rental Service","basicCategory":"home_service","count":1051,"totalCount":1051},{"name":"furniture_repair","displayName":"Furniture Repair","basicCategory":"home_service","count":1385,"totalCount":1385},{"name":"furniture_reupholstery","displayName":"Furniture Reupholstery","basicCategory":"home_service","count":7437,"totalCount":7437},{"name":"garage_door_service","displayName":"Garage Door Service","basicCategory":"home_service","count":22754,"totalCount":22754},{"name":"glass_and_mirror_sales_service","displayName":"Glass and Mirror Sales Service","basicCategory":"home_service","count":40770,"totalCount":40770},{"name":"grout_service","displayName":"Grout Service","basicCategory":"home_service","count":336,"totalCount":336},{"name":"gutter_service","displayName":"Gutter Service","basicCategory":"home_service","count":8439,"totalCount":8439},{"name":"handyman","displayName":"Handyman","basicCategory":"home_service","count":17791,"totalCount":17791},{"name":"holiday_decorating_service","displayName":"Holiday Decorating Service","basicCategory":"home_service","count":61,"totalCount":61},{"name":"home_automation","displayName":"Home Automation","basicCategory":"home_service","count":2065,"totalCount":2065},{"name":"home_cleaning","displayName":"Home Cleaning","basicCategory":"home_service","count":125421,"totalCount":125421},{"name":"home_energy_auditor","displayName":"Home Energy Auditor","basicCategory":"home_service","count":209,"totalCount":209},{"name":"home_inspector","displayName":"Home Inspector","basicCategory":"home_service","count":14924,"totalCount":14924},{"name":"home_network_installation","displayName":"Home Network Installation","basicCategory":"home_service","count":168,"totalCount":168},{"name":"home_security","displayName":"Home Security","basicCategory":"home_service","count":29271,"totalCount":29271},{"name":"home_window_tinting","displayName":"Home Window Tinting","basicCategory":"home_service","count":2480,"totalCount":2480},{"name":"house_sitting","displayName":"House Sitting","basicCategory":"home_service","count":506,"totalCount":506},{"name":"hvac_service","displayName":"HVAC Service","basicCategory":"home_service","count":150208,"totalCount":150208},{"name":"hydro_jetting","displayName":"Hydro Jetting","basicCategory":"home_service","count":47,"totalCount":47},{"name":"indoor_landscaping","displayName":"Indoor Landscaping","basicCategory":"home_service","count":141,"totalCount":141},{"name":"insulation_installation","displayName":"Insulation Installation","basicCategory":"home_service","count":3464,"totalCount":3464},{"name":"interior_design","displayName":"Interior Design","basicCategory":"home_service","count":164011,"totalCount":164011},{"name":"irrigation_service","displayName":"Irrigation Service","basicCategory":"home_service","count":2754,"totalCount":2754},{"name":"junk_removal_and_hauling","displayName":"Junk Removal and Hauling","basicCategory":"home_service","count":4459,"totalCount":4459},{"name":"key_and_locksmith","displayName":"Key and Locksmith","basicCategory":"home_service","count":79524,"totalCount":79524},{"name":"kitchen_remodeling","displayName":"Kitchen Remodeling","basicCategory":"home_service","count":8820,"totalCount":8820},{"name":"knife_sharpening","displayName":"Knife Sharpening","basicCategory":"home_service","count":1282,"totalCount":1282},{"name":"landscaping","displayName":"Landscaping","basicCategory":"home_service","count":88189,"totalCount":199537,"children":[{"name":"gardener","displayName":"Gardener","basicCategory":"home_service","count":54719,"totalCount":54719},{"name":"landscape_architect","displayName":"Landscape Architect","basicCategory":"home_service","count":17354,"totalCount":17354},{"name":"lawn_service","displayName":"Lawn Service","basicCategory":"home_service","count":8411,"totalCount":8411},{"name":"tree_service","displayName":"Tree Service","basicCategory":"home_service","count":30864,"totalCount":30864}]},{"name":"lawn_mower_repair_service","displayName":"Lawn Mower Repair Service","basicCategory":"home_service","count":463,"totalCount":463},{"name":"lighting_fixtures_and_equipment","displayName":"Lighting Fixtures and Equipment","basicCategory":"home_service","count":1213,"totalCount":1213},{"name":"masonry_concrete","displayName":"Masonry Concrete","basicCategory":"home_service","count":32770,"totalCount":32770},{"name":"misting_system_service","displayName":"Misting System Service","basicCategory":"home_service","count":5,"totalCount":5},{"name":"mobile_home_repair","displayName":"Mobile Home Repair","basicCategory":"home_service","count":96,"totalCount":96},{"name":"mover","displayName":"Mover","basicCategory":"home_service","count":25099,"totalCount":25099},{"name":"packing_service","displayName":"Packing Service","basicCategory":"home_service","count":2175,"totalCount":2175},{"name":"painting","displayName":"Painting","basicCategory":"home_service","count":89797,"totalCount":89797},{"name":"patio_covers","displayName":"Patio Covers","basicCategory":"home_service","count":5161,"totalCount":5161},{"name":"personal_assistant","displayName":"Personal Assistant","basicCategory":"home_service","count":1074,"totalCount":1074},{"name":"pest_control_service","displayName":"Pest Control Service","basicCategory":"home_service","count":48764,"totalCount":48764},{"name":"plasterer","displayName":"Plasterer","basicCategory":"home_service","count":1233,"totalCount":1233},{"name":"plumbing","displayName":"Plumbing","basicCategory":"home_service","count":132397,"totalCount":132521,"children":[{"name":"backflow_service","displayName":"Backflow Service","basicCategory":"home_service","count":124,"totalCount":124}]},{"name":"pool_and_hot_tub_service","displayName":"Pool and Hot Tub Service","basicCategory":"home_service","count":3889,"totalCount":3889},{"name":"pool_cleaning","displayName":"Pool Cleaning","basicCategory":"home_service","count":28190,"totalCount":28190},{"name":"pressure_washing","displayName":"Pressure Washing","basicCategory":"home_service","count":4711,"totalCount":4711},{"name":"recycling_center","displayName":"Recycling Center","basicCategory":"home_service","count":34880,"totalCount":34880},{"name":"refinishing_service","displayName":"Refinishing Service","basicCategory":"home_service","count":1385,"totalCount":1385},{"name":"security_systems","displayName":"Security Systems","basicCategory":"home_service","count":15625,"totalCount":15625},{"name":"sewing_and_alterations","displayName":"Sewing and Alterations","basicCategory":"home_service","count":52354,"totalCount":67590,"children":[{"name":"tailor","displayName":"Tailor","basicCategory":"home_service","count":15236,"totalCount":15236}]},{"name":"shades_and_blinds","displayName":"Shades and Blinds","basicCategory":"home_service","count":3349,"totalCount":3349},{"name":"shutters","displayName":"Shutters","basicCategory":"home_service","count":378,"totalCount":378},{"name":"siding","displayName":"Siding","basicCategory":"home_service","count":1005,"totalCount":1005},{"name":"snow_removal_service","displayName":"Snow Removal Service","basicCategory":"home_service","count":992,"totalCount":992},{"name":"solar_installation","displayName":"Solar Installation","basicCategory":"home_service","count":23155,"totalCount":23155},{"name":"solar_panel_cleaning","displayName":"Solar Panel Cleaning","basicCategory":"home_service","count":44,"totalCount":44},{"name":"structural_engineer","displayName":"Structural Engineer","basicCategory":"home_service","count":8647,"totalCount":8647},{"name":"stucco_service","displayName":"Stucco Service","basicCategory":"home_service","count":1366,"totalCount":1366},{"name":"television_service_provider","displayName":"Television Service Provider","basicCategory":"home_service","count":12358,"totalCount":12358},{"name":"tiling","displayName":"Tiling","basicCategory":"home_service","count":8201,"totalCount":8201},{"name":"tv_mounting","displayName":"TV Mounting","basicCategory":"home_service","count":2504,"totalCount":2504},{"name":"wallpaper_installer","displayName":"Wallpaper Installer","basicCategory":"home_service","count":53,"totalCount":53},{"name":"washer_and_dryer_repair_service","displayName":"Washer and Dryer Repair Service","basicCategory":"home_service","count":212,"totalCount":212},{"name":"water_delivery","displayName":"Water Delivery","basicCategory":"home_service","count":182,"totalCount":182},{"name":"water_heater_installation_repair","displayName":"Water Heater Installation Repair","basicCategory":"home_service","count":1962,"totalCount":1962},{"name":"water_purification_service","displayName":"Water Purification Service","basicCategory":"home_service","count":2051,"totalCount":2051},{"name":"waterproofing","displayName":"Waterproofing","basicCategory":"home_service","count":1670,"totalCount":1670},{"name":"well_drilling","displayName":"Well Drilling","basicCategory":"home_service","count":10042,"totalCount":10042},{"name":"window_washing","displayName":"Window Washing","basicCategory":"home_service","count":2587,"totalCount":2587},{"name":"windows_installation","displayName":"Windows Installation","basicCategory":"home_service","count":36375,"totalCount":36550,"children":[{"name":"skylight_installation","displayName":"Skylight Installation","basicCategory":"home_service","count":175,"totalCount":175}]}]},{"name":"housing_or_property_service","displayName":"Housing or Property Service","isBasic":true,"totalCount":278782,"children":[{"name":"apartment","displayName":"Apartment","isBasic":true,"count":41917,"totalCount":41917},{"name":"condominium","displayName":"Condominium","isBasic":true,"count":26882,"totalCount":26882},{"name":"halfway_house","displayName":"Halfway House","basicCategory":"housing_or_property_service","count":2274,"totalCount":2274},{"name":"low_income_housing","displayName":"Low Income Housing","basicCategory":"housing_or_property_service","count":277,"totalCount":277},{"name":"mobile_home_park","displayName":"Mobile Home Park","basicCategory":"housing_or_property_service","count":12601,"totalCount":12601},{"name":"senior_living_facility","displayName":"Senior Living Facility","isBasic":true,"totalCount":193436,"children":[{"name":"assisted_living_facility","displayName":"Assisted Living Facility","basicCategory":"senior_living_facility","count":41530,"totalCount":41530},{"name":"memory_care_facility","displayName":"Memory Care Facility","basicCategory":"senior_living_facility","count":54,"totalCount":54},{"name":"retirement_home","displayName":"Retirement Home","basicCategory":"senior_living_facility","count":151852,"totalCount":151852}]},{"name":"university_housing","displayName":"University Housing","basicCategory":"housing_or_property_service","count":1395,"totalCount":1395}]},{"name":"industrial_facility_or_service","displayName":"Industrial Facility or Service","isBasic":true,"totalCount":12601,"children":[{"name":"hazardous_waste_disposal","displayName":"Hazardous Waste Disposal","basicCategory":"industrial_facility_or_service","count":982,"totalCount":982},{"name":"powder_coating_service","displayName":"Powder Coating Service","basicCategory":"industrial_facility_or_service","count":7575,"totalCount":7575},{"name":"sandblasting_service","displayName":"Sandblasting Service","basicCategory":"industrial_facility_or_service","count":4044,"totalCount":4044}]},{"name":"laundry_service","displayName":"Laundry Service","isBasic":true,"count":30501,"totalCount":197944,"children":[{"name":"dry_cleaning","displayName":"Dry Cleaning","basicCategory":"laundry_service","count":58486,"totalCount":58486},{"name":"laundromat","displayName":"Laundromat","basicCategory":"laundry_service","count":108957,"totalCount":108957}]},{"name":"legal_service","displayName":"Legal Service","isBasic":true,"count":200841,"totalCount":856763,"children":[{"name":"attorney_or_law_firm","displayName":"Attorney or Law Firm","isBasic":true,"count":444046,"totalCount":587215,"children":[{"name":"appellate_practice_lawyer","displayName":"Appellate Practice Lawyer","basicCategory":"attorney_or_law_firm","count":2858,"totalCount":2858},{"name":"bankruptcy_law","displayName":"Bankruptcy Law","basicCategory":"attorney_or_law_firm","count":10950,"totalCount":10950},{"name":"business_law","displayName":"Business Law","basicCategory":"attorney_or_law_firm","count":3463,"totalCount":3463},{"name":"civil_rights_lawyer","displayName":"Civil Rights Lawyer","basicCategory":"attorney_or_law_firm","count":207,"totalCount":207},{"name":"contract_law","displayName":"Contract Law","basicCategory":"attorney_or_law_firm","count":407,"totalCount":407},{"name":"criminal_defense_law","displayName":"Criminal Defense Law","basicCategory":"attorney_or_law_firm","count":18976,"totalCount":18976},{"name":"disability_law","displayName":"Disability Law","basicCategory":"attorney_or_law_firm","count":2079,"totalCount":2079},{"name":"divorce_and_family_law","displayName":"Divorce and Family Law","basicCategory":"attorney_or_law_firm","count":29008,"totalCount":29008},{"name":"dui_law","displayName":"DUI Law","basicCategory":"attorney_or_law_firm","count":813,"totalCount":813},{"name":"employment_law","displayName":"Employment Law","basicCategory":"attorney_or_law_firm","count":9589,"totalCount":9589},{"name":"entertainment_law","displayName":"Entertainment Law","basicCategory":"attorney_or_law_firm","count":243,"totalCount":243},{"name":"estate_planning_law","displayName":"Estate Planning Law","basicCategory":"attorney_or_law_firm","count":3611,"totalCount":3611},{"name":"general_litigation","displayName":"General Litigation","basicCategory":"attorney_or_law_firm","count":2638,"totalCount":2638},{"name":"immigration_law","displayName":"Immigration Law","basicCategory":"attorney_or_law_firm","count":15883,"totalCount":15883},{"name":"ip_and_internet_law","displayName":"Ip and Internet Law","basicCategory":"attorney_or_law_firm","count":2186,"totalCount":2186},{"name":"medical_law","displayName":"Medical Law","basicCategory":"attorney_or_law_firm","count":1221,"totalCount":1221},{"name":"paralegal_service","displayName":"Paralegal Service","basicCategory":"attorney_or_law_firm","count":1056,"totalCount":1056},{"name":"personal_injury_law","displayName":"Personal Injury Law","basicCategory":"attorney_or_law_firm","count":22727,"totalCount":22727},{"name":"real_estate_law","displayName":"Real Estate Law","basicCategory":"attorney_or_law_firm","count":4862,"totalCount":4862},{"name":"social_security_law","displayName":"Social Security Law","basicCategory":"attorney_or_law_firm","count":668,"totalCount":668},{"name":"tax_law","displayName":"Tax Law","basicCategory":"attorney_or_law_firm","count":3528,"totalCount":3528},{"name":"traffic_ticketing_law","displayName":"Traffic Ticketing Law","basicCategory":"attorney_or_law_firm","count":80,"totalCount":80},{"name":"wills_trusts_and_probate","displayName":"Wills Trusts and Probate","basicCategory":"attorney_or_law_firm","count":5833,"totalCount":5833},{"name":"workers_compensation_law","displayName":"Workers Compensation Law","basicCategory":"attorney_or_law_firm","count":283,"totalCount":283}]},{"name":"bail_bonds_service","displayName":"Bail Bonds Service","basicCategory":"legal_service","count":7758,"totalCount":7758},{"name":"court_reporter","displayName":"Court Reporter","basicCategory":"legal_service","count":1669,"totalCount":1669},{"name":"mediator","displayName":"Mediator","basicCategory":"legal_service","count":3081,"totalCount":3081},{"name":"notary_public","displayName":"Notary Public","basicCategory":"legal_service","count":38187,"totalCount":38187},{"name":"patent_law","displayName":"Patent Law","basicCategory":"legal_service","count":988,"totalCount":988},{"name":"private_investigation","displayName":"Private Investigation","basicCategory":"legal_service","count":11488,"totalCount":11488},{"name":"process_server","displayName":"Process Server","basicCategory":"legal_service","count":5406,"totalCount":5406},{"name":"tenant_and_eviction_law","displayName":"Tenant and Eviction Law","basicCategory":"legal_service","count":130,"totalCount":130}]},{"name":"media_service","displayName":"Media Service","isBasic":true,"count":14800,"totalCount":571051,"children":[{"name":"art_restoration_service","displayName":"Art Restoration Service","basicCategory":"media_service","count":5332,"totalCount":5332},{"name":"bookbinding","displayName":"Bookbinding","basicCategory":"media_service","count":1401,"totalCount":1401},{"name":"calligraphy","displayName":"Calligraphy","basicCategory":"media_service","count":80,"totalCount":80},{"name":"commissioned_artist","displayName":"Commissioned Artist","basicCategory":"media_service","count":654,"totalCount":654},{"name":"corporate_entertainment_service","displayName":"Corporate Entertainment Service","basicCategory":"media_service","count":749,"totalCount":749},{"name":"digitizing_service","displayName":"Digitizing Service","basicCategory":"media_service","count":629,"totalCount":629},{"name":"engraving","displayName":"Engraving","basicCategory":"media_service","count":749,"totalCount":749},{"name":"media_critic","displayName":"Media Critic","basicCategory":"media_service","count":63,"totalCount":117,"children":[{"name":"movie_critic","displayName":"Movie Critic","basicCategory":"media_service","count":16,"totalCount":16},{"name":"music_critic","displayName":"Music Critic","basicCategory":"media_service","count":12,"totalCount":12},{"name":"video_game_critic","displayName":"Video Game Critic","basicCategory":"media_service","count":26,"totalCount":26}]},{"name":"media_news_company","displayName":"Media News Company","basicCategory":"media_service","count":33985,"totalCount":291271,"children":[{"name":"animation_studio","displayName":"Animation Studio","basicCategory":"media_service","count":3684,"totalCount":3684},{"name":"book_magazine_distribution","displayName":"Book Magazine Distribution","basicCategory":"media_service","count":2937,"totalCount":2937},{"name":"broadcasting_media_production","displayName":"Broadcasting Media Production","basicCategory":"media_service","count":49719,"totalCount":49719},{"name":"game_publisher","displayName":"Game Publisher","basicCategory":"media_service","count":5822,"totalCount":5822},{"name":"media_agency","displayName":"Media Agency","basicCategory":"media_service","count":27852,"totalCount":27852},{"name":"movie_television_studio","displayName":"Movie Television Studio","basicCategory":"media_service","count":16646,"totalCount":16646},{"name":"music_production","displayName":"Music Production","basicCategory":"media_service","count":55873,"totalCount":55873},{"name":"publisher","displayName":"Publisher","basicCategory":"media_service","count":60621,"totalCount":60621},{"name":"radio_station","displayName":"Radio Station","isBasic":true,"count":29471,"totalCount":29471},{"name":"social_media_company","displayName":"Social Media Company","basicCategory":"media_service","count":1652,"totalCount":1652},{"name":"television_station","displayName":"Television Station","isBasic":true,"count":2629,"totalCount":2629},{"name":"weather_forecast_service","displayName":"Weather Forecast Service","basicCategory":"media_service","count":380,"totalCount":380}]},{"name":"media_news_website","displayName":"Media News Website","basicCategory":"media_service","count":7498,"totalCount":7498},{"name":"media_restoration_service","displayName":"Media Restoration Service","basicCategory":"media_service","count":886,"totalCount":886},{"name":"music_production_service","displayName":"Music Production Service","basicCategory":"media_service","count":692,"totalCount":692},{"name":"musical_instrument_service","displayName":"Musical Instrument Service","basicCategory":"media_service","count":525,"totalCount":2225,"children":[{"name":"piano_service","displayName":"Piano Service","basicCategory":"media_service","count":1150,"totalCount":1150},{"name":"vocal_coach","displayName":"Vocal Coach","basicCategory":"media_service","count":550,"totalCount":550}]},{"name":"photography_service","displayName":"Photography Service","basicCategory":"media_service","count":59135,"totalCount":159574,"children":[{"name":"boudoir_photography_service","displayName":"Boudoir Photography Service","basicCategory":"media_service","count":158,"totalCount":158},{"name":"event_photography_service","displayName":"Event Photography Service","basicCategory":"media_service","count":93466,"totalCount":93466},{"name":"session_photography_service","displayName":"Session Photography Service","basicCategory":"media_service","count":6815,"totalCount":6815}]},{"name":"print_media","displayName":"Print Media","basicCategory":"media_service","count":38439,"totalCount":38439},{"name":"record_label","displayName":"Record Label","basicCategory":"media_service","count":7700,"totalCount":7700},{"name":"recording_and_rehearsal_studio","displayName":"Recording and Rehearsal Studio","basicCategory":"media_service","count":10923,"totalCount":10923},{"name":"studio_taping","displayName":"Studio Taping","basicCategory":"media_service","count":104,"totalCount":104},{"name":"theatrical_production","displayName":"Theatrical Production","basicCategory":"media_service","count":16344,"totalCount":16344},{"name":"video_film_production","displayName":"Video Film Production","basicCategory":"media_service","count":10580,"totalCount":10580},{"name":"weather_station","displayName":"Weather Station","basicCategory":"media_service","count":304,"totalCount":304}]},{"name":"printing_service","displayName":"Printing Service","isBasic":true,"count":301718,"totalCount":361681,"children":[{"name":"3d_printing_service","displayName":"3d Printing Service","basicCategory":"printing_service","count":2691,"totalCount":2691},{"name":"commercial_printer","displayName":"Commercial Printer","basicCategory":"printing_service","count":9238,"totalCount":9238},{"name":"duplication_service","displayName":"Duplication Service","basicCategory":"printing_service","count":123,"totalCount":123},{"name":"screen_printing_service","displayName":"Screen Printing Service","basicCategory":"printing_service","count":4448,"totalCount":47911,"children":[{"name":"t_shirt_printing_service","displayName":"T-shirt Printing Service","basicCategory":"printing_service","count":43463,"totalCount":43463}]}]},{"name":"professional_service","displayName":"Professional Service","isBasic":true,"count":1431545,"totalCount":2444308,"children":[{"name":"advertising_agency","displayName":"Advertising Agency","basicCategory":"professional_service","count":286002,"totalCount":286002},{"name":"bank_equipment_service","displayName":"Bank Equipment Service","basicCategory":"professional_service","count":715,"totalCount":715},{"name":"billing_service","displayName":"Billing Service","basicCategory":"professional_service","count":1409,"totalCount":1409},{"name":"bookkeeper","displayName":"Bookkeeper","basicCategory":"professional_service","count":7150,"totalCount":7150},{"name":"business_consulting","displayName":"Business Consulting","basicCategory":"professional_service","count":164798,"totalCount":164798},{"name":"career_counseling","displayName":"Career Counseling","basicCategory":"professional_service","count":8838,"totalCount":8838},{"name":"certification_agency","displayName":"Certification Agency","basicCategory":"professional_service","count":694,"totalCount":694},{"name":"cleaning_service","displayName":"Cleaning Service","basicCategory":"professional_service","count":60680,"totalCount":101619,"children":[{"name":"industrial_cleaning_service","displayName":"Industrial Cleaning Service","basicCategory":"professional_service","count":280,"totalCount":280},{"name":"janitorial_service","displayName":"Janitorial Service","basicCategory":"professional_service","count":34022,"totalCount":34022},{"name":"office_cleaning","displayName":"Office Cleaning","basicCategory":"professional_service","count":6637,"totalCount":6637}]},{"name":"copywriting_service","displayName":"Copywriting Service","basicCategory":"professional_service","count":1008,"totalCount":1008},{"name":"coworking_space","displayName":"Coworking Space","basicCategory":"professional_service","count":17340,"totalCount":17340},{"name":"e_commerce_service","displayName":"E-commerce Service","basicCategory":"professional_service","count":17051,"totalCount":17051},{"name":"editorial_service","displayName":"Editorial Service","basicCategory":"professional_service","count":221,"totalCount":221},{"name":"employment_agency","displayName":"Employment Agency","basicCategory":"professional_service","count":130328,"totalCount":139656,"children":[{"name":"temp_agency","displayName":"Temp Agency","basicCategory":"professional_service","count":9328,"totalCount":9328}]},{"name":"food_and_beverage_consultant","displayName":"Food and Beverage Consultant","basicCategory":"professional_service","count":1012,"totalCount":1012},{"name":"immigration_assistance_service","displayName":"Immigration Assistance Service","basicCategory":"professional_service","count":112,"totalCount":112},{"name":"internet_marketing_service","displayName":"Internet Marketing Service","basicCategory":"professional_service","count":50945,"totalCount":50945},{"name":"marketing_agency","displayName":"Marketing Agency","basicCategory":"professional_service","count":149422,"totalCount":149422},{"name":"merchandising_service","displayName":"Merchandising Service","basicCategory":"professional_service","count":7593,"totalCount":7593},{"name":"payroll_service","displayName":"Payroll Service","basicCategory":"professional_service","count":2354,"totalCount":2354},{"name":"public_relations","displayName":"Public Relations","basicCategory":"professional_service","count":15614,"totalCount":15614},{"name":"shredding_service","displayName":"Shredding Service","basicCategory":"professional_service","count":2949,"totalCount":2949},{"name":"social_media_agency","displayName":"Social Media Agency","basicCategory":"professional_service","count":12350,"totalCount":12350},{"name":"talent_agency","displayName":"Talent Agency","basicCategory":"professional_service","count":6301,"totalCount":6301},{"name":"translation_service","displayName":"Translation Service","basicCategory":"professional_service","count":13526,"totalCount":13526},{"name":"typing_service","displayName":"Typing Service","basicCategory":"professional_service","count":1071,"totalCount":1071},{"name":"writing_service","displayName":"Writing Service","basicCategory":"professional_service","count":3013,"totalCount":3013}]},{"name":"real_estate_service","displayName":"Real Estate Service","isBasic":true,"count":890072,"totalCount":2083253,"children":[{"name":"builder","displayName":"Builder","basicCategory":"real_estate_service","count":14648,"totalCount":158497,"children":[{"name":"home_developer","displayName":"Home Developer","basicCategory":"real_estate_service","count":143849,"totalCount":143849}]},{"name":"commercial_real_estate","displayName":"Commercial Real Estate","basicCategory":"real_estate_service","count":39843,"totalCount":39843},{"name":"display_home_center","displayName":"Display Home Center","basicCategory":"real_estate_service","count":475,"totalCount":475},{"name":"escrow_service","displayName":"Escrow Service","basicCategory":"real_estate_service","count":4235,"totalCount":4235},{"name":"estate_liquidation","displayName":"Estate Liquidation","basicCategory":"real_estate_service","count":699,"totalCount":699},{"name":"home_organization","displayName":"Home Organization","basicCategory":"real_estate_service","count":2024,"totalCount":2024},{"name":"home_staging","displayName":"Home Staging","basicCategory":"real_estate_service","count":4667,"totalCount":4667},{"name":"homeowner_association","displayName":"Homeowner Association","basicCategory":"real_estate_service","count":1892,"totalCount":1892},{"name":"housing_cooperative","displayName":"Housing Cooperative","basicCategory":"real_estate_service","count":3282,"totalCount":3282},{"name":"kitchen_incubator","displayName":"Kitchen Incubator","basicCategory":"real_estate_service","count":38,"totalCount":38},{"name":"land_surveying","displayName":"Land Surveying","basicCategory":"real_estate_service","count":34111,"totalCount":34111},{"name":"mobile_home_dealer","displayName":"Mobile Home Dealer","basicCategory":"real_estate_service","count":8200,"totalCount":8200},{"name":"property_management","displayName":"Property Management","basicCategory":"real_estate_service","count":151839,"totalCount":151839},{"name":"real_estate_agent","displayName":"Real Estate Agent","basicCategory":"real_estate_service","count":777299,"totalCount":781764,"children":[{"name":"apartment_agent","displayName":"Apartment Agent","basicCategory":"real_estate_service","count":4465,"totalCount":4465}]},{"name":"real_estate_photography","displayName":"Real Estate Photography","basicCategory":"real_estate_service","count":397,"totalCount":397},{"name":"shared_office_space","displayName":"Shared Office Space","basicCategory":"real_estate_service","count":1218,"totalCount":1218}]},{"name":"rental_service","displayName":"Rental Service","isBasic":true,"count":71604,"totalCount":477205,"children":[{"name":"art_space_rental","displayName":"Art Space Rental","basicCategory":"rental_service","count":42,"totalCount":42},{"name":"bus_rental","displayName":"Bus Rental","basicCategory":"rental_service","count":1390,"totalCount":1390},{"name":"clothing_rental","displayName":"Clothing Rental","basicCategory":"rental_service","count":4939,"totalCount":4939},{"name":"dumpster_rental","displayName":"Dumpster Rental","basicCategory":"rental_service","count":2802,"totalCount":2802},{"name":"machine_and_tool_rental","displayName":"Machine and Tool Rental","basicCategory":"rental_service","count":14806,"totalCount":14806},{"name":"rental_kiosk","displayName":"Rental Kiosk","basicCategory":"rental_service","count":201494,"totalCount":201494},{"name":"vehicle_rental_service","displayName":"Vehicle Rental Service","basicCategory":"rental_service","count":1794,"totalCount":180128,"children":[{"name":"car_rental_service","displayName":"Car Rental Service","basicCategory":"rental_service","count":115398,"totalCount":115398},{"name":"motorcycle_rental_service","displayName":"Motorcycle Rental Service","basicCategory":"rental_service","count":2725,"totalCount":2725},{"name":"rv_rental_service","displayName":"RV Rental Service","basicCategory":"rental_service","count":3913,"totalCount":3913},{"name":"trailer_rental_service","displayName":"Trailer Rental Service","basicCategory":"rental_service","count":7734,"totalCount":7734},{"name":"truck_rental_service","displayName":"Truck Rental Service","basicCategory":"rental_service","count":48564,"totalCount":48564}]}]},{"name":"security_service","displayName":"Security Service","isBasic":true,"count":20809,"totalCount":21774,"children":[{"name":"fingerprinting_service","displayName":"Fingerprinting Service","basicCategory":"security_service","count":965,"totalCount":965}]},{"name":"shipping_or_delivery_service","displayName":"Shipping or Delivery Service","isBasic":true,"count":32875,"totalCount":456542,"children":[{"name":"courier_and_delivery_service","displayName":"Courier and Delivery Service","basicCategory":"shipping_or_delivery_service","count":61451,"totalCount":61451},{"name":"mailbox_center","displayName":"Mailbox Center","basicCategory":"shipping_or_delivery_service","count":589,"totalCount":589},{"name":"packaging_contractors_and_service","displayName":"Packaging Contractors and Service","basicCategory":"shipping_or_delivery_service","count":4802,"totalCount":4802},{"name":"post_office","displayName":"Post Office","basicCategory":"shipping_or_delivery_service","count":249072,"totalCount":249072},{"name":"shipping_center","displayName":"Shipping Center","basicCategory":"shipping_or_delivery_service","count":102313,"totalCount":102313},{"name":"shipping_collection_service","displayName":"Shipping Collection Service","basicCategory":"shipping_or_delivery_service","count":1054,"totalCount":1054},{"name":"vehicle_shipping","displayName":"Vehicle Shipping","basicCategory":"shipping_or_delivery_service","count":4386,"totalCount":4386}]},{"name":"storage_facility","displayName":"Storage Facility","isBasic":true,"count":82587,"totalCount":287582,"children":[{"name":"automotive_storage_facility","displayName":"Automotive Storage Facility","basicCategory":"storage_facility","count":2501,"totalCount":2501},{"name":"boat_storage_facility","displayName":"Boat Storage Facility","basicCategory":"storage_facility","count":897,"totalCount":897},{"name":"package_locker","displayName":"Package Locker","basicCategory":"storage_facility","count":129704,"totalCount":129704},{"name":"rv_storage_facility","displayName":"RV Storage Facility","basicCategory":"storage_facility","count":1182,"totalCount":1182},{"name":"self_storage_facility","displayName":"Self Storage Facility","basicCategory":"storage_facility","count":70711,"totalCount":70711}]},{"name":"technical_service","displayName":"Technical Service","isBasic":true,"count":175,"totalCount":706137,"children":[{"name":"acoustical_consultant","displayName":"Acoustical Consultant","basicCategory":"technical_service","count":821,"totalCount":821},{"name":"bike_repair_maintenance","displayName":"Bike Repair Maintenance","basicCategory":"technical_service","count":15550,"totalCount":15550},{"name":"commercial_refrigeration","displayName":"Commercial Refrigeration","basicCategory":"technical_service","count":8814,"totalCount":8814},{"name":"computer_hardware_company","displayName":"Computer Hardware Company","basicCategory":"technical_service","count":32693,"totalCount":32693},{"name":"electronics_repair_shop","displayName":"Electronics Repair Shop","basicCategory":"technical_service","count":3747,"totalCount":3747},{"name":"elevator_service","displayName":"Elevator Service","basicCategory":"technical_service","count":11050,"totalCount":11050},{"name":"generator_installation_repair","displayName":"Generator Installation Repair","basicCategory":"technical_service","count":136,"totalCount":136},{"name":"hydraulic_repair_service","displayName":"Hydraulic Repair Service","basicCategory":"technical_service","count":1788,"totalCount":1788},{"name":"internet_service_provider","displayName":"Internet Service Provider","basicCategory":"technical_service","count":50285,"totalCount":54673,"children":[{"name":"web_hosting_service","displayName":"Web Hosting Service","basicCategory":"technical_service","count":4388,"totalCount":4388}]},{"name":"it_service_and_computer_repair","displayName":"IT Service and Computer Repair","basicCategory":"technical_service","count":217342,"totalCount":249836,"children":[{"name":"it_consultant","displayName":"IT Consultant","basicCategory":"technical_service","count":19450,"totalCount":19450},{"name":"mobile_phone_repair","displayName":"Mobile Phone Repair","basicCategory":"technical_service","count":13044,"totalCount":13044}]},{"name":"jewelry_repair_service","displayName":"Jewelry Repair Service","basicCategory":"technical_service","count":344,"totalCount":344},{"name":"laboratory","displayName":"Laboratory","basicCategory":"technical_service","count":27919,"totalCount":27919},{"name":"machine_shop","displayName":"Machine Shop","basicCategory":"technical_service","count":72681,"totalCount":72681},{"name":"metal_detector_service","displayName":"Metal Detector Service","basicCategory":"technical_service","count":77,"totalCount":77},{"name":"software_development","displayName":"Software Development","basicCategory":"technical_service","count":216390,"totalCount":216390},{"name":"taxidermist","displayName":"Taxidermist","basicCategory":"technical_service","count":5682,"totalCount":5682},{"name":"telephone_service","displayName":"Telephone Service","basicCategory":"technical_service","count":3128,"totalCount":3128},{"name":"watch_repair_service","displayName":"Watch Repair Service","basicCategory":"technical_service","count":633,"totalCount":633}]},{"name":"telecommunications_service","displayName":"Telecommunications Service","isBasic":true,"count":46659,"totalCount":46659},{"name":"utility_energy_infrastructure","displayName":"Utility Energy Infrastructure","isBasic":true,"totalCount":652,"children":[{"name":"wind_energy","displayName":"Wind Energy","basicCategory":"utility_energy_infrastructure","count":652,"totalCount":652}]}]},{"name":"shopping","displayName":"Shopping","isBasic":true,"count":1314326,"totalCount":14395494,"children":[{"name":"convenience_store","displayName":"Convenience Store","isBasic":true,"count":492704,"totalCount":492704},{"name":"department_store","displayName":"Department Store","isBasic":true,"count":89746,"totalCount":89746},{"name":"discount_store","displayName":"Discount Store","isBasic":true,"count":129972,"totalCount":129972},{"name":"fashion_and_apparel_store","displayName":"Fashion and Apparel Store","isBasic":true,"count":105606,"totalCount":2839432,"children":[{"name":"baby_gear_and_nursery_store","displayName":"Baby Gear and Nursery Store","basicCategory":"fashion_and_apparel_store","count":8006,"totalCount":8006},{"name":"clothing_store","displayName":"Clothing Store","basicCategory":"fashion_and_apparel_store","count":977098,"totalCount":1693748,"children":[{"name":"bridal_shop","displayName":"Bridal Shop","basicCategory":"fashion_and_apparel_store","count":59254,"totalCount":59254},{"name":"childrens_clothing_store","displayName":"Children's Clothing Store","basicCategory":"fashion_and_apparel_store","count":130096,"totalCount":130096},{"name":"custom_clothing_store","displayName":"Custom Clothing Store","basicCategory":"fashion_and_apparel_store","count":1276,"totalCount":1276},{"name":"denim_wear_store","displayName":"Denim Wear Store","basicCategory":"fashion_and_apparel_store","count":341,"totalCount":341},{"name":"designer_clothing","displayName":"Designer Clothing","basicCategory":"fashion_and_apparel_store","count":8410,"totalCount":8410},{"name":"formal_wear_store","displayName":"Formal Wear Store","basicCategory":"fashion_and_apparel_store","count":1494,"totalCount":1494},{"name":"fur_clothing","displayName":"Fur Clothing","basicCategory":"fashion_and_apparel_store","count":570,"totalCount":570},{"name":"lingerie_store","displayName":"Lingerie Store","basicCategory":"fashion_and_apparel_store","count":51565,"totalCount":51565},{"name":"maternity_wear","displayName":"Maternity Wear","basicCategory":"fashion_and_apparel_store","count":2575,"totalCount":2575},{"name":"mens_clothing_store","displayName":"Men's Clothing Store","basicCategory":"fashion_and_apparel_store","count":102916,"totalCount":102916},{"name":"plus_size_clothing_store","displayName":"Plus Size Clothing Store","basicCategory":"fashion_and_apparel_store","count":436,"totalCount":436},{"name":"sleepwear","displayName":"Sleepwear","basicCategory":"fashion_and_apparel_store","count":2,"totalCount":2},{"name":"t_shirt_store","displayName":"T-shirt Store","basicCategory":"fashion_and_apparel_store","count":5399,"totalCount":8403,"children":[{"name":"custom_t_shirt_store","displayName":"Custom T-shirt Store","basicCategory":"fashion_and_apparel_store","count":3004,"totalCount":3004}]},{"name":"traditional_clothing","displayName":"Traditional Clothing","basicCategory":"fashion_and_apparel_store","count":1832,"totalCount":1884,"children":[{"name":"saree_shop","displayName":"Saree Shop","basicCategory":"fashion_and_apparel_store","count":52,"totalCount":52}]},{"name":"uniform_store","displayName":"Uniform Store","basicCategory":"fashion_and_apparel_store","count":23040,"totalCount":23040},{"name":"womens_clothing_store","displayName":"Women's Clothing Store","basicCategory":"fashion_and_apparel_store","count":324388,"totalCount":324388}]},{"name":"eyewear_store","displayName":"Eyewear Store","basicCategory":"fashion_and_apparel_store","count":192945,"totalCount":198572,"children":[{"name":"sunglasses_store","displayName":"Sunglasses Store","basicCategory":"fashion_and_apparel_store","count":5627,"totalCount":5627}]},{"name":"fashion_accessories_store","displayName":"Fashion Accessories Store","basicCategory":"fashion_and_apparel_store","count":101580,"totalCount":110607,"children":[{"name":"handbag_store","displayName":"Handbag Store","basicCategory":"fashion_and_apparel_store","count":2169,"totalCount":2169},{"name":"hat_store","displayName":"Hat Store","basicCategory":"fashion_and_apparel_store","count":6858,"totalCount":6858}]},{"name":"fashion_boutique","displayName":"Fashion Boutique","basicCategory":"fashion_and_apparel_store","count":111011,"totalCount":111011},{"name":"jewelry_store","displayName":"Jewelry Store","basicCategory":"fashion_and_apparel_store","count":303482,"totalCount":312456,"children":[{"name":"diamond_dealer","displayName":"Diamond Dealer","basicCategory":"fashion_and_apparel_store","count":599,"totalCount":599},{"name":"goldsmith","displayName":"Goldsmith","basicCategory":"fashion_and_apparel_store","count":2484,"totalCount":2484},{"name":"watch_store","displayName":"Watch Store","basicCategory":"fashion_and_apparel_store","count":5891,"totalCount":5891}]},{"name":"leather_goods_store","displayName":"Leather Goods Store","basicCategory":"fashion_and_apparel_store","count":7414,"totalCount":7414},{"name":"luggage_store","displayName":"Luggage Store","basicCategory":"fashion_and_apparel_store","count":25811,"totalCount":25811},{"name":"shoe_store","displayName":"Shoe Store","basicCategory":"fashion_and_apparel_store","count":264048,"totalCount":266201,"children":[{"name":"orthopedic_shoe_store","displayName":"Orthopedic Shoe Store","basicCategory":"fashion_and_apparel_store","count":2153,"totalCount":2153}]}]},{"name":"food_and_beverage_store","displayName":"Food and Beverage Store","isBasic":true,"count":84196,"totalCount":1803541,"children":[{"name":"beer_wine_spirits_store","displayName":"Beer Wine Spirits Store","basicCategory":"food_and_beverage_store","count":23586,"totalCount":23586},{"name":"brewing_supply_store","displayName":"Brewing Supply Store","basicCategory":"food_and_beverage_store","count":570,"totalCount":570},{"name":"butcher_shop","displayName":"Butcher Shop","basicCategory":"food_and_beverage_store","count":154532,"totalCount":154532},{"name":"cheese_shop","displayName":"Cheese Shop","basicCategory":"food_and_beverage_store","count":16370,"totalCount":16370},{"name":"coffee_and_tea_supplies","displayName":"Coffee and Tea Supplies","basicCategory":"food_and_beverage_store","count":1348,"totalCount":1348},{"name":"csa_farm","displayName":"Csa Farm","basicCategory":"food_and_beverage_store","count":18,"totalCount":18},{"name":"fishmonger","displayName":"Fishmonger","basicCategory":"food_and_beverage_store","count":32640,"totalCount":32640},{"name":"grocery_store","displayName":"Grocery Store","basicCategory":"food_and_beverage_store","count":952347,"totalCount":998209,"children":[{"name":"asian_grocery_store","displayName":"Asian Grocery Store","basicCategory":"food_and_beverage_store","count":1375,"totalCount":1375},{"name":"ethical_grocery_store","displayName":"Ethical Grocery Store","basicCategory":"food_and_beverage_store","count":2414,"totalCount":2414},{"name":"indian_grocery_store","displayName":"Indian Grocery Store","basicCategory":"food_and_beverage_store","count":6049,"totalCount":6049},{"name":"international_grocery_store","displayName":"International Grocery Store","basicCategory":"food_and_beverage_store","count":2057,"totalCount":2057},{"name":"japanese_grocery_store","displayName":"Japanese Grocery Store","basicCategory":"food_and_beverage_store","count":59,"totalCount":59},{"name":"korean_grocery_store","displayName":"Korean Grocery Store","basicCategory":"food_and_beverage_store","count":10609,"totalCount":10609},{"name":"kosher_grocery_store","displayName":"Kosher Grocery Store","basicCategory":"food_and_beverage_store","count":60,"totalCount":60},{"name":"mexican_grocery_store","displayName":"Mexican Grocery Store","basicCategory":"food_and_beverage_store","count":495,"totalCount":495},{"name":"organic_grocery_store","displayName":"Organic Grocery Store","basicCategory":"food_and_beverage_store","count":22687,"totalCount":22687},{"name":"russian_grocery_store","displayName":"Russian Grocery Store","basicCategory":"food_and_beverage_store","count":57,"totalCount":57}]},{"name":"health_food_store","displayName":"Health Food Store","basicCategory":"food_and_beverage_store","count":80448,"totalCount":80448},{"name":"herb_and_spice_store","displayName":"Herb and Spice Store","basicCategory":"food_and_beverage_store","count":5604,"totalCount":5604},{"name":"honey_farm_shop","displayName":"Honey Farm Shop","basicCategory":"food_and_beverage_store","count":4710,"totalCount":4710},{"name":"imported_food_store","displayName":"Imported Food Store","basicCategory":"food_and_beverage_store","count":679,"totalCount":679},{"name":"liquor_store","displayName":"Liquor Store","basicCategory":"food_and_beverage_store","count":151863,"totalCount":151863},{"name":"olive_oil_store","displayName":"Olive Oil Store","basicCategory":"food_and_beverage_store","count":1414,"totalCount":1414},{"name":"patisserie_cake_shop","displayName":"Patisserie Cake Shop","basicCategory":"food_and_beverage_store","count":3845,"totalCount":7273,"children":[{"name":"custom_cakes_shop","displayName":"Custom Cakes Shop","basicCategory":"food_and_beverage_store","count":3428,"totalCount":3428}]},{"name":"pick_your_own_farm","displayName":"Pick Your Own Farm","basicCategory":"food_and_beverage_store","count":78,"totalCount":78},{"name":"seafood_market","displayName":"Seafood Market","basicCategory":"food_and_beverage_store","count":3038,"totalCount":3038},{"name":"smokehouse","displayName":"Smokehouse","basicCategory":"food_and_beverage_store","count":122,"totalCount":122},{"name":"specialty_foods_store","displayName":"Specialty Foods Store","basicCategory":"food_and_beverage_store","count":33526,"totalCount":119170,"children":[{"name":"dairy_store","displayName":"Dairy Store","basicCategory":"food_and_beverage_store","count":2920,"totalCount":2920},{"name":"frozen_foods_store","displayName":"Frozen Foods Store","basicCategory":"food_and_beverage_store","count":2201,"totalCount":2201},{"name":"pasta_store","displayName":"Pasta Store","basicCategory":"food_and_beverage_store","count":1456,"totalCount":1456},{"name":"produce_store","displayName":"Produce Store","basicCategory":"food_and_beverage_store","count":79001,"totalCount":79001},{"name":"rice_store","displayName":"Rice Store","basicCategory":"food_and_beverage_store","count":66,"totalCount":66}]},{"name":"tobacco_shop","displayName":"Tobacco Shop","basicCategory":"food_and_beverage_store","count":69277,"totalCount":69277},{"name":"vitamin_and_supplement_store","displayName":"Vitamin and Supplement Store","basicCategory":"food_and_beverage_store","count":48184,"totalCount":48184},{"name":"water_store","displayName":"Water Store","basicCategory":"food_and_beverage_store","count":212,"totalCount":212}]},{"name":"kiosk","displayName":"Kiosk","isBasic":true,"count":8997,"totalCount":8997},{"name":"market","displayName":"Market","isBasic":true,"count":622,"totalCount":69496,"children":[{"name":"bazaar","displayName":"Bazaar","basicCategory":"market","count":11,"totalCount":11},{"name":"farmers_market","displayName":"Farmers Market","isBasic":true,"count":60620,"totalCount":60620},{"name":"health_market","displayName":"Health Market","basicCategory":"market","count":2551,"totalCount":2551},{"name":"holiday_market","displayName":"Holiday Market","basicCategory":"market","count":27,"totalCount":27},{"name":"market_stall","displayName":"Market Stall","basicCategory":"market","count":2,"totalCount":2},{"name":"night_market","displayName":"Night Market","basicCategory":"market","count":4675,"totalCount":4675},{"name":"public_market","displayName":"Public Market","basicCategory":"market","count":726,"totalCount":726},{"name":"shopping_passage","displayName":"Shopping Passage","basicCategory":"market","count":2,"totalCount":2},{"name":"street_vendor","displayName":"Street Vendor","basicCategory":"market","count":260,"totalCount":260}]},{"name":"second_hand_store","displayName":"Second Hand Store","isBasic":true,"count":86876,"totalCount":241617,"children":[{"name":"antique_store","displayName":"Antique Store","basicCategory":"second_hand_store","count":65106,"totalCount":65106},{"name":"flea_market","displayName":"Flea Market","basicCategory":"second_hand_store","count":27762,"totalCount":27762},{"name":"junkyard","displayName":"Junkyard","basicCategory":"second_hand_store","count":8709,"totalCount":8709},{"name":"pawn_shop","displayName":"Pawn Shop","basicCategory":"second_hand_store","count":30574,"totalCount":30574},{"name":"second_hand_clothing_store","displayName":"Second Hand Clothing Store","basicCategory":"second_hand_store","count":22590,"totalCount":22590}]},{"name":"shopping_mall","displayName":"Shopping Mall","isBasic":true,"count":192527,"totalCount":192527},{"name":"shopping_service","displayName":"Shopping Service","isBasic":true,"totalCount":300,"children":[{"name":"personal_shopper","displayName":"Personal Shopper","basicCategory":"shopping_service","count":300,"totalCount":300}]},{"name":"specialty_store","displayName":"Specialty Store","isBasic":true,"count":53,"totalCount":6191190,"children":[{"name":"adult_store","displayName":"Adult Store","basicCategory":"specialty_store","count":2200,"totalCount":2200},{"name":"animal_and_pet_store","displayName":"Animal and Pet Store","isBasic":true,"totalCount":192721,"children":[{"name":"horse_equipment_shop","displayName":"Horse Equipment Shop","basicCategory":"animal_and_pet_store","count":577,"totalCount":577},{"name":"livestock_feed_and_supply_store","displayName":"Livestock Feed and Supply Store","basicCategory":"animal_and_pet_store","count":2958,"totalCount":2958},{"name":"pet_store","displayName":"Pet Store","basicCategory":"animal_and_pet_store","count":173687,"totalCount":189186,"children":[{"name":"aquatic_pet_store","displayName":"Aquatic Pet Store","basicCategory":"animal_and_pet_store","count":12783,"totalCount":12783},{"name":"bird_store","displayName":"Bird Store","basicCategory":"animal_and_pet_store","count":275,"totalCount":275},{"name":"reptile_store","displayName":"Reptile Store","basicCategory":"animal_and_pet_store","count":2441,"totalCount":2441}]}]},{"name":"arts_crafts_and_hobby_store","displayName":"Arts Crafts and Hobby Store","isBasic":true,"count":150558,"totalCount":290467,"children":[{"name":"art_supply_store","displayName":"Art Supply Store","basicCategory":"arts_crafts_and_hobby_store","count":2035,"totalCount":2035},{"name":"atelier","displayName":"Atelier","basicCategory":"arts_crafts_and_hobby_store","count":44,"totalCount":44},{"name":"cooking_classes","displayName":"Cooking Classes","basicCategory":"arts_crafts_and_hobby_store","count":858,"totalCount":858},{"name":"costume_store","displayName":"Costume Store","basicCategory":"arts_crafts_and_hobby_store","count":18646,"totalCount":18646},{"name":"craft_store","displayName":"Craft Store","basicCategory":"arts_crafts_and_hobby_store","count":13148,"totalCount":19993,"children":[{"name":"embroidery_and_crochet_store","displayName":"Embroidery and Crochet Store","basicCategory":"arts_crafts_and_hobby_store","count":4889,"totalCount":4889},{"name":"knitting_supply_store","displayName":"Knitting Supply Store","basicCategory":"arts_crafts_and_hobby_store","count":1956,"totalCount":1956}]},{"name":"fabric_store","displayName":"Fabric Store","basicCategory":"arts_crafts_and_hobby_store","count":60976,"totalCount":60976},{"name":"framing_store","displayName":"Framing Store","basicCategory":"arts_crafts_and_hobby_store","count":6570,"totalCount":6570},{"name":"hobby_shop","displayName":"Hobby Shop","basicCategory":"arts_crafts_and_hobby_store","count":30787,"totalCount":30787}]},{"name":"auction_house","displayName":"Auction House","basicCategory":"specialty_store","count":18659,"totalCount":19315,"children":[{"name":"car_auction","displayName":"Car Auction","basicCategory":"specialty_store","count":656,"totalCount":656}]},{"name":"books_music_and_video_store","displayName":"Books Music and Video Store","isBasic":true,"count":5709,"totalCount":253480,"children":[{"name":"bookstore","displayName":"Bookstore","basicCategory":"books_music_and_video_store","count":146215,"totalCount":159196,"children":[{"name":"academic_bookstore","displayName":"Academic Bookstore","basicCategory":"books_music_and_video_store","count":1846,"totalCount":1846},{"name":"comic_books_store","displayName":"Comic Books Store","basicCategory":"books_music_and_video_store","count":10130,"totalCount":10130},{"name":"used_bookstore","displayName":"Used Bookstore","basicCategory":"books_music_and_video_store","count":1005,"totalCount":1005}]},{"name":"music_and_dvd_store","displayName":"Music and DVD Store","basicCategory":"books_music_and_video_store","count":27613,"totalCount":27613},{"name":"newspaper_and_magazines_store","displayName":"Newspaper and Magazines Store","basicCategory":"books_music_and_video_store","count":20808,"totalCount":20808},{"name":"video_and_video_game_rental","displayName":"Video and Video Game Rental","basicCategory":"books_music_and_video_store","count":10318,"totalCount":10318},{"name":"video_game_store","displayName":"Video Game Store","basicCategory":"books_music_and_video_store","count":27533,"totalCount":27533},{"name":"vinyl_record_store","displayName":"Vinyl Record Store","basicCategory":"books_music_and_video_store","count":2303,"totalCount":2303}]},{"name":"cards_and_stationery_store","displayName":"Cards and Stationery Store","basicCategory":"specialty_store","count":4394,"totalCount":4394},{"name":"customized_merchandise_store","displayName":"Customized Merchandise Store","basicCategory":"specialty_store","count":2854,"totalCount":2854},{"name":"duty_free_store","displayName":"Duty Free Store","basicCategory":"specialty_store","count":1194,"totalCount":1194},{"name":"educational_supply_store","displayName":"Educational Supply Store","basicCategory":"specialty_store","count":8253,"totalCount":8253},{"name":"electronics_store","displayName":"Electronics Store","isBasic":true,"count":271923,"totalCount":811154,"children":[{"name":"audio_visual_equipment_store","displayName":"Audio Visual Equipment Store","basicCategory":"electronics_store","count":18433,"totalCount":18433},{"name":"battery_store","displayName":"Battery Store","basicCategory":"electronics_store","count":4392,"totalCount":4392},{"name":"camera_and_photography_store","displayName":"Camera and Photography Store","basicCategory":"electronics_store","count":40289,"totalCount":40289},{"name":"car_stereo_store","displayName":"Car Stereo Store","basicCategory":"electronics_store","count":13478,"totalCount":13478},{"name":"computer_store","displayName":"Computer Store","basicCategory":"electronics_store","count":107668,"totalCount":107668},{"name":"drone_store","displayName":"Drone Store","basicCategory":"electronics_store","count":263,"totalCount":263},{"name":"home_theater_systems_stores","displayName":"Home Theater Systems Stores","basicCategory":"electronics_store","count":2237,"totalCount":2237},{"name":"mobile_phone_accessory_store","displayName":"Mobile Phone Accessory Store","basicCategory":"electronics_store","count":6499,"totalCount":6499},{"name":"mobile_phone_store","displayName":"Mobile Phone Store","basicCategory":"electronics_store","count":345972,"totalCount":345972}]},{"name":"farming_equipment_and_supply_store","displayName":"Farming Equipment and Supply Store","basicCategory":"specialty_store","totalCount":2139,"children":[{"name":"agricultural_seed_store","displayName":"Agricultural Seed Store","basicCategory":"specialty_store","count":883,"totalCount":883},{"name":"farming_equipment_store","displayName":"Farming Equipment Store","basicCategory":"specialty_store","count":1256,"totalCount":1256}]},{"name":"fireworks_store","displayName":"Fireworks Store","basicCategory":"specialty_store","count":12680,"totalCount":12680},{"name":"flowers_and_gifts_store","displayName":"Flowers and Gifts Store","isBasic":true,"count":411372,"totalCount":540975,"children":[{"name":"florist","displayName":"Florist","basicCategory":"flowers_and_gifts_store","count":61768,"totalCount":61768},{"name":"flower_market","displayName":"Flower Market","basicCategory":"flowers_and_gifts_store","count":81,"totalCount":81},{"name":"gift_shop","displayName":"Gift Shop","basicCategory":"flowers_and_gifts_store","count":67754,"totalCount":67754}]},{"name":"gemstone_and_mineral_store","displayName":"Gemstone and Mineral Store","basicCategory":"specialty_store","count":450,"totalCount":450},{"name":"gun_and_ammo_store","displayName":"Gun and Ammo Store","basicCategory":"specialty_store","count":19108,"totalCount":19165,"children":[{"name":"gunsmith","displayName":"Gunsmith","basicCategory":"specialty_store","count":57,"totalCount":57}]},{"name":"hardware_home_and_garden_store","displayName":"Hardware Home and Garden Store","isBasic":true,"count":29214,"totalCount":1990195,"children":[{"name":"appliance_store","displayName":"Appliance Store","basicCategory":"hardware_home_and_garden_store","count":72595,"totalCount":72595},{"name":"bedding_and_bath_store","displayName":"Bedding and Bath Store","basicCategory":"hardware_home_and_garden_store","count":2210,"totalCount":2210},{"name":"building_supply_store","displayName":"Building Supply Store","basicCategory":"hardware_home_and_garden_store","count":387462,"totalCount":415849,"children":[{"name":"lumber_store","displayName":"Lumber Store","basicCategory":"hardware_home_and_garden_store","count":28387,"totalCount":28387}]},{"name":"candle_store","displayName":"Candle Store","basicCategory":"hardware_home_and_garden_store","count":3091,"totalCount":3091},{"name":"carpet_store","displayName":"Carpet Store","basicCategory":"hardware_home_and_garden_store","count":63783,"totalCount":63783},{"name":"christmas_tree_store","displayName":"Christmas Tree Store","basicCategory":"hardware_home_and_garden_store","count":2631,"totalCount":2631},{"name":"do_it_yourself_store","displayName":"Do IT Yourself Store","basicCategory":"hardware_home_and_garden_store","count":3283,"totalCount":3283},{"name":"electrical_supply_store","displayName":"Electrical Supply Store","basicCategory":"hardware_home_and_garden_store","count":12133,"totalCount":12133},{"name":"flooring_store","displayName":"Flooring Store","basicCategory":"hardware_home_and_garden_store","count":11792,"totalCount":11792},{"name":"furniture_accessory_store","displayName":"Furniture Accessory Store","basicCategory":"hardware_home_and_garden_store","count":2434,"totalCount":2434},{"name":"furniture_store","displayName":"Furniture Store","basicCategory":"hardware_home_and_garden_store","count":498190,"totalCount":498190},{"name":"grilling_equipment_store","displayName":"Grilling Equipment Store","basicCategory":"hardware_home_and_garden_store","count":817,"totalCount":817},{"name":"hardware_store","displayName":"Hardware Store","basicCategory":"hardware_home_and_garden_store","count":270997,"totalCount":274623,"children":[{"name":"welding_supply_store","displayName":"Welding Supply Store","basicCategory":"hardware_home_and_garden_store","count":3626,"totalCount":3626}]},{"name":"holiday_decor_store","displayName":"Holiday Decor Store","basicCategory":"hardware_home_and_garden_store","count":329,"totalCount":329},{"name":"home_decor_store","displayName":"Home Decor Store","basicCategory":"hardware_home_and_garden_store","count":12222,"totalCount":12222},{"name":"home_goods_store","displayName":"Home Goods Store","basicCategory":"hardware_home_and_garden_store","count":132229,"totalCount":132229},{"name":"home_improvement_store","displayName":"Home Improvement Store","basicCategory":"hardware_home_and_garden_store","count":132365,"totalCount":132365},{"name":"hot_tub_and_pool_store","displayName":"Hot Tub and Pool Store","basicCategory":"hardware_home_and_garden_store","count":4495,"totalCount":4495},{"name":"kitchen_and_bath_store","displayName":"Kitchen and Bath Store","basicCategory":"hardware_home_and_garden_store","count":9150,"totalCount":23463,"children":[{"name":"bathroom_fixture_store","displayName":"Bathroom Fixture Store","basicCategory":"hardware_home_and_garden_store","count":314,"totalCount":314},{"name":"kitchen_supply_store","displayName":"Kitchen Supply Store","basicCategory":"hardware_home_and_garden_store","count":13999,"totalCount":13999}]},{"name":"lawn_mower_store","displayName":"Lawn Mower Store","basicCategory":"hardware_home_and_garden_store","count":2555,"totalCount":2555},{"name":"lighting_store","displayName":"Lighting Store","basicCategory":"hardware_home_and_garden_store","count":42296,"totalCount":42296},{"name":"linen_store","displayName":"Linen Store","basicCategory":"hardware_home_and_garden_store","count":33826,"totalCount":33826},{"name":"mattress_store","displayName":"Mattress Store","basicCategory":"hardware_home_and_garden_store","count":43768,"totalCount":43768},{"name":"nursery_and_gardening_store","displayName":"Nursery and Gardening Store","basicCategory":"hardware_home_and_garden_store","count":126212,"totalCount":126913,"children":[{"name":"hydroponic_gardening_store","displayName":"Hydroponic Gardening Store","basicCategory":"hardware_home_and_garden_store","count":701,"totalCount":701}]},{"name":"outdoor_furniture_store","displayName":"Outdoor Furniture Store","basicCategory":"hardware_home_and_garden_store","count":2199,"totalCount":2199},{"name":"paint_store","displayName":"Paint Store","basicCategory":"hardware_home_and_garden_store","count":20972,"totalCount":20972},{"name":"rug_store","displayName":"Rug Store","basicCategory":"hardware_home_and_garden_store","count":1898,"totalCount":1898},{"name":"tile_store","displayName":"Tile Store","basicCategory":"hardware_home_and_garden_store","count":7124,"totalCount":7124},{"name":"wallpaper_store","displayName":"Wallpaper Store","basicCategory":"hardware_home_and_garden_store","count":577,"totalCount":577},{"name":"window_treatment_store","displayName":"Window Treatment Store","basicCategory":"hardware_home_and_garden_store","count":5701,"totalCount":5701},{"name":"woodworking_supply_store","displayName":"Woodworking Supply Store","basicCategory":"hardware_home_and_garden_store","count":4618,"totalCount":4618}]},{"name":"medical_supply_store","displayName":"Medical Supply Store","basicCategory":"specialty_store","count":57357,"totalCount":84483,"children":[{"name":"dental_supply_store","displayName":"Dental Supply Store","basicCategory":"specialty_store","count":2128,"totalCount":2128},{"name":"hearing_aid_store","displayName":"Hearing Aid Store","basicCategory":"specialty_store","count":24998,"totalCount":24998}]},{"name":"musical_instrument_and_pro_audio_store","displayName":"Musical Instrument and Pro Audio Store","isBasic":true,"totalCount":45407,"children":[{"name":"dj_equipment_store","displayName":"DJ Equipment Store","basicCategory":"musical_instrument_and_pro_audio_store","count":56,"totalCount":56},{"name":"musical_instrument_store","displayName":"Musical Instrument Store","basicCategory":"musical_instrument_and_pro_audio_store","count":43724,"totalCount":45351,"children":[{"name":"guitar_store","displayName":"Guitar Store","basicCategory":"musical_instrument_and_pro_audio_store","count":960,"totalCount":960},{"name":"piano_store","displayName":"Piano Store","basicCategory":"musical_instrument_and_pro_audio_store","count":667,"totalCount":667}]},{"name":"pro_audio_store","displayName":"Pro Audio Store","basicCategory":"musical_instrument_and_pro_audio_store","totalCount":0}]},{"name":"office_supply_store","displayName":"Office Supply Store","isBasic":true,"count":62101,"totalCount":77200,"children":[{"name":"packing_supply_store","displayName":"Packing Supply Store","basicCategory":"office_supply_store","count":14949,"totalCount":14949},{"name":"pen_store","displayName":"Pen Store","basicCategory":"office_supply_store","count":150,"totalCount":150}]},{"name":"outlet_store","displayName":"Outlet Store","basicCategory":"specialty_store","count":16205,"totalCount":16205},{"name":"party_supply_store","displayName":"Party Supply Store","basicCategory":"specialty_store","count":51183,"totalCount":51183},{"name":"personal_care_and_beauty_store","displayName":"Personal Care and Beauty Store","isBasic":true,"totalCount":287061,"children":[{"name":"bath_and_body_store","displayName":"Bath and Body Store","basicCategory":"personal_care_and_beauty_store","totalCount":0},{"name":"beauty_supply_store","displayName":"Beauty Supply Store","basicCategory":"personal_care_and_beauty_store","count":186786,"totalCount":287061,"children":[{"name":"cosmetics_and_fragrance_store","displayName":"Cosmetics and Fragrance Store","basicCategory":"personal_care_and_beauty_store","count":46375,"totalCount":46375},{"name":"hair_supply_store","displayName":"Hair Supply Store","basicCategory":"personal_care_and_beauty_store","count":48327,"totalCount":48327},{"name":"wig_store","displayName":"Wig Store","basicCategory":"personal_care_and_beauty_store","count":5573,"totalCount":5573}]}]},{"name":"pharmacy_and_drug_store","displayName":"Pharmacy and Drug Store","isBasic":true,"totalCount":574493,"children":[{"name":"drugstore","displayName":"Drugstore","basicCategory":"pharmacy_and_drug_store","count":36293,"totalCount":36293},{"name":"pharmacy","displayName":"Pharmacy","basicCategory":"pharmacy_and_drug_store","count":538200,"totalCount":538200}]},{"name":"pop_up_store","displayName":"Pop Up Store","basicCategory":"specialty_store","count":7692,"totalCount":7692},{"name":"religious_and_spiritual_goods_store","displayName":"Religious and Spiritual Goods Store","basicCategory":"specialty_store","count":1283,"totalCount":1389,"children":[{"name":"buddhist_goods_store","displayName":"Buddhist Goods Store","basicCategory":"specialty_store","count":3,"totalCount":3},{"name":"christian_goods_store","displayName":"Christian Goods Store","basicCategory":"specialty_store","totalCount":103,"children":[{"name":"church_supply_store","displayName":"Church Supply Store","basicCategory":"specialty_store","count":103,"totalCount":103}]},{"name":"hindu_goods_store","displayName":"Hindu Goods Store","basicCategory":"specialty_store","totalCount":0},{"name":"islamic_goods_store","displayName":"Islamic Goods Store","basicCategory":"specialty_store","totalCount":0},{"name":"jewish_goods_store","displayName":"Jewish Goods Store","basicCategory":"specialty_store","totalCount":0},{"name":"mind_body_spirit_store","displayName":"Mind Body Spirit Store","basicCategory":"specialty_store","totalCount":0},{"name":"new_age_goods_store","displayName":"New Age Goods Store","basicCategory":"specialty_store","totalCount":0},{"name":"occult_store","displayName":"Occult Store","basicCategory":"specialty_store","totalCount":0},{"name":"pagan_goods_store","displayName":"Pagan Goods Store","basicCategory":"specialty_store","totalCount":0}]},{"name":"safe_store","displayName":"Safe Store","basicCategory":"specialty_store","count":490,"totalCount":490},{"name":"safety_equipment_store","displayName":"Safety Equipment Store","basicCategory":"specialty_store","count":12197,"totalCount":12197},{"name":"smoke_and_vape_store","displayName":"Smoke and Vape Store","basicCategory":"specialty_store","count":44077,"totalCount":53616,"children":[{"name":"cannabis_dispensary","displayName":"Cannabis Dispensary","basicCategory":"specialty_store","count":9539,"totalCount":9539}]},{"name":"souvenir_store","displayName":"Souvenir Store","basicCategory":"specialty_store","count":14782,"totalCount":14782},{"name":"sporting_goods_store","displayName":"Sporting Goods Store","isBasic":true,"count":141280,"totalCount":364438,"children":[{"name":"archery_store","displayName":"Archery Store","basicCategory":"sporting_goods_store","count":1672,"totalCount":1672},{"name":"bike_store","displayName":"Bike Store","basicCategory":"sporting_goods_store","count":96420,"totalCount":96420},{"name":"dive_store","displayName":"Dive Store","basicCategory":"sporting_goods_store","count":1075,"totalCount":1075},{"name":"fitness_exercise_store","displayName":"Fitness Exercise Store","basicCategory":"sporting_goods_store","count":1635,"totalCount":1635},{"name":"golf_equipment_store","displayName":"Golf Equipment Store","basicCategory":"sporting_goods_store","count":2442,"totalCount":2442},{"name":"hockey_equipment_store","displayName":"Hockey Equipment Store","basicCategory":"sporting_goods_store","count":299,"totalCount":299},{"name":"hunting_and_fishing_store","displayName":"Hunting and Fishing Store","basicCategory":"sporting_goods_store","count":31109,"totalCount":31109},{"name":"outdoor_store","displayName":"Outdoor Store","basicCategory":"sporting_goods_store","count":28255,"totalCount":28255},{"name":"pool_and_billiards_store","displayName":"Pool and Billiards Store","basicCategory":"sporting_goods_store","count":175,"totalCount":175},{"name":"skate_store","displayName":"Skate Store","basicCategory":"sporting_goods_store","count":5359,"totalCount":5359},{"name":"ski_and_snowboard_store","displayName":"Ski and Snowboard Store","basicCategory":"sporting_goods_store","count":5139,"totalCount":5139},{"name":"sportswear_store","displayName":"Sportswear Store","basicCategory":"sporting_goods_store","count":33600,"totalCount":35298,"children":[{"name":"dancewear_store","displayName":"Dancewear Store","basicCategory":"sporting_goods_store","count":1698,"totalCount":1698}]},{"name":"surf_store","displayName":"Surf Store","basicCategory":"sporting_goods_store","count":7464,"totalCount":7464},{"name":"swimwear_store","displayName":"Swimwear Store","basicCategory":"sporting_goods_store","count":6816,"totalCount":6816}]},{"name":"tactical_supply_store","displayName":"Tactical Supply Store","basicCategory":"specialty_store","totalCount":990,"children":[{"name":"army_and_navy_store","displayName":"Army and Navy Store","basicCategory":"specialty_store","count":20,"totalCount":20},{"name":"military_surplus_store","displayName":"Military Surplus Store","basicCategory":"specialty_store","count":970,"totalCount":970}]},{"name":"toys_and_games_store","displayName":"Toys and Games Store","isBasic":true,"count":25,"totalCount":75920,"children":[{"name":"tabletop_games_store","displayName":"Tabletop Games Store","basicCategory":"toys_and_games_store","count":206,"totalCount":206},{"name":"toy_store","displayName":"Toy Store","basicCategory":"toys_and_games_store","count":75689,"totalCount":75689}]},{"name":"trophy_store","displayName":"Trophy Store","basicCategory":"specialty_store","count":8724,"totalCount":8724},{"name":"vehicle_parts_store","displayName":"Vehicle Parts Store","isBasic":true,"totalCount":363231,"children":[{"name":"auto_parts_store","displayName":"Auto Parts Store","basicCategory":"vehicle_parts_store","count":341840,"totalCount":341840},{"name":"boat_parts_store","displayName":"Boat Parts Store","basicCategory":"vehicle_parts_store","count":7840,"totalCount":7840},{"name":"motorcycle_parts_store","displayName":"Motorcycle Parts Store","basicCategory":"vehicle_parts_store","count":1834,"totalCount":1834},{"name":"motorsports_store","displayName":"Motorsports Store","basicCategory":"vehicle_parts_store","count":11419,"totalCount":11419},{"name":"rv_parts_store","displayName":"RV Parts Store","basicCategory":"vehicle_parts_store","count":298,"totalCount":298}]}]},{"name":"superstore","displayName":"Superstore","isBasic":true,"count":15034,"totalCount":15034},{"name":"vehicle_dealer","displayName":"Vehicle Dealer","isBasic":true,"count":4407,"totalCount":880798,"children":[{"name":"aircraft_dealer","displayName":"Aircraft Dealer","basicCategory":"vehicle_dealer","count":1049,"totalCount":1049},{"name":"auto_dealer","displayName":"Auto Dealer","isBasic":true,"count":574047,"totalCount":672854,"children":[{"name":"auto_broker","displayName":"Auto Broker","basicCategory":"auto_dealer","count":3846,"totalCount":3846},{"name":"auto_leasing","displayName":"Auto Leasing","basicCategory":"auto_dealer","count":5247,"totalCount":5247},{"name":"used_auto_dealer","displayName":"Used Auto Dealer","basicCategory":"auto_dealer","count":89714,"totalCount":89714}]},{"name":"boat_dealer","displayName":"Boat Dealer","basicCategory":"vehicle_dealer","count":15224,"totalCount":15224},{"name":"commercial_vehicle_dealer","displayName":"Commercial Vehicle Dealer","basicCategory":"vehicle_dealer","count":6506,"totalCount":6506},{"name":"forklift_dealer","displayName":"Forklift Dealer","basicCategory":"vehicle_dealer","count":2016,"totalCount":2016},{"name":"golf_cart_dealer","displayName":"Golf Cart Dealer","basicCategory":"vehicle_dealer","count":3798,"totalCount":3798},{"name":"motorcycle_dealer","displayName":"Motorcycle Dealer","basicCategory":"vehicle_dealer","count":118113,"totalCount":118113},{"name":"motorsport_vehicle_dealer","displayName":"Motorsport Vehicle Dealer","basicCategory":"vehicle_dealer","count":4999,"totalCount":4999},{"name":"recreational_vehicle_dealer","displayName":"Recreational Vehicle Dealer","basicCategory":"vehicle_dealer","count":14620,"totalCount":14620},{"name":"scooter_dealer","displayName":"Scooter Dealer","basicCategory":"vehicle_dealer","count":612,"totalCount":612},{"name":"trailer_dealer","displayName":"Trailer Dealer","basicCategory":"vehicle_dealer","count":10283,"totalCount":10283},{"name":"truck_dealer","displayName":"Truck Dealer","basicCategory":"vehicle_dealer","count":26317,"totalCount":26317}]},{"name":"warehouse_club_store","displayName":"Warehouse Club Store","isBasic":true,"count":125814,"totalCount":125814}]},{"name":"sports_and_recreation","displayName":"Sports and Recreation","isBasic":true,"count":219446,"totalCount":3003530,"children":[{"name":"park","displayName":"Park","isBasic":true,"count":501526,"totalCount":598764,"children":[{"name":"dog_park","displayName":"Dog Park","isBasic":true,"count":13551,"totalCount":13551},{"name":"mountain_bike_park","displayName":"Mountain Bike Park","basicCategory":"park","count":52,"totalCount":52},{"name":"national_park","displayName":"National Park","isBasic":true,"count":28217,"totalCount":28217},{"name":"playground","displayName":"Playground","isBasic":true,"count":39829,"totalCount":39829},{"name":"state_park","displayName":"State Park","basicCategory":"park","count":1314,"totalCount":1314},{"name":"water_park","displayName":"Water Park","basicCategory":"park","count":14275,"totalCount":14275}]},{"name":"recreational_equipment_rental","displayName":"Recreational Equipment Rental","isBasic":true,"totalCount":47897,"children":[{"name":"atv_rental_tour","displayName":"ATV Rental Tour","basicCategory":"recreational_equipment_rental","count":2127,"totalCount":2127},{"name":"beach_equipment_rental","displayName":"Beach Equipment Rental","basicCategory":"recreational_equipment_rental","count":969,"totalCount":969},{"name":"bike_rental","displayName":"Bike Rental","basicCategory":"recreational_equipment_rental","count":14807,"totalCount":14807},{"name":"boat_hire_service","displayName":"Boat Hire Service","basicCategory":"recreational_equipment_rental","count":2022,"totalCount":2022},{"name":"boat_rental_and_training","displayName":"Boat Rental and Training","basicCategory":"recreational_equipment_rental","count":16165,"totalCount":16165},{"name":"canoe_and_kayak_hire_service","displayName":"Canoe and Kayak Hire Service","basicCategory":"recreational_equipment_rental","count":8541,"totalCount":8541},{"name":"jet_skis_rental","displayName":"Jet Skis Rental","basicCategory":"recreational_equipment_rental","count":1913,"totalCount":1913},{"name":"paddleboard_rental","displayName":"Paddleboard Rental","basicCategory":"recreational_equipment_rental","count":100,"totalCount":100},{"name":"scooter_rental","displayName":"Scooter Rental","basicCategory":"recreational_equipment_rental","count":410,"totalCount":410},{"name":"sledding_rental","displayName":"Sledding Rental","basicCategory":"recreational_equipment_rental","count":71,"totalCount":71},{"name":"snorkeling_equipment_rental","displayName":"Snorkeling Equipment Rental","basicCategory":"recreational_equipment_rental","count":4,"totalCount":4},{"name":"sport_equipment_rental","displayName":"Sport Equipment Rental","basicCategory":"recreational_equipment_rental","count":701,"totalCount":701},{"name":"surfboard_rental","displayName":"Surfboard Rental","basicCategory":"recreational_equipment_rental","count":67,"totalCount":67}]},{"name":"recreational_trail_or_path","displayName":"Recreational Trail or Path","isBasic":true,"count":24,"totalCount":55291,"children":[{"name":"backpacking_area","displayName":"Backpacking Area","basicCategory":"recreational_trail_or_path","count":2,"totalCount":2},{"name":"bike_path","displayName":"Bike Path","basicCategory":"recreational_trail_or_path","count":20,"totalCount":20},{"name":"hiking_trail","displayName":"Hiking Trail","basicCategory":"recreational_trail_or_path","count":50910,"totalCount":50910},{"name":"mountain_bike_trail","displayName":"Mountain Bike Trail","basicCategory":"recreational_trail_or_path","count":4335,"totalCount":4335}]},{"name":"sport_league","displayName":"Sport League","isBasic":true,"count":207022,"totalCount":214575,"children":[{"name":"amateur_sport_league","displayName":"Amateur Sport League","basicCategory":"sport_league","count":4941,"totalCount":4941},{"name":"esports_league","displayName":"Esports League","basicCategory":"sport_league","count":779,"totalCount":779},{"name":"professional_sport_league","displayName":"Professional Sport League","basicCategory":"sport_league","count":1370,"totalCount":1370},{"name":"school_sport_league","displayName":"School Sport League","basicCategory":"sport_league","count":463,"totalCount":463}]},{"name":"sport_or_fitness_facility","displayName":"Sport or Fitness Facility","isBasic":true,"count":145354,"totalCount":1626876,"children":[{"name":"adventure_sport","displayName":"Adventure Sport","basicCategory":"sport_or_fitness_facility","count":91,"totalCount":8298,"children":[{"name":"axe_throwing","displayName":"Axe Throwing","basicCategory":"sport_or_fitness_facility","count":112,"totalCount":112},{"name":"bungee_jumping_center","displayName":"Bungee Jumping Center","basicCategory":"sport_or_fitness_facility","count":11,"totalCount":11},{"name":"challenge_courses_center","displayName":"Challenge Courses Center","basicCategory":"sport_or_fitness_facility","count":71,"totalCount":71},{"name":"cliff_jumping_center","displayName":"Cliff Jumping Center","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"climbing_service","displayName":"Climbing Service","basicCategory":"sport_or_fitness_facility","count":96,"totalCount":96},{"name":"high_gliding_center","displayName":"High Gliding Center","basicCategory":"sport_or_fitness_facility","count":8,"totalCount":8},{"name":"rock_climbing_spot","displayName":"Rock Climbing Spot","basicCategory":"sport_or_fitness_facility","count":7882,"totalCount":7882},{"name":"ziplining_center","displayName":"Ziplining Center","basicCategory":"sport_or_fitness_facility","count":27,"totalCount":27}]},{"name":"adventure_sports_center","displayName":"Adventure Sports Center","basicCategory":"sport_or_fitness_facility","count":1207,"totalCount":1207},{"name":"atv_recreation_park","displayName":"ATV Recreation Park","basicCategory":"sport_or_fitness_facility","count":1136,"totalCount":1136},{"name":"batting_cage","displayName":"Batting Cage","basicCategory":"sport_or_fitness_facility","count":3023,"totalCount":3023},{"name":"bowling_alley","displayName":"Bowling Alley","basicCategory":"sport_or_fitness_facility","count":18168,"totalCount":18168},{"name":"boxing_class","displayName":"Boxing Class","basicCategory":"sport_or_fitness_facility","count":14688,"totalCount":14688},{"name":"boxing_gym","displayName":"Boxing Gym","basicCategory":"sport_or_fitness_facility","count":2070,"totalCount":2070},{"name":"cardio_class","displayName":"Cardio Class","basicCategory":"sport_or_fitness_facility","count":150,"totalCount":150},{"name":"climbing_class","displayName":"Climbing Class","basicCategory":"sport_or_fitness_facility","count":4,"totalCount":4},{"name":"curling_center","displayName":"Curling Center","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"curling_ice","displayName":"Curling Ice","basicCategory":"sport_or_fitness_facility","count":5,"totalCount":5},{"name":"cycling_class","displayName":"Cycling Class","basicCategory":"sport_or_fitness_facility","count":2894,"totalCount":2894},{"name":"dance_studio","displayName":"Dance Studio","basicCategory":"sport_or_fitness_facility","count":134838,"totalCount":134838},{"name":"diving_center","displayName":"Diving Center","basicCategory":"sport_or_fitness_facility","count":1667,"totalCount":14143,"children":[{"name":"free_diving_center","displayName":"Free Diving Center","basicCategory":"sport_or_fitness_facility","count":34,"totalCount":34},{"name":"scuba_diving_center","displayName":"Scuba Diving Center","basicCategory":"sport_or_fitness_facility","count":12442,"totalCount":12442}]},{"name":"diving_instruction","displayName":"Diving Instruction","basicCategory":"sport_or_fitness_facility","totalCount":1943,"children":[{"name":"free_diving_instruction","displayName":"Free Diving Instruction","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"scuba_diving_instruction","displayName":"Scuba Diving Instruction","basicCategory":"sport_or_fitness_facility","count":1943,"totalCount":1943}]},{"name":"fitness_studio","displayName":"Fitness Studio","isBasic":true,"totalCount":162927,"children":[{"name":"aerial_fitness_center","displayName":"Aerial Fitness Center","basicCategory":"fitness_studio","count":41,"totalCount":41},{"name":"barre_class","displayName":"Barre Class","basicCategory":"fitness_studio","count":440,"totalCount":440},{"name":"boot_camp","displayName":"Boot Camp","basicCategory":"fitness_studio","count":9619,"totalCount":9619},{"name":"pilates_studio","displayName":"Pilates Studio","basicCategory":"fitness_studio","count":56151,"totalCount":56151},{"name":"qi_gong_studio","displayName":"Qi Gong Studio","basicCategory":"fitness_studio","count":39,"totalCount":39},{"name":"tai_chi_studio","displayName":"Tai Chi Studio","basicCategory":"fitness_studio","count":1189,"totalCount":1189},{"name":"yoga_studio","displayName":"Yoga Studio","basicCategory":"fitness_studio","count":95448,"totalCount":95448}]},{"name":"fitness_trainer","displayName":"Fitness Trainer","basicCategory":"sport_or_fitness_facility","count":80359,"totalCount":80359},{"name":"flyboarding_center","displayName":"Flyboarding Center","basicCategory":"sport_or_fitness_facility","count":99,"totalCount":99},{"name":"flyboarding_rental","displayName":"Flyboarding Rental","basicCategory":"sport_or_fitness_facility","count":4,"totalCount":4},{"name":"golf_course","displayName":"Golf Course","isBasic":true,"count":39298,"totalCount":45479,"children":[{"name":"driving_range","displayName":"Driving Range","basicCategory":"golf_course","count":6181,"totalCount":6181}]},{"name":"golf_instructor","displayName":"Golf Instructor","basicCategory":"sport_or_fitness_facility","count":4661,"totalCount":4661},{"name":"gym","displayName":"Gym","isBasic":true,"count":562038,"totalCount":562065,"children":[{"name":"cycle_studio","displayName":"Cycle Studio","basicCategory":"gym","count":27,"totalCount":27}]},{"name":"gymnastics_center","displayName":"Gymnastics Center","basicCategory":"sport_or_fitness_facility","count":19700,"totalCount":19700},{"name":"hang_gliding_center","displayName":"Hang Gliding Center","basicCategory":"sport_or_fitness_facility","count":408,"totalCount":408},{"name":"hockey_rink","displayName":"Hockey Rink","basicCategory":"sport_or_fitness_facility","count":29,"totalCount":56,"children":[{"name":"ice_hockey_rink","displayName":"Ice Hockey Rink","basicCategory":"sport_or_fitness_facility","count":27,"totalCount":27},{"name":"roller_hockey_rink","displayName":"Roller Hockey Rink","basicCategory":"sport_or_fitness_facility","totalCount":0}]},{"name":"horse_riding","displayName":"Horse Riding","basicCategory":"sport_or_fitness_facility","count":10439,"totalCount":47446,"children":[{"name":"equestrian_facility","displayName":"Equestrian Facility","basicCategory":"sport_or_fitness_facility","count":37007,"totalCount":37007}]},{"name":"horseback_riding_service","displayName":"Horseback Riding Service","basicCategory":"sport_or_fitness_facility","count":10349,"totalCount":10349},{"name":"indoor_playcenter","displayName":"Indoor Playcenter","basicCategory":"sport_or_fitness_facility","count":1398,"totalCount":1398},{"name":"kiteboarding","displayName":"Kiteboarding","basicCategory":"sport_or_fitness_facility","count":1079,"totalCount":1079},{"name":"kiteboarding_instruction","displayName":"Kiteboarding Instruction","basicCategory":"sport_or_fitness_facility","count":3,"totalCount":3},{"name":"laser_tag","displayName":"Laser Tag","basicCategory":"sport_or_fitness_facility","count":2642,"totalCount":2642},{"name":"miniature_golf_course","displayName":"Miniature Golf Course","basicCategory":"sport_or_fitness_facility","count":5658,"totalCount":5658},{"name":"paddleboarding_center","displayName":"Paddleboarding Center","basicCategory":"sport_or_fitness_facility","count":1019,"totalCount":1019},{"name":"paddleboarding_lessons","displayName":"Paddleboarding Lessons","basicCategory":"sport_or_fitness_facility","count":1,"totalCount":1},{"name":"paintball","displayName":"Paintball","basicCategory":"sport_or_fitness_facility","count":7351,"totalCount":7351},{"name":"parasailing_ride_service","displayName":"Parasailing Ride Service","basicCategory":"sport_or_fitness_facility","count":67,"totalCount":67},{"name":"pool_billiards","displayName":"Pool Billiards","basicCategory":"sport_or_fitness_facility","count":17888,"totalCount":19876,"children":[{"name":"pool_hall","displayName":"Pool Hall","basicCategory":"sport_or_fitness_facility","count":1988,"totalCount":1988}]},{"name":"race_track","displayName":"Race Track","basicCategory":"sport_or_fitness_facility","count":19653,"totalCount":21175,"children":[{"name":"go_kart_track","displayName":"Go Kart Track","basicCategory":"sport_or_fitness_facility","count":618,"totalCount":618},{"name":"horse_racing_track","displayName":"Horse Racing Track","basicCategory":"sport_or_fitness_facility","count":381,"totalCount":381},{"name":"motor_race_track","displayName":"Motor Race Track","basicCategory":"sport_or_fitness_facility","count":399,"totalCount":399},{"name":"track_and_field_track","displayName":"Track and Field Track","basicCategory":"sport_or_fitness_facility","count":121,"totalCount":121},{"name":"velodrome","displayName":"Velodrome","basicCategory":"sport_or_fitness_facility","count":3,"totalCount":3}]},{"name":"racing_experience","displayName":"Racing Experience","basicCategory":"sport_or_fitness_facility","count":59,"totalCount":59},{"name":"rock_climbing_gym","displayName":"Rock Climbing Gym","basicCategory":"sport_or_fitness_facility","count":563,"totalCount":563},{"name":"rock_climbing_instructor","displayName":"Rock Climbing Instructor","basicCategory":"sport_or_fitness_facility","count":33,"totalCount":33},{"name":"running_and_track","displayName":"Running and Track","basicCategory":"sport_or_fitness_facility","count":3,"totalCount":3,"children":[{"name":"running","displayName":"Running","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"track_field_event","displayName":"Track Field Event","basicCategory":"sport_or_fitness_facility","totalCount":0}]},{"name":"self_defense_class","displayName":"Self Defense Class","basicCategory":"sport_or_fitness_facility","count":575,"totalCount":575},{"name":"shooting_range","displayName":"Shooting Range","basicCategory":"sport_or_fitness_facility","count":18639,"totalCount":22788,"children":[{"name":"archery_range","displayName":"Archery Range","basicCategory":"sport_or_fitness_facility","count":4149,"totalCount":4149}]},{"name":"skate_park","displayName":"Skate Park","isBasic":true,"count":20001,"totalCount":20001},{"name":"skating_rink","displayName":"Skating Rink","isBasic":true,"count":717,"totalCount":9344,"children":[{"name":"ice_skating_rink","displayName":"Ice Skating Rink","basicCategory":"skating_rink","count":6176,"totalCount":6176},{"name":"roller_skating_rink","displayName":"Roller Skating Rink","basicCategory":"skating_rink","count":2451,"totalCount":2451}]},{"name":"ski_and_snowboard_school","displayName":"Ski and Snowboard School","basicCategory":"sport_or_fitness_facility","count":2654,"totalCount":2654},{"name":"sky_diving","displayName":"Sky Diving","basicCategory":"sport_or_fitness_facility","count":1747,"totalCount":1915,"children":[{"name":"sky_diving_drop_zone","displayName":"Sky Diving Drop Zone","basicCategory":"sport_or_fitness_facility","count":16,"totalCount":16},{"name":"skydiving_center","displayName":"Skydiving Center","basicCategory":"sport_or_fitness_facility","count":152,"totalCount":152}]},{"name":"snow_sport","displayName":"Snow Sport","basicCategory":"sport_or_fitness_facility","count":54,"totalCount":178,"children":[{"name":"bobsledding_field","displayName":"Bobsledding Field","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"ski_area","displayName":"Ski Area","basicCategory":"sport_or_fitness_facility","count":20,"totalCount":20},{"name":"ski_chairlift","displayName":"Ski Chairlift","basicCategory":"sport_or_fitness_facility","count":19,"totalCount":19},{"name":"ski_chalet","displayName":"Ski Chalet","basicCategory":"sport_or_fitness_facility","count":29,"totalCount":29},{"name":"ski_resort_area","displayName":"Ski Resort Area","basicCategory":"sport_or_fitness_facility","count":55,"totalCount":55},{"name":"snowboarding_center","displayName":"Snowboarding Center","basicCategory":"sport_or_fitness_facility","count":1,"totalCount":1}]},{"name":"sport_court","displayName":"Sport Court","isBasic":true,"totalCount":49858,"children":[{"name":"badminton_court","displayName":"Badminton Court","basicCategory":"sport_court","count":5059,"totalCount":5059},{"name":"basketball_court","displayName":"Basketball Court","basicCategory":"sport_court","count":8607,"totalCount":8607},{"name":"beach_volleyball_court","displayName":"Beach Volleyball Court","basicCategory":"sport_court","count":28,"totalCount":28},{"name":"bocce_ball_court","displayName":"Bocce Ball Court","basicCategory":"sport_court","count":150,"totalCount":150},{"name":"handball_court","displayName":"Handball Court","basicCategory":"sport_court","count":556,"totalCount":556},{"name":"pickleball_court","displayName":"Pickleball Court","basicCategory":"sport_court","count":27,"totalCount":27},{"name":"racquetball_court","displayName":"Racquetball Court","basicCategory":"sport_court","count":287,"totalCount":287},{"name":"squash_court","displayName":"Squash Court","basicCategory":"sport_court","count":1239,"totalCount":1239},{"name":"street_hockey_court","displayName":"Street Hockey Court","basicCategory":"sport_court","totalCount":0},{"name":"tennis_court","displayName":"Tennis Court","basicCategory":"sport_court","count":31151,"totalCount":31151},{"name":"volleyball_court","displayName":"Volleyball Court","basicCategory":"sport_court","count":2754,"totalCount":2754}]},{"name":"sport_field","displayName":"Sport Field","isBasic":true,"count":152,"totalCount":69889,"children":[{"name":"airsoft_field","displayName":"Airsoft Field","basicCategory":"sport_field","count":77,"totalCount":77},{"name":"american_football_field","displayName":"American Football Field","basicCategory":"sport_field","count":149,"totalCount":149},{"name":"baseball_field","displayName":"Baseball Field","basicCategory":"sport_field","count":18164,"totalCount":18164},{"name":"disc_golf_course","displayName":"Disc Golf Course","basicCategory":"sport_field","count":3302,"totalCount":3302},{"name":"futsal_field","displayName":"Futsal Field","basicCategory":"sport_field","count":601,"totalCount":601},{"name":"hockey_field","displayName":"Hockey Field","basicCategory":"sport_field","count":1217,"totalCount":1217,"children":[{"name":"field_hockey_pitch","displayName":"Field Hockey Pitch","basicCategory":"sport_field","totalCount":0}]},{"name":"lacrosse_field","displayName":"Lacrosse Field","basicCategory":"sport_field","totalCount":0},{"name":"rugby_pitch","displayName":"Rugby Pitch","basicCategory":"sport_field","count":1378,"totalCount":1378},{"name":"soccer_field","displayName":"Soccer Field","basicCategory":"sport_field","count":44807,"totalCount":44807},{"name":"softball_field","displayName":"Softball Field","basicCategory":"sport_field","count":42,"totalCount":42}]},{"name":"sports_complex","displayName":"Sports Complex","isBasic":true,"count":5726,"totalCount":5726},{"name":"surfing_school","displayName":"Surfing School","basicCategory":"sport_or_fitness_facility","count":411,"totalCount":411},{"name":"swimming_pool","displayName":"Swimming Pool","isBasic":true,"count":69258,"totalCount":81471,"children":[{"name":"swimming_instructor","displayName":"Swimming Instructor","basicCategory":"swimming_pool","count":12213,"totalCount":12213}]},{"name":"trampoline_park","displayName":"Trampoline Park","basicCategory":"sport_or_fitness_facility","count":65,"totalCount":65},{"name":"tubing_provider","displayName":"Tubing Provider","basicCategory":"sport_or_fitness_facility","count":15,"totalCount":15},{"name":"water_sport","displayName":"Water Sport","basicCategory":"sport_or_fitness_facility","count":86,"totalCount":19177,"children":[{"name":"boating_place","displayName":"Boating Place","basicCategory":"sport_or_fitness_facility","count":844,"totalCount":844},{"name":"fishing","displayName":"Fishing","basicCategory":"sport_or_fitness_facility","count":332,"totalCount":11739,"children":[{"name":"fishing_area","displayName":"Fishing Area","basicCategory":"sport_or_fitness_facility","count":44,"totalCount":44},{"name":"fishing_charter","displayName":"Fishing Charter","basicCategory":"sport_or_fitness_facility","count":11363,"totalCount":11363}]},{"name":"rafting_kayaking_area","displayName":"Rafting Kayaking Area","basicCategory":"sport_or_fitness_facility","count":681,"totalCount":681},{"name":"sailing_area","displayName":"Sailing Area","basicCategory":"sport_or_fitness_facility","count":224,"totalCount":224},{"name":"snorkeling","displayName":"Snorkeling","basicCategory":"sport_or_fitness_facility","count":333,"totalCount":333},{"name":"surfing","displayName":"Surfing","basicCategory":"sport_or_fitness_facility","count":5246,"totalCount":5270,"children":[{"name":"windsurfing_center","displayName":"Windsurfing Center","basicCategory":"sport_or_fitness_facility","count":24,"totalCount":24}]}]},{"name":"wildlife_hunting_range","displayName":"Wildlife Hunting Range","basicCategory":"sport_or_fitness_facility","count":408,"totalCount":408}]},{"name":"sport_or_recreation_club","displayName":"Sport or Recreation Club","isBasic":true,"count":28806,"totalCount":198601,"children":[{"name":"beach_volleyball_club","displayName":"Beach Volleyball Club","basicCategory":"sport_or_recreation_club","count":74,"totalCount":74},{"name":"curling_club","displayName":"Curling Club","basicCategory":"sport_or_recreation_club","count":28,"totalCount":28},{"name":"fencing_club","displayName":"Fencing Club","basicCategory":"sport_or_recreation_club","count":2045,"totalCount":2045},{"name":"fishing_club","displayName":"Fishing Club","basicCategory":"sport_or_recreation_club","count":14000,"totalCount":14000},{"name":"football_club","displayName":"Football Club","basicCategory":"sport_or_recreation_club","count":1016,"totalCount":1016},{"name":"go_kart_club","displayName":"Go Kart Club","basicCategory":"sport_or_recreation_club","count":4007,"totalCount":4007},{"name":"golf_club","displayName":"Golf Club","basicCategory":"sport_or_recreation_club","count":2193,"totalCount":2444,"children":[{"name":"indoor_golf_center","displayName":"Indoor Golf Center","basicCategory":"sport_or_recreation_club","count":251,"totalCount":251}]},{"name":"gymnastics_club","displayName":"Gymnastics Club","basicCategory":"sport_or_recreation_club","count":486,"totalCount":486},{"name":"hockey_club","displayName":"Hockey Club","basicCategory":"sport_or_recreation_club","count":268,"totalCount":478,"children":[{"name":"field_hockey_club","displayName":"Field Hockey Club","basicCategory":"sport_or_recreation_club","totalCount":0},{"name":"ice_hockey_club","displayName":"Ice Hockey Club","basicCategory":"sport_or_recreation_club","count":210,"totalCount":210},{"name":"roller_hockey_club","displayName":"Roller Hockey Club","basicCategory":"sport_or_recreation_club","totalCount":0},{"name":"street_hockey_club","displayName":"Street Hockey Club","basicCategory":"sport_or_recreation_club","totalCount":0}]},{"name":"lacrosse_club","displayName":"Lacrosse Club","basicCategory":"sport_or_recreation_club","totalCount":0},{"name":"lawn_bowling_club","displayName":"Lawn Bowling Club","basicCategory":"sport_or_recreation_club","count":261,"totalCount":261},{"name":"martial_arts_club","displayName":"Martial Arts Club","basicCategory":"sport_or_recreation_club","count":133576,"totalCount":137284,"children":[{"name":"brazilian_jiu_jitsu_club","displayName":"Brazilian Jiu Jitsu Club","basicCategory":"sport_or_recreation_club","count":297,"totalCount":297},{"name":"chinese_martial_arts_club","displayName":"Chinese Martial Arts Club","basicCategory":"sport_or_recreation_club","count":190,"totalCount":190},{"name":"karate_club","displayName":"Karate Club","basicCategory":"sport_or_recreation_club","count":1415,"totalCount":1415},{"name":"kickboxing_club","displayName":"Kickboxing Club","basicCategory":"sport_or_recreation_club","count":961,"totalCount":961},{"name":"muay_thai_club","displayName":"Muay Thai Club","basicCategory":"sport_or_recreation_club","count":117,"totalCount":117},{"name":"taekwondo_club","displayName":"Taekwondo Club","basicCategory":"sport_or_recreation_club","count":728,"totalCount":728}]},{"name":"naturist_club","displayName":"Naturist Club","basicCategory":"sport_or_recreation_club","count":21,"totalCount":21},{"name":"paddle_tennis_club","displayName":"Paddle Tennis Club","basicCategory":"sport_or_recreation_club","count":20,"totalCount":20},{"name":"pickleball_club","displayName":"Pickleball Club","basicCategory":"sport_or_recreation_club","count":6,"totalCount":6},{"name":"rowing_club","displayName":"Rowing Club","basicCategory":"sport_or_recreation_club","count":189,"totalCount":189},{"name":"running_and_track_club","displayName":"Running and Track Club","basicCategory":"sport_or_recreation_club","totalCount":2,"children":[{"name":"running_club","displayName":"Running Club","basicCategory":"sport_or_recreation_club","count":2,"totalCount":2},{"name":"track_and_field_club","displayName":"Track and Field Club","basicCategory":"sport_or_recreation_club","totalCount":0}]},{"name":"sailing_club","displayName":"Sailing Club","basicCategory":"sport_or_recreation_club","count":1290,"totalCount":1290},{"name":"soccer_club","displayName":"Soccer Club","basicCategory":"sport_or_recreation_club","count":4574,"totalCount":4574},{"name":"surf_lifesaving_club","displayName":"Surf Lifesaving Club","basicCategory":"sport_or_recreation_club","count":27,"totalCount":27},{"name":"table_tennis_club","displayName":"Table Tennis Club","basicCategory":"sport_or_recreation_club","count":734,"totalCount":734},{"name":"volleyball_club","displayName":"Volleyball Club","basicCategory":"sport_or_recreation_club","count":809,"totalCount":809}]},{"name":"sport_team","displayName":"Sport Team","isBasic":true,"totalCount":42080,"children":[{"name":"amateur_sport_team","displayName":"Amateur Sport Team","basicCategory":"sport_team","count":34051,"totalCount":34051},{"name":"esports_team","displayName":"Esports Team","basicCategory":"sport_team","count":586,"totalCount":586},{"name":"professional_sport_team","displayName":"Professional Sport Team","basicCategory":"sport_team","count":6056,"totalCount":6056},{"name":"school_sport_team","displayName":"School Sport Team","basicCategory":"sport_team","count":1387,"totalCount":1387}]}]},{"name":"travel_and_transportation","displayName":"Travel and Transportation","isBasic":true,"count":229637,"totalCount":4198209,"children":[{"name":"air_transport_facility_or_service","displayName":"Air Transport Facility or Service","isBasic":true,"totalCount":86362,"children":[{"name":"aircraft_parts_and_supplies","displayName":"Aircraft Parts and Supplies","basicCategory":"air_transport_facility_or_service","count":1453,"totalCount":1978,"children":[{"name":"avionics_shop","displayName":"Avionics Shop","basicCategory":"air_transport_facility_or_service","count":525,"totalCount":525}]},{"name":"airline","displayName":"Airline","basicCategory":"air_transport_facility_or_service","count":12618,"totalCount":12618},{"name":"airline_ticket_agency","displayName":"Airline Ticket Agency","basicCategory":"air_transport_facility_or_service","count":209,"totalCount":209},{"name":"airport","displayName":"Airport","isBasic":true,"count":56786,"totalCount":65668,"children":[{"name":"airport_terminal","displayName":"Airport Terminal","basicCategory":"airport","count":6460,"totalCount":6460},{"name":"balloon_port","displayName":"Balloon Port","basicCategory":"airport","count":110,"totalCount":110},{"name":"glider_port","displayName":"Glider Port","basicCategory":"airport","count":9,"totalCount":9},{"name":"heliport","displayName":"Heliport","basicCategory":"airport","count":1970,"totalCount":1970},{"name":"seaplane_base","displayName":"Seaplane Base","basicCategory":"airport","count":332,"totalCount":332},{"name":"ultralight_airport","displayName":"Ultralight Airport","basicCategory":"airport","count":1,"totalCount":1}]},{"name":"airport_shuttle","displayName":"Airport Shuttle","basicCategory":"air_transport_facility_or_service","count":5631,"totalCount":5631},{"name":"private_jet_charter","displayName":"Private Jet Charter","basicCategory":"air_transport_facility_or_service","count":258,"totalCount":258}]},{"name":"fueling_station","displayName":"Fueling Station","isBasic":true,"count":205,"totalCount":660904,"children":[{"name":"ev_charging_station","displayName":"EV Charging Station","isBasic":true,"count":56889,"totalCount":56889},{"name":"gas_station","displayName":"Gas Station","isBasic":true,"count":597006,"totalCount":603810,"children":[{"name":"fuel_dock","displayName":"Fuel Dock","basicCategory":"gas_station","count":24,"totalCount":24},{"name":"truck_gas_station","displayName":"Truck Gas Station","basicCategory":"gas_station","count":6780,"totalCount":6780}]}]},{"name":"ground_transport_facility_or_service","displayName":"Ground Transport Facility or Service","isBasic":true,"totalCount":296420,"children":[{"name":"bikes_and_bike_service","displayName":"Bikes and Bike Service","basicCategory":"ground_transport_facility_or_service","totalCount":48,"children":[{"name":"bike_sharing_location","displayName":"Bike Sharing Location","basicCategory":"ground_transport_facility_or_service","count":48,"totalCount":48}]},{"name":"public_transit_facility_or_service","displayName":"Public Transit Facility or Service","isBasic":true,"count":28369,"totalCount":103058,"children":[{"name":"bus_station","displayName":"Bus Station","basicCategory":"public_transit_facility_or_service","count":69039,"totalCount":69039},{"name":"bus_ticket_agency","displayName":"Bus Ticket Agency","basicCategory":"public_transit_facility_or_service","count":330,"totalCount":330},{"name":"cable_car_service","displayName":"Cable Car Service","basicCategory":"public_transit_facility_or_service","count":828,"totalCount":828},{"name":"coach_bus","displayName":"Coach Bus","basicCategory":"public_transit_facility_or_service","count":356,"totalCount":356},{"name":"light_rail_and_subway_station","displayName":"Light Rail and Subway Station","basicCategory":"public_transit_facility_or_service","count":1445,"totalCount":1445},{"name":"metro_station","displayName":"Metro Station","basicCategory":"public_transit_facility_or_service","count":2691,"totalCount":2691}]},{"name":"rail_facility_or_service","displayName":"Rail Facility or Service","isBasic":true,"count":702,"totalCount":104651,"children":[{"name":"railway_ticket_agent","displayName":"Railway Ticket Agent","basicCategory":"rail_facility_or_service","count":29,"totalCount":29},{"name":"train","displayName":"Train","basicCategory":"rail_facility_or_service","count":1711,"totalCount":1711},{"name":"train_station","displayName":"Train Station","isBasic":true,"count":102209,"totalCount":102209}]},{"name":"road_structures_and_service","displayName":"Road Structures and Service","basicCategory":"ground_transport_facility_or_service","count":103,"totalCount":1424,"children":[{"name":"rest_stop","displayName":"Rest Stop","isBasic":true,"count":585,"totalCount":585},{"name":"toll_station","displayName":"Toll Station","isBasic":true,"count":223,"totalCount":223},{"name":"truck_stop","displayName":"Truck Stop","basicCategory":"ground_transport_facility_or_service","count":513,"totalCount":513}]},{"name":"taxi_or_ride_share_service","displayName":"Taxi or Ride Share Service","isBasic":true,"totalCount":87239,"children":[{"name":"car_sharing","displayName":"Car Sharing","basicCategory":"taxi_or_ride_share_service","count":3359,"totalCount":3359},{"name":"limo_service","displayName":"Limo Service","basicCategory":"taxi_or_ride_share_service","count":14370,"totalCount":14370},{"name":"pedicab_service","displayName":"Pedicab Service","basicCategory":"taxi_or_ride_share_service","count":3,"totalCount":3},{"name":"ride_share_service","displayName":"Ride Share Service","basicCategory":"taxi_or_ride_share_service","count":586,"totalCount":586},{"name":"taxi_service","displayName":"Taxi Service","basicCategory":"taxi_or_ride_share_service","count":61941,"totalCount":68579,"children":[{"name":"taxi_stand","displayName":"Taxi Stand","basicCategory":"taxi_or_ride_share_service","count":6638,"totalCount":6638}]},{"name":"town_car_service","displayName":"Town Car Service","basicCategory":"taxi_or_ride_share_service","count":342,"totalCount":342}]}]},{"name":"parking","displayName":"Parking","isBasic":true,"count":151712,"totalCount":163404,"children":[{"name":"bike_parking","displayName":"Bike Parking","basicCategory":"parking","count":759,"totalCount":759},{"name":"motorcycle_parking","displayName":"Motorcycle Parking","basicCategory":"parking","count":417,"totalCount":417},{"name":"park_and_ride","displayName":"Park and Ride","isBasic":true,"count":159,"totalCount":159},{"name":"parking_garage","displayName":"Parking Garage","isBasic":true,"count":4466,"totalCount":4466},{"name":"parking_lot","displayName":"Parking Lot","isBasic":true,"count":5891,"totalCount":5891}]},{"name":"transport_interchange","displayName":"Transport Interchange","basicCategory":"travel_and_transportation","count":56,"totalCount":56},{"name":"travel_service","displayName":"Travel Service","isBasic":true,"count":404136,"totalCount":687923,"children":[{"name":"agritourism","displayName":"Agritourism","basicCategory":"travel_service","count":6722,"totalCount":6722},{"name":"luggage_storage","displayName":"Luggage Storage","basicCategory":"travel_service","count":4609,"totalCount":4609},{"name":"passport_and_visa_service","displayName":"Passport and Visa Service","basicCategory":"travel_service","count":19429,"totalCount":19589,"children":[{"name":"visa_agent","displayName":"Visa Agent","basicCategory":"travel_service","count":160,"totalCount":160}]},{"name":"tour_operator","displayName":"Tour Operator","basicCategory":"travel_service","count":132898,"totalCount":168811,"children":[{"name":"aerial_tour","displayName":"Aerial Tour","basicCategory":"travel_service","count":116,"totalCount":116},{"name":"architectural_tour","displayName":"Architectural Tour","basicCategory":"travel_service","count":154,"totalCount":154},{"name":"art_tour","displayName":"Art Tour","basicCategory":"travel_service","count":36,"totalCount":36},{"name":"beer_tour","displayName":"Beer Tour","basicCategory":"travel_service","count":44,"totalCount":44},{"name":"bike_tour","displayName":"Bike Tour","basicCategory":"travel_service","count":102,"totalCount":102},{"name":"boat_tour","displayName":"Boat Tour","basicCategory":"travel_service","count":12046,"totalCount":12046},{"name":"bus_tour","displayName":"Bus Tour","basicCategory":"travel_service","count":3838,"totalCount":3838},{"name":"cannabis_tour","displayName":"Cannabis Tour","basicCategory":"travel_service","count":11,"totalCount":11},{"name":"food_tour","displayName":"Food Tour","basicCategory":"travel_service","count":1215,"totalCount":1215},{"name":"historical_tour","displayName":"Historical Tour","basicCategory":"travel_service","count":1247,"totalCount":1247},{"name":"hot_air_balloons_tour","displayName":"Hot Air Balloons Tour","basicCategory":"travel_service","count":1152,"totalCount":1152},{"name":"scooter_tour","displayName":"Scooter Tour","basicCategory":"travel_service","count":7,"totalCount":7},{"name":"sightseeing_tour_agency","displayName":"Sightseeing Tour Agency","basicCategory":"travel_service","count":15522,"totalCount":15522},{"name":"walking_tour","displayName":"Walking Tour","basicCategory":"travel_service","count":147,"totalCount":147},{"name":"whale_watching_tour","displayName":"Whale Watching Tour","basicCategory":"travel_service","count":87,"totalCount":87},{"name":"wine_tour","displayName":"Wine Tour","basicCategory":"travel_service","count":189,"totalCount":189}]},{"name":"travel_agent","displayName":"Travel Agent","basicCategory":"travel_service","count":67907,"totalCount":67907},{"name":"vacation_rental_agent","displayName":"Vacation Rental Agent","basicCategory":"travel_service","count":7878,"totalCount":7878},{"name":"visitor_center","displayName":"Visitor Center","basicCategory":"travel_service","count":8271,"totalCount":8271}]},{"name":"vehicle_service","displayName":"Vehicle Service","isBasic":true,"count":96,"totalCount":2072273,"children":[{"name":"aircraft_service","displayName":"Aircraft Service","basicCategory":"vehicle_service","count":2798,"totalCount":2798},{"name":"automotive_service","displayName":"Automotive Service","isBasic":true,"count":182836,"totalCount":1945746,"children":[{"name":"auto_body_shop","displayName":"Auto Body Shop","basicCategory":"automotive_service","count":92636,"totalCount":92636},{"name":"auto_customization","displayName":"Auto Customization","basicCategory":"automotive_service","count":32564,"totalCount":32564},{"name":"auto_detailing","displayName":"Auto Detailing","basicCategory":"automotive_service","count":135085,"totalCount":135085},{"name":"auto_glass_service","displayName":"Auto Glass Service","basicCategory":"automotive_service","count":33806,"totalCount":55337,"children":[{"name":"car_window_tinting","displayName":"Car Window Tinting","basicCategory":"automotive_service","count":17520,"totalCount":17520},{"name":"windshield_installation_and_repair","displayName":"Windshield Installation and Repair","basicCategory":"automotive_service","count":4011,"totalCount":4011}]},{"name":"auto_restoration_service","displayName":"Auto Restoration Service","basicCategory":"automotive_service","count":16361,"totalCount":16361},{"name":"auto_security","displayName":"Auto Security","basicCategory":"automotive_service","count":1282,"totalCount":1282},{"name":"auto_upholstery","displayName":"Auto Upholstery","basicCategory":"automotive_service","count":2956,"totalCount":2956},{"name":"automobile_registration_service","displayName":"Automobile Registration Service","basicCategory":"automotive_service","count":4336,"totalCount":4336},{"name":"automotive_consultant","displayName":"Automotive Consultant","basicCategory":"automotive_service","count":10131,"totalCount":10131},{"name":"automotive_repair","displayName":"Automotive Repair","basicCategory":"automotive_service","count":977672,"totalCount":1138224,"children":[{"name":"auto_electrical_repair","displayName":"Auto Electrical Repair","basicCategory":"automotive_service","count":10433,"totalCount":10433},{"name":"brake_service_and_repair","displayName":"Brake Service and Repair","basicCategory":"automotive_service","count":7273,"totalCount":7273},{"name":"diy_auto_shop","displayName":"DIY Auto Shop","basicCategory":"automotive_service","count":24,"totalCount":24},{"name":"engine_repair_service","displayName":"Engine Repair Service","basicCategory":"automotive_service","count":7169,"totalCount":7169},{"name":"exhaust_and_muffler_repair","displayName":"Exhaust and Muffler Repair","basicCategory":"automotive_service","count":388,"totalCount":388},{"name":"hybrid_car_repair","displayName":"Hybrid Car Repair","basicCategory":"automotive_service","count":104,"totalCount":104},{"name":"motorsport_vehicle_repair","displayName":"Motorsport Vehicle Repair","basicCategory":"automotive_service","count":51,"totalCount":51},{"name":"tire_dealer_and_repair","displayName":"Tire Dealer and Repair","basicCategory":"automotive_service","count":126425,"totalCount":126425},{"name":"trailer_repair","displayName":"Trailer Repair","basicCategory":"automotive_service","count":856,"totalCount":856},{"name":"transmission_repair","displayName":"Transmission Repair","basicCategory":"automotive_service","count":4465,"totalCount":4465},{"name":"wheel_and_rim_repair","displayName":"Wheel and Rim Repair","basicCategory":"automotive_service","count":3364,"totalCount":3364}]},{"name":"automotive_wheel_polishing_service","displayName":"Automotive Wheel Polishing Service","basicCategory":"automotive_service","count":669,"totalCount":669},{"name":"car_buyer","displayName":"Car Buyer","basicCategory":"automotive_service","count":759,"totalCount":759},{"name":"car_inspection","displayName":"Car Inspection","basicCategory":"automotive_service","count":7627,"totalCount":7627},{"name":"car_stereo_installation","displayName":"Car Stereo Installation","basicCategory":"automotive_service","count":637,"totalCount":637},{"name":"car_wash","displayName":"Car Wash","basicCategory":"automotive_service","count":134643,"totalCount":134643},{"name":"emergency_roadside_service","displayName":"Emergency Roadside Service","basicCategory":"automotive_service","count":2448,"totalCount":2448},{"name":"emissions_inspection","displayName":"Emissions Inspection","basicCategory":"automotive_service","count":7343,"totalCount":7343},{"name":"oil_change_station","displayName":"Oil Change Station","basicCategory":"automotive_service","count":18697,"totalCount":18697},{"name":"tire_shop","displayName":"Tire Shop","basicCategory":"automotive_service","count":36220,"totalCount":36220},{"name":"towing_service","displayName":"Towing Service","basicCategory":"automotive_service","count":40611,"totalCount":40611},{"name":"truck_repair","displayName":"Truck Repair","basicCategory":"automotive_service","count":23698,"totalCount":23698},{"name":"vehicle_wrap","displayName":"Vehicle Wrap","basicCategory":"automotive_service","count":646,"totalCount":646}]},{"name":"boat_service","displayName":"Boat Service","basicCategory":"vehicle_service","count":15160,"totalCount":15160,"children":[{"name":"mooring_service","displayName":"Mooring Service","basicCategory":"vehicle_service","totalCount":0}]},{"name":"delegated_driver_service","displayName":"Delegated Driver Service","basicCategory":"vehicle_service","totalCount":0},{"name":"motorcycle_service","displayName":"Motorcycle Service","basicCategory":"vehicle_service","totalCount":100304,"children":[{"name":"motorcycle_repair","displayName":"Motorcycle Repair","basicCategory":"vehicle_service","count":100304,"totalCount":100304}]},{"name":"recreation_vehicle_service","displayName":"Recreation Vehicle Service","basicCategory":"vehicle_service","totalCount":5441,"children":[{"name":"recreation_vehicle_repair","displayName":"Recreation Vehicle Repair","basicCategory":"vehicle_service","count":5441,"totalCount":5441}]},{"name":"roadside_assistance","displayName":"Roadside Assistance","basicCategory":"vehicle_service","count":1392,"totalCount":2728,"children":[{"name":"mobile_dent_repair","displayName":"Mobile Dent Repair","basicCategory":"vehicle_service","count":1336,"totalCount":1336}]}]},{"name":"water_transport_facility_or_service","displayName":"Water Transport Facility or Service","isBasic":true,"totalCount":1230,"children":[{"name":"ferry_service","displayName":"Ferry Service","isBasic":true,"count":1228,"totalCount":1228},{"name":"water_taxi_service","displayName":"Water Taxi Service","isBasic":true,"count":2,"totalCount":2}]}]}]} diff --git a/static/taxonomy/2026-09-23.0/taxonomy_to_legacy_categories.csv b/static/taxonomy/2026-09-23.0/taxonomy_to_legacy_categories.csv new file mode 100644 index 000000000..bd1cdcf42 --- /dev/null +++ b/static/taxonomy/2026-09-23.0/taxonomy_to_legacy_categories.csv @@ -0,0 +1,2118 @@ +legacy_primary_category,taxonomy_primary,taxonomy_hierarchy,taxonomy_display_name +3d_printing_service,3d_printing_service,services_and_business > printing_service > 3d_printing_service,3d Printing Service +abortion_clinic,abortion_clinic,health_care > specialized_medical_facility > abortion_clinic,Abortion Clinic +abrasives_supplier,abrasives_supplier,services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,Abrasives Supplier +abuse_and_addiction_treatment,abuse_and_addiction_treatment_center,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center +academic_bookstore,academic_bookstore,shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,Academic Bookstore +acai_bowls,acai_bowls,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,Acai Bowls +accommodation,lodging,lodging,Lodging +accountant,accountant,services_and_business > financial_service > accountant,Accountant +acne_treatment,acne_treatment,lifestyle_services > personal_or_beauty_service > acne_treatment,Acne Treatment +acoustical_consultant,acoustical_consultant,services_and_business > technical_service > acoustical_consultant,Acoustical Consultant +active_life,sports_and_recreation,sports_and_recreation,Sports and Recreation +acupuncture,acupuncture,health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,Acupuncture +addiction_rehabilitation_center,addiction_rehabilitation_center,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,Addiction Rehabilitation Center +adoption_services,adoption_service,services_and_business > family_service > adoption_service,Adoption Service +adult_education,adult_education_center,education > place_of_learning > adult_education_center,Adult Education Center +adult_entertainment,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,Adult Entertainment Venue +adult_store,adult_store,shopping > specialty_store > adult_store,Adult Store +adventure_sports_center,adventure_sports_center,sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,Adventure Sports Center +advertising_agency,advertising_agency,services_and_business > professional_service > advertising_agency,Advertising Agency +aerial_fitness_center,aerial_fitness_center,sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,Aerial Fitness Center +aerial_tours,aerial_tour,travel_and_transportation > travel_service > tour_operator > aerial_tour,Aerial Tour +aesthetician,aesthetic_medicine,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,Aesthetic Medicine +afghan_restaurant,afghani_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,Afghani Restaurant +african_restaurant,african_restaurant,food_and_drink > restaurant > african_restaurant,African Restaurant +after_school_program,after_school_program,education > educational_service > after_school_program,After School Program +aggregate_supplier,aggregate_supplier,services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,Aggregate Supplier +agricultural_cooperatives,agricultural_cooperative,services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,Agricultural Cooperative +agricultural_engineering_service,agricultural_service,services_and_business > agricultural_service,Agricultural Service +agricultural_production,b2b_agriculture_service,services_and_business > b2b_service > b2b_agriculture_service,B2B Agriculture Service +agricultural_seed_store,agricultural_seed_store,shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,Agricultural Seed Store +agricultural_service,agricultural_service,services_and_business > agricultural_service,Agricultural Service +agriculture,agriculture,services_and_business > b2b_service > b2b_agriculture_service > agriculture,Agriculture +agriculture_association,agriculture_association,services_and_business > agricultural_service > agriculture_association,Agriculture Association +agriturismo,agritourism,travel_and_transportation > travel_service > agritourism,Agritourism +air_duct_cleaning_service,air_duct_cleaning_service,services_and_business > home_service > air_duct_cleaning_service,Air Duct Cleaning Service +aircraft_dealer,aircraft_dealer,shopping > vehicle_dealer > aircraft_dealer,Aircraft Dealer +aircraft_manufacturer,aircraft_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,Aircraft Manufacturer +aircraft_parts_and_supplies,aircraft_parts_and_supplies,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies,Aircraft Parts and Supplies +aircraft_repair,aircraft_service,travel_and_transportation > vehicle_service > aircraft_service,Aircraft Service +airline,airline,travel_and_transportation > air_transport_facility_or_service > airline,Airline +airline_ticket_agency,airline_ticket_agency,travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,Airline Ticket Agency +airlines,airline,travel_and_transportation > air_transport_facility_or_service > airline,Airline +airport,airport,travel_and_transportation > air_transport_facility_or_service > airport,Airport +airport_lounge,airport_lounge,food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,Airport Lounge +airport_shuttles,airport_shuttle,travel_and_transportation > air_transport_facility_or_service > airport_shuttle,Airport Shuttle +airport_terminal,airport_terminal,travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,Airport Terminal +airsoft_fields,airsoft_field,sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,Airsoft Field +alcohol_and_drug_treatment_center,alcohol_and_drug_treatment_center,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center > alcohol_and_drug_treatment_center,Alcohol and Drug Treatment Center +alcohol_and_drug_treatment_centers,alcohol_and_drug_treatment_center,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center > alcohol_and_drug_treatment_center,Alcohol and Drug Treatment Center +allergist,allergy_and_immunology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,Allergy and Immunology +altering_and_remodeling_contractor,altering_and_remodeling_contractor,services_and_business > home_service > contractor > altering_and_remodeling_contractor,Altering and Remodeling Contractor +alternative_medicine,complementary_and_alternative_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,Complementary and Alternative Medicine +aluminum_supplier,aluminum_supplier,services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,Aluminum Supplier +amateur_sports_league,amateur_sport_league,sports_and_recreation > sport_league > amateur_sport_league,Amateur Sport League +amateur_sports_team,amateur_sport_team,sports_and_recreation > sport_team > amateur_sport_team,Amateur Sport Team +ambulance_and_ems_services,ambulance_or_ems_service,health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,Ambulance or EMS Service +american_football_field,american_football_field,sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,American Football Field +american_restaurant,american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant,American Restaurant +amusement_park,amusement_park,arts_and_entertainment > amusement_attraction > amusement_park,Amusement Park +anesthesiologist,anesthesiology,health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,Anesthesiology +anglican_church,anglican_or_episcopal_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anglican_or_episcopal_place_of_worship,Anglican or Episcopal Place of Worship +animal_assisted_therapy,animal_assisted_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,Animal Assisted Therapy +animal_hospital,animal_hospital,lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,Animal Hospital +animal_physical_therapy,animal_physical_therapy,lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,Animal Physical Therapy +animal_rescue_service,animal_rescue_service,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_rescue_service,Animal Rescue Service +animal_shelter,animal_shelter,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,Animal Shelter +animation_studio,animation_studio,services_and_business > media_service > media_news_company > animation_studio,Animation Studio +antenna_service,antenna_service,services_and_business > home_service > antenna_service,Antenna Service +antique_store,antique_store,shopping > second_hand_store > antique_store,Antique Store +apartment_agent,apartment_agent,services_and_business > real_estate_service > real_estate_agent > apartment_agent,Apartment Agent +apartments,apartment,services_and_business > housing_or_property_service > apartment,Apartment +apiaries_and_beekeepers,apiary_beekeeper,services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,Apiary Beekeeper +appellate_practice_lawyers,appellate_practice_lawyer,services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,Appellate Practice Lawyer +appliance_manufacturer,appliance_manufacturer,services_and_business > b2b_service > manufacturer > appliance_manufacturer,Appliance Manufacturer +appliance_repair_service,appliance_repair_service,services_and_business > home_service > appliance_repair_service,Appliance Repair Service +appliance_store,appliance_store,shopping > specialty_store > hardware_home_and_garden_store > appliance_store,Appliance Store +appraisal_services,appraisal_service,services_and_business > financial_service > appraisal_service,Appraisal Service +aquarium,aquarium,arts_and_entertainment > animal_attraction > aquarium,Aquarium +aquarium_services,aquarium_service,lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,Aquarium Service +aquatic_pet_store,aquatic_pet_store,shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,Aquatic Pet Store +arabian_restaurant,arabian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,Arabian Restaurant +arcade,arcade,arts_and_entertainment > gaming_venue > arcade,Arcade +archaeological_services,archaeological_service,education > educational_service > archaeological_service,Archaeological Service +archery_range,archery_range,sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,Archery Range +archery_shop,archery_store,shopping > specialty_store > sporting_goods_store > archery_store,Archery Store +architect,architect,services_and_business > design_service > architect,Architect +architectural_designer,architectural_designer,services_and_business > design_service > architectural_designer,Architectural Designer +architectural_tours,architectural_tour,travel_and_transportation > travel_service > tour_operator > architectural_tour,Architectural Tour +architecture,historic_site,cultural_and_historic > historic_site,Historic Site +architecture_schools,architecture_school,education > place_of_learning > college_university > architecture_school,Architecture School +argentine_restaurant,argentine_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,Argentine Restaurant +armed_forces_branch,military_site,community_and_government > military_site,Military Site +armenian_restaurant,armenian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,Armenian Restaurant +army_and_navy_store,army_and_navy_store,shopping > specialty_store > tactical_supply_store > army_and_navy_store,Army and Navy Store +aromatherapy,aromatherapy,health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,Aromatherapy +art_gallery,art_gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,Art Gallery +art_museum,art_museum,arts_and_entertainment > museum > art_museum,Art Museum +art_restoration,art_restoration_service,services_and_business > media_service > art_restoration_service,Art Restoration Service +art_restoration_service,art_restoration_service,services_and_business > media_service > art_restoration_service,Art Restoration Service +art_school,art_school,education > place_of_learning > specialty_school > art_school,Art School +art_space_rental,art_space_rental,services_and_business > rental_service > art_space_rental,Art Space Rental +art_supply_store,art_supply_store,shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,Art Supply Store +art_tours,art_tour,travel_and_transportation > travel_service > tour_operator > art_tour,Art Tour +artificial_turf,artificial_turf,services_and_business > home_service > artificial_turf,Artificial Turf +arts_and_crafts,arts_crafts_and_hobby_store,shopping > specialty_store > arts_crafts_and_hobby_store,Arts Crafts and Hobby Store +arts_and_entertainment,arts_and_entertainment,arts_and_entertainment,Arts and Entertainment +asian_art_museum,asian_art_museum,arts_and_entertainment > museum > art_museum > asian_art_museum,Asian Art Museum +asian_fusion_restaurant,asian_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,Asian Fusion Restaurant +asian_grocery_store,asian_grocery_store,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,Asian Grocery Store +asian_restaurant,asian_restaurant,food_and_drink > restaurant > asian_restaurant,Asian Restaurant +assisted_living_facility,assisted_living_facility,services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,Assisted Living Facility +astrologer,astrological_advising,arts_and_entertainment > spiritual_advising > astrological_advising,Astrological Advising +atelier,atelier,shopping > specialty_store > arts_crafts_and_hobby_store > atelier,Atelier +atms,atm,services_and_business > financial_service > atm,ATM +attraction_farm,attraction_farm,arts_and_entertainment > rural_attraction > attraction_farm,Attraction Farm +attractions_and_activities,arts_and_entertainment,arts_and_entertainment,Arts and Entertainment +atv_recreation_park,atv_recreation_park,sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,ATV Recreation Park +atv_rentals_and_tours,atv_rental_tour,sports_and_recreation > recreational_equipment_rental > atv_rental_tour,ATV Rental Tour +auction_house,auction_house,shopping > specialty_store > auction_house,Auction House +audio_visual_equipment_store,audio_visual_equipment_store,shopping > specialty_store > electronics_store > audio_visual_equipment_store,Audio Visual Equipment Store +audio_visual_production_and_design,b2b_audio_visual_production,services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,B2B Audio Visual Production +audiologist,audiology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,Audiology +audiovisual_equipment_rental,audiovisual_equipment_rental,services_and_business > event_or_party_service > audiovisual_equipment_rental,Audiovisual Equipment Rental +auditorium,auditorium,arts_and_entertainment > event_venue > auditorium,Auditorium +australian_restaurant,australian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,Australian Restaurant +austrian_restaurant,austrian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,Austrian Restaurant +auto_body_shop,auto_body_shop,travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,Auto Body Shop +auto_company,auto_company,services_and_business > corporate_or_business_office > auto_company,Auto Company +auto_customization,auto_customization,travel_and_transportation > vehicle_service > automotive_service > auto_customization,Auto Customization +auto_detailing,auto_detailing,travel_and_transportation > vehicle_service > automotive_service > auto_detailing,Auto Detailing +auto_electrical_repair,auto_electrical_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,Auto Electrical Repair +auto_glass_service,auto_glass_service,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,Auto Glass Service +auto_insurance,auto_insurance,services_and_business > financial_service > insurance_agency > auto_insurance,Auto Insurance +auto_loan_provider,auto_loan_provider,services_and_business > financial_service > installment_loans > auto_loan_provider,Auto Loan Provider +auto_manufacturers_and_distributors,auto_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,Auto Manufacturer +auto_parts_and_supply_store,auto_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,Auto Parts Store +auto_restoration_services,auto_restoration_service,travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,Auto Restoration Service +auto_security,auto_security,travel_and_transportation > vehicle_service > automotive_service > auto_security,Auto Security +auto_upholstery,auto_upholstery,travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,Auto Upholstery +automation_services,automation_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,Automation Service +automobile_leasing,auto_leasing,shopping > vehicle_dealer > auto_dealer > auto_leasing,Auto Leasing +automobile_registration_service,automobile_registration_service,travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,Automobile Registration Service +automotive,automotive_service,travel_and_transportation > vehicle_service > automotive_service,Automotive Service +automotive_consultant,automotive_consultant,travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,Automotive Consultant +automotive_dealer,vehicle_dealer,shopping > vehicle_dealer,Vehicle Dealer +automotive_parts_and_accessories,auto_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,Auto Parts Store +automotive_repair,automotive_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair,Automotive Repair +automotive_services_and_repair,automotive_service,travel_and_transportation > vehicle_service > automotive_service,Automotive Service +automotive_storage_facility,automotive_storage_facility,services_and_business > storage_facility > automotive_storage_facility,Automotive Storage Facility +automotive_wheel_polishing_service,automotive_wheel_polishing_service,travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,Automotive Wheel Polishing Service +aviation_museum,aviation_museum,arts_and_entertainment > museum > aviation_museum,Aviation Museum +avionics_shop,avionics_shop,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,Avionics Shop +awning_supplier,awning_supplier,services_and_business > b2b_service > supplier_or_distributor > awning_supplier,Awning Supplier +axe_throwing,axe_throwing,sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,Axe Throwing +ayurveda,ayurveda,health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,Ayurveda +azerbaijani_restaurant,azerbaijani_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,Azerbaijani Restaurant +b2b_agriculture_and_food,b2b_agriculture_service,services_and_business > b2b_service > b2b_agriculture_service,B2B Agriculture Service +b2b_apparel,apparel_manufacturer,services_and_business > b2b_service > manufacturer > apparel_manufacturer,Apparel Manufacturer +b2b_autos_and_vehicles,vehicle_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer,Vehicle Manufacturer +b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management +b2b_dairies,b2b_dairy,services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,B2B Dairy +b2b_electronic_equipment,electronic_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,Electronic Equipment Supplier +b2b_energy_and_mining,b2b_energy_and_utility_service,services_and_business > b2b_service > b2b_energy_and_utility_service,B2B Energy and Utility Service +b2b_equipment_maintenance_and_repair,b2b_equipment_maintenance_and_repair,services_and_business > b2b_service > b2b_industrial_and_machine_service > b2b_equipment_maintenance_and_repair,B2B Equipment Maintenance and Repair +b2b_farming,b2b_farming,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,B2B Farming +b2b_farms,b2b_farm,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,B2B Farm +b2b_food_products,b2b_food_products,services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,B2B Food Products +b2b_forklift_dealers,forklift_dealer,shopping > vehicle_dealer > forklift_dealer,Forklift Dealer +b2b_furniture_and_housewares,furniture_manufacturer,services_and_business > b2b_service > manufacturer > furniture_manufacturer,Furniture Manufacturer +b2b_hardware,hardware_and_fastener_manufacturer,services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer +b2b_jewelers,jewelry_and_watches_manufacturer,services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer +b2b_machinery_and_tools,machinery_and_tool_manufacturer,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,Machinery and Tool Manufacturer +b2b_medical_support_services,b2b_medical_support_service,services_and_business > b2b_service > b2b_medical_support_service,B2B Medical Support Service +b2b_oil_and_gas_extraction_and_services,b2b_oil_and_gas_extraction,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_extraction,B2B Oil and Gas Extraction +b2b_rubber_and_plastics,rubber_and_plastics_manufacturer,services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer +b2b_science_and_technology,b2b_science_and_technology_service,services_and_business > b2b_service > b2b_science_and_technology_service,B2B Science and Technology Service +b2b_scientific_equipment,b2b_scientific_equipment,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,B2B Scientific Equipment +b2b_sporting_and_recreation_goods,sporting_goods_manufacturer,services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,Sporting Goods Manufacturer +b2b_storage_and_warehouses,b2b_storage,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,B2B Storage +b2b_textiles,textile_manufacturer,services_and_business > b2b_service > manufacturer > textile_manufacturer,Textile Manufacturer +b2b_tires,tires_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,Tires Manufacturer +b2b_tractor_dealers,tractor_dealer,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,Tractor Dealer +b2b_truck_equipment_parts_and_accessories,truck_parts_and_accessories,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > truck_parts_and_accessories,Truck Parts and Accessories +baby_gear_and_furniture,baby_gear_and_nursery_store,shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,Baby Gear and Nursery Store +back_shop,shopping,shopping,Shopping +backflow_services,backflow_service,services_and_business > home_service > plumbing > backflow_service,Backflow Service +background_check_services,b2b_background_check_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,B2B Background Check Service +backpacking_area,backpacking_area,sports_and_recreation > recreational_trail_or_path > backpacking_area,Backpacking Area +badminton_court,badminton_court,sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,Badminton Court +bagel_restaurant,bagel_shop,food_and_drink > casual_eatery > bagel_shop,Bagel Shop +bagel_shop,bagel_shop,food_and_drink > casual_eatery > bagel_shop,Bagel Shop +bags_luggage_company,bags_luggage_company,services_and_business > corporate_or_business_office > bags_luggage_company,Bags Luggage Company +baguettes,baguette_shop,food_and_drink > casual_eatery > bakery > baguette_shop,Baguette Shop +bail_bonds_service,bail_bonds_service,services_and_business > legal_service > bail_bonds_service,Bail Bonds Service +bakery,bakery,food_and_drink > casual_eatery > bakery,Bakery +balloon_ports,balloon_port,travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,Balloon Port +balloon_services,balloon_service,services_and_business > event_or_party_service > balloon_service,Balloon Service +bangladeshi_restaurant,bangladeshi_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,Bangladeshi Restaurant +bank_credit_union,bank_or_credit_union,services_and_business > financial_service > bank_or_credit_union,Bank or Credit Union +bank_equipment_service,bank_equipment_service,services_and_business > professional_service > bank_equipment_service,Bank Equipment Service +bankruptcy_law,bankruptcy_law,services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,Bankruptcy Law +banks,bank,services_and_business > financial_service > bank_or_credit_union > bank,Bank +baozi_restaurant,baozi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,Baozi Restaurant +baptist_church,baptist_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > baptist_place_of_worship,Baptist Place of Worship +bar,bar,food_and_drink > alcoholic_beverage_venue > bar,Bar +bar_and_grill_restaurant,bar_and_grill_restaurant,food_and_drink > restaurant > bar_and_grill_restaurant,Bar and Grill Restaurant +bar_crawl,bar_crawl,arts_and_entertainment > nightlife_venue > bar_crawl,Bar Crawl +barbecue_restaurant,barbecue_restaurant,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,Barbecue Restaurant +barber,barber,lifestyle_services > personal_or_beauty_service > barber,Barber +barre_classes,barre_class,sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,Barre Class +bartender,bartender,services_and_business > event_or_party_service > bartender,Bartender +bartending_school,bartending_school,education > place_of_learning > specialty_school > bartending_school,Bartending School +baseball_field,baseball_field,sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,Baseball Field +baseball_stadium,baseball_stadium,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,Baseball Stadium +basketball_court,basketball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,Basketball Court +basketball_stadium,basketball_stadium,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,Basketball Stadium +basque_restaurant,basque_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,Basque Restaurant +bathroom_fixture_stores,bathroom_fixture_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,Bathroom Fixture Store +bathroom_remodeling,bathroom_remodeling,services_and_business > home_service > bathroom_remodeling,Bathroom Remodeling +bathtub_and_sink_repairs,bathtub_and_sink_repair,services_and_business > home_service > bathtub_and_sink_repair,Bathtub and Sink Repair +battery_inverter_supplier,battery_inverter_supplier,services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,Battery Inverter Supplier +battery_store,battery_store,shopping > specialty_store > electronics_store > battery_store,Battery Store +batting_cage,batting_cage,sports_and_recreation > sport_or_fitness_facility > batting_cage,Batting Cage +bazaars,bazaar,shopping > market > bazaar,Bazaar +beach,beach,geographic_entities > land_feature > beach,Beach +beach_bar,beach_bar,food_and_drink > alcoholic_beverage_venue > bar > beach_bar,Beach Bar +beach_combing_area,beach_combing_area,geographic_entities > land_feature > beach > beach_combing_area,Beach Combing Area +beach_equipment_rentals,beach_equipment_rental,sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,Beach Equipment Rental +beach_resort,beach_resort,lodging > resort > beach_resort,Beach Resort +beach_volleyball_club,beach_volleyball_club,sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,Beach Volleyball Club +beach_volleyball_court,beach_volleyball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,Beach Volleyball Court +bearing_supplier,bearing_supplier,services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,Bearing Supplier +beauty_and_spa,personal_or_beauty_service,lifestyle_services > personal_or_beauty_service,Personal or Beauty Service +beauty_product_supplier,beauty_product_supplier,services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,Beauty Product Supplier +beauty_salon,beauty_salon,lifestyle_services > personal_or_beauty_service > beauty_salon,Beauty Salon +bed_and_breakfast,bed_and_breakfast,lodging > bed_and_breakfast,Bed and Breakfast +bedding_and_bath_stores,bedding_and_bath_store,shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,Bedding and Bath Store +beer_bar,beer_bar,food_and_drink > alcoholic_beverage_venue > bar > beer_bar,Beer Bar +beer_garden,beer_garden,food_and_drink > alcoholic_beverage_venue > beer_garden,Beer Garden +beer_tours,beer_tour,travel_and_transportation > travel_service > tour_operator > beer_tour,Beer Tour +beer_wine_and_spirits,beer_wine_spirits_store,shopping > food_and_beverage_store > beer_wine_spirits_store,Beer Wine Spirits Store +behavior_analyst,behavior_analysis,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > behavior_analysis,Behavior Analysis +belarusian_restaurant,belarusian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,Belarusian Restaurant +belgian_restaurant,belgian_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,Belgian Restaurant +belizean_restaurant,belizean_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,Belizean Restaurant +betting_center,betting_center,arts_and_entertainment > gaming_venue > betting_center,Betting Center +beverage_store,non_alcoholic_beverage_venue,food_and_drink > non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue +beverage_supplier,beverage_supplier,services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,Beverage Supplier +bicycle_path,bike_path,sports_and_recreation > recreational_trail_or_path > bike_path,Bike Path +bicycle_sharing_location,bike_sharing_location,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,Bike Sharing Location +bicycle_shop,bike_store,shopping > specialty_store > sporting_goods_store > bike_store,Bike Store +bike_parking,bike_parking,travel_and_transportation > parking > bike_parking,Bike Parking +bike_rentals,bike_rental,sports_and_recreation > recreational_equipment_rental > bike_rental,Bike Rental +bike_repair_maintenance,bike_repair_maintenance,services_and_business > technical_service > bike_repair_maintenance,Bike Repair Maintenance +bike_sharing,bike_sharing_location,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,Bike Sharing Location +bike_tours,bike_tour,travel_and_transportation > travel_service > tour_operator > bike_tour,Bike Tour +billing_services,billing_service,services_and_business > professional_service > billing_service,Billing Service +bingo_hall,bingo_hall,arts_and_entertainment > gaming_venue > bingo_hall,Bingo Hall +biotechnology_company,biotechnology_company,services_and_business > corporate_or_business_office > biotechnology_company,Biotechnology Company +bird_shop,bird_store,shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,Bird Store +bistro,bistro,food_and_drink > casual_eatery > bistro,Bistro +blacksmiths,blacksmith,services_and_business > building_or_construction_service > blacksmith,Blacksmith +blood_and_plasma_donation_center,blood_and_plasma_donation_center,health_care > medical_service > blood_and_plasma_donation_center,Blood and Plasma Donation Center +blow_dry_blow_out_service,blow_dry_blow_out_service,lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,Blow Dry Blow Out Service +blueprinters,blueprinter,services_and_business > building_or_construction_service > blueprinter,Blueprinter +board_of_education_offices,board_of_education_office,education > education_office > board_of_education_office,Board of Education Office +boat_builder,boat_and_ship_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,Boat and Ship Manufacturer +boat_charter,boat_charter,services_and_business > event_or_party_service > boat_charter,Boat Charter +boat_dealer,boat_dealer,shopping > vehicle_dealer > boat_dealer,Boat Dealer +boat_parts_and_accessories,boat_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,Boat Parts Store +boat_parts_and_supply_store,boat_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,Boat Parts Store +boat_rental_and_training,boat_rental_and_training,sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,Boat Rental and Training +boat_service_and_repair,boat_service,travel_and_transportation > vehicle_service > boat_service,Boat Service +boat_storage_facility,boat_storage_facility,services_and_business > storage_facility > boat_storage_facility,Boat Storage Facility +boat_tours,boat_tour,travel_and_transportation > travel_service > tour_operator > boat_tour,Boat Tour +boating_places,boating_place,sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,Boating Place +bobsledding_field,bobsledding_field,sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,Bobsledding Field +bocce_ball_court,bocce_ball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,Bocce Ball Court +body_contouring,body_contouring,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,Body Contouring +bolivian_restaurant,bolivian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,Bolivian Restaurant +book_magazine_distribution,book_magazine_distribution,services_and_business > media_service > media_news_company > book_magazine_distribution,Book Magazine Distribution +bookbinding,bookbinding,services_and_business > media_service > bookbinding,Bookbinding +bookkeeper,bookkeeper,services_and_business > professional_service > bookkeeper,Bookkeeper +bookmakers,betting_center,arts_and_entertainment > gaming_venue > betting_center,Betting Center +books_mags_music_and_video,books_music_and_video_store,shopping > specialty_store > books_music_and_video_store,Books Music and Video Store +bookstore,bookstore,shopping > specialty_store > books_music_and_video_store > bookstore,Bookstore +boot_camp,boot_camp,sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,Boot Camp +botanical_garden,botanical_garden,geographic_entities > built_feature > garden > botanical_garden,Botanical Garden +bottled_water_company,bottled_water_company,services_and_business > corporate_or_business_office > bottled_water_company,Bottled Water Company +boudoir_photography,boudoir_photography_service,services_and_business > media_service > photography_service > boudoir_photography_service,Boudoir Photography Service +bounce_house_rental,bounce_house_rental,services_and_business > event_or_party_service > bounce_house_rental,Bounce House Rental +boutique,fashion_boutique,shopping > fashion_and_apparel_store > fashion_boutique,Fashion Boutique +bowling_alley,bowling_alley,sports_and_recreation > sport_or_fitness_facility > bowling_alley,Bowling Alley +box_lunch_supplier,box_lunch_supplier,services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,Box Lunch Supplier +boxing_class,boxing_class,sports_and_recreation > sport_or_fitness_facility > boxing_class,Boxing Class +boxing_club,boxing_gym,sports_and_recreation > sport_or_fitness_facility > boxing_gym,Boxing Gym +boxing_gym,boxing_gym,sports_and_recreation > sport_or_fitness_facility > boxing_gym,Boxing Gym +brake_service_and_repair,brake_service_and_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,Brake Service and Repair +brasserie,brasserie,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,Brasserie +brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club +brazilian_restaurant,brazilian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,Brazilian Restaurant +breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant +brewery,brewery,food_and_drink > alcoholic_beverage_venue > brewery,Brewery +brewing_supply_store,brewing_supply_store,shopping > food_and_beverage_store > brewing_supply_store,Brewing Supply Store +bridal_shop,bridal_shop,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,Bridal Shop +bridge,bridge,geographic_entities > built_feature > bridge,Bridge +british_restaurant,british_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,British Restaurant +broadcasting_media_production,broadcasting_media_production,services_and_business > media_service > media_news_company > broadcasting_media_production,Broadcasting Media Production +brokers,broker,services_and_business > financial_service > broker,Broker +bubble_soccer_field,soccer_field,sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,Soccer Field +bubble_tea,bubble_tea_shop,food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,Bubble Tea Shop +buddhist_temple,buddhist_place_of_worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,Buddhist Place of Worship +buffet_restaurant,buffet_restaurant,food_and_drink > restaurant > buffet_restaurant,Buffet Restaurant +builders,builder,services_and_business > real_estate_service > builder,Builder +building_contractor,building_contractor,services_and_business > home_service > contractor > building_contractor,Building Contractor +building_supply_store,building_supply_store,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,Building Supply Store +bulgarian_restaurant,bulgarian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,Bulgarian Restaurant +bulk_billing,medical_billing,health_care > medical_service > medical_billing,Medical Billing +bungee_jumping_center,bungee_jumping_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,Bungee Jumping Center +burger_restaurant,burger_restaurant,food_and_drink > restaurant > meat_restaurant > burger_restaurant,Burger Restaurant +burmese_restaurant,burmese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,Burmese Restaurant +bus_rentals,bus_rental,services_and_business > rental_service > bus_rental,Bus Rental +bus_service,public_transit_facility_or_service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,Public Transit Facility or Service +bus_station,bus_station,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,Bus Station +bus_ticket_agency,bus_ticket_agency,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,Bus Ticket Agency +bus_tours,bus_tour,travel_and_transportation > travel_service > tour_operator > bus_tour,Bus Tour +business,corporate_or_business_office,services_and_business > corporate_or_business_office,Corporate or Business Office +business_advertising,b2b_advertising_and_marketing_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service,B2B Advertising and Marketing Service +business_banking_service,business_banking_service,services_and_business > financial_service > business_banking_service,Business Banking Service +business_brokers,business_broker,services_and_business > financial_service > broker > business_broker,Business Broker +business_consulting,business_consulting,services_and_business > professional_service > business_consulting,Business Consulting +business_equipment_and_supply,supplier_or_distributor,services_and_business > b2b_service > supplier_or_distributor,Supplier or Distributor +business_financing,business_financing,services_and_business > financial_service > business_financing,Business Financing +business_law,business_law,services_and_business > legal_service > attorney_or_law_firm > business_law,Business Law +business_management_services,b2b_business_management_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,B2B Business Management Service +business_manufacturing_and_supply,manufacturer,services_and_business > b2b_service > manufacturer,Manufacturer +business_office_supplies_and_stationery,business_office_supplies_and_stationery,services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,Business Office Supplies and Stationery +business_records_storage_and_management,b2b_records_storage_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,B2B Records Storage Service +business_schools,business_school,education > place_of_learning > college_university > business_school,Business School +business_signage,b2b_signage_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_signage_service,B2B Signage Service +business_storage_and_transportation,b2b_transportation_and_storage_service,services_and_business > b2b_service > b2b_transportation_and_storage_service,B2B Transportation and Storage Service +business_to_business,b2b_service,services_and_business > b2b_service,B2B Service +business_to_business_services,b2b_service,services_and_business > b2b_service,B2B Service +butcher_shop,butcher_shop,shopping > food_and_beverage_store > butcher_shop,Butcher Shop +cabaret,cabaret,arts_and_entertainment > performing_arts_venue > cabaret,Cabaret +cabin,cabin,lodging > cabin,Cabin +cabinet_sales_service,cabinet_sales_service,services_and_business > home_service > cabinet_sales_service,Cabinet Sales Service +cable_car_service,cable_car_service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,Cable Car Service +cafe,cafe,food_and_drink > casual_eatery > cafe,Cafe +cafeteria,cafeteria,food_and_drink > restaurant > cafeteria,Cafeteria +cajun_and_creole_restaurant,cajun_and_creole_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,Cajun and Creole Restaurant +calligraphy,calligraphy,services_and_business > media_service > calligraphy,Calligraphy +cambodian_restaurant,cambodian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,Cambodian Restaurant +campground,campground,lodging > campground,Campground +campus_building,campus_building,education > educational_facility > campus_building,Campus Building +canadian_restaurant,canadian_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,Canadian Restaurant +canal,canal,geographic_entities > water_feature > canal,Canal +cancer_treatment_center,cancer_treatment_center,health_care > specialized_medical_facility > cancer_treatment_center,Cancer Treatment Center +candle_store,candle_store,shopping > specialty_store > hardware_home_and_garden_store > candle_store,Candle Store +candy_store,candy_store,food_and_drink > casual_eatery > candy_store,Candy Store +cannabis_clinic,cannabis_clinic,health_care > medical_service > medical_cannabis > cannabis_clinic,Cannabis Clinic +cannabis_collective,cannabis_collective,health_care > medical_service > medical_cannabis > cannabis_collective,Cannabis Collective +cannabis_dispensary,cannabis_dispensary,shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,Cannabis Dispensary +cannabis_tour,cannabis_tour,travel_and_transportation > travel_service > tour_operator > cannabis_tour,Cannabis Tour +canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,Canoe and Kayak Hire Service +canteen,canteen,food_and_drink > casual_eatery > canteen,Canteen +canyon,canyon,geographic_entities > land_feature > canyon,Canyon +car_auction,car_auction,shopping > specialty_store > auction_house > car_auction,Car Auction +car_broker,auto_broker,shopping > vehicle_dealer > auto_dealer > auto_broker,Auto Broker +car_buyer,car_buyer,travel_and_transportation > vehicle_service > automotive_service > car_buyer,Car Buyer +car_dealer,auto_dealer,shopping > vehicle_dealer > auto_dealer,Auto Dealer +car_inspection,car_inspection,travel_and_transportation > vehicle_service > automotive_service > car_inspection,Car Inspection +car_rental_agency,car_rental_service,services_and_business > rental_service > vehicle_rental_service > car_rental_service,Car Rental Service +car_sharing,car_sharing,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,Car Sharing +car_stereo_installation,car_stereo_installation,travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,Car Stereo Installation +car_stereo_store,car_stereo_store,shopping > specialty_store > electronics_store > car_stereo_store,Car Stereo Store +car_wash,car_wash,travel_and_transportation > vehicle_service > automotive_service > car_wash,Car Wash +car_window_tinting,car_window_tinting,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,Car Window Tinting +cardio_classes,cardio_class,sports_and_recreation > sport_or_fitness_facility > cardio_class,Cardio Class +cardiologist,cardiology,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,Cardiology +cardiovascular_and_thoracic_surgeon,cardiothoracic_surgery,health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,Cardiothoracic Surgery +cards_and_stationery_store,cards_and_stationery_store,shopping > specialty_store > cards_and_stationery_store,Cards and Stationery Store +career_counseling,career_counseling,services_and_business > professional_service > career_counseling,Career Counseling +caribbean_restaurant,caribbean_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,Caribbean Restaurant +caricature,caricature,services_and_business > event_or_party_service > caricature,Caricature +carousel,carousel,arts_and_entertainment > amusement_attraction > carousel,Carousel +carpenter,carpenter,services_and_business > home_service > carpenter,Carpenter +carpet_cleaning,carpet_cleaning,services_and_business > home_service > carpet_cleaning,Carpet Cleaning +carpet_dyeing,carpet_dyeing,services_and_business > home_service > carpet_dyeing,Carpet Dyeing +carpet_installation,carpet_installation,services_and_business > home_service > carpet_installation,Carpet Installation +carpet_store,carpet_store,shopping > specialty_store > hardware_home_and_garden_store > carpet_store,Carpet Store +cartooning_museum,cartooning_museum,arts_and_entertainment > museum > art_museum > cartooning_museum,Cartooning Museum +casino,casino,arts_and_entertainment > gaming_venue > casino,Casino +casting_molding_and_machining,casting_molding_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,Casting Molding Service +castle,castle,cultural_and_historic > historic_site > castle,Castle +catalan_restaurant,catalan_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,Catalan Restaurant +caterer,caterer,services_and_business > event_or_party_service > caterer,Caterer +catholic_church,roman_catholic_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > roman_catholic_place_of_worship,Roman Catholic Place of Worship +cave,cave,geographic_entities > land_feature > cave,Cave +ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service +ceiling_service,ceiling_service,services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,Ceiling Service +cement_supplier,cement_supplier,services_and_business > b2b_service > supplier_or_distributor > cement_supplier,Cement Supplier +cemeteries,cemetery,cultural_and_historic > memorial_site > cemetery,Cemetery +central_government_office,government_office,community_and_government > government_office,Government Office +ceremonial_clothing,clothing_store,shopping > fashion_and_apparel_store > clothing_store,Clothing Store +certification_agency,certification_agency,services_and_business > professional_service > certification_agency,Certification Agency +challenge_courses_center,challenge_courses_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,Challenge Courses Center +chamber_of_handicraft,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,Arts and Crafts Space +chambers_of_commerce,chambers_of_commerce,community_and_government > government_office > chambers_of_commerce,Chambers of Commerce +champagne_bar,champagne_bar,food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,Champagne Bar +charity_organization,charity_organization,community_and_government > civic_organization > charity_organization,Charity Organization +charter_school,charter_school,education > place_of_learning > school > charter_school,Charter School +check_cashing_payday_loans,check_cashing_payday_loans,services_and_business > financial_service > check_cashing_payday_loans,Check Cashing Payday Loans +cheerleading,cheerleading,education > place_of_learning > specialty_school > cheerleading,Cheerleading +cheese_shop,cheese_shop,shopping > food_and_beverage_store > cheese_shop,Cheese Shop +cheese_tasting_classes,cheese_tasting_class,education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,Cheese Tasting Class +cheesesteak_restaurant,cheesesteak_restaurant,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,Cheesesteak Restaurant +chemical_plant,chemical_plant,services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,Chemical Plant +chicken_restaurant,chicken_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,Chicken Restaurant +chicken_wings_restaurant,chicken_wings_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,Chicken Wings Restaurant +child_care_and_day_care,child_care_and_day_care,services_and_business > family_service > child_care_and_day_care,Child Care and Day Care +child_protection_service,child_protection_service,community_and_government > social_or_community_service > child_protection_service,Child Protection Service +child_psychiatrist,child_psychiatry,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,Child Psychiatry +childbirth_education,childbirth_education,education > place_of_learning > specialty_school > childbirth_education,Childbirth Education +childproofing,childproofing,services_and_business > home_service > childproofing,Childproofing +children_hall,youth_organization,community_and_government > social_or_community_service > youth_organization,Youth Organization +childrens_clothing_store,childrens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,Children's Clothing Store +childrens_hospital,childrens_hospital,health_care > hospital > specialty_hospital > childrens_hospital,Children's Hospital +childrens_museum,childrens_museum,arts_and_entertainment > museum > childrens_museum,Children's Museum +chilean_restaurant,chilean_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,Chilean Restaurant +chimney_cake_shop,patisserie_cake_shop,shopping > food_and_beverage_store > patisserie_cake_shop,Patisserie Cake Shop +chimney_service,chimney_service,services_and_business > home_service > chimney_service,Chimney Service +chimney_sweep,chimney_sweep,services_and_business > home_service > chimney_service > chimney_sweep,Chimney Sweep +chinese_martial_arts_club,chinese_martial_arts_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,Chinese Martial Arts Club +chinese_restaurant,chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,Chinese Restaurant +chiropractor,chiropractic,health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,Chiropractic +chocolatier,chocolatier,food_and_drink > casual_eatery > candy_store > chocolatier,Chocolatier +choir,choir,arts_and_entertainment > performing_arts_venue > music_venue > choir,Choir +christmas_trees,christmas_tree_store,shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,Christmas Tree Store +church_cathedral,christian_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship,Christian Place of Worship +cidery,cidery,food_and_drink > alcoholic_beverage_venue > cidery,Cidery +cigar_bar,cigar_bar,food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,Cigar Bar +cinema,movie_theater,arts_and_entertainment > movie_theater,Movie Theater +circus,circus_venue,arts_and_entertainment > amusement_attraction > circus_venue,Circus Venue +circus_school,circus_school,education > place_of_learning > specialty_school > circus_school,Circus School +civic_center,civic_center,community_and_government > civic_organization > civic_center,Civic Center +civil_engineers,civil_engineer,services_and_business > building_or_construction_service > civil_engineer,Civil Engineer +civil_examinations_academy,civil_examinations_academy,education > place_of_learning > academy > civil_examinations_academy,Civil Examinations Academy +civil_rights_lawyers,civil_rights_lawyer,services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,Civil Rights Lawyer +civilization_museum,civilization_museum,arts_and_entertainment > museum > history_museum > civilization_museum,Civilization Museum +cleaning_products_supplier,cleaning_products_supplier,services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,Cleaning Products Supplier +cleaning_services,cleaning_service,services_and_business > professional_service > cleaning_service,Cleaning Service +cliff_jumping_center,cliff_jumping_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,Cliff Jumping Center +climbing_class,climbing_class,sports_and_recreation > sport_or_fitness_facility > climbing_class,Climbing Class +climbing_service,climbing_service,sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,Climbing Service +clinical_laboratories,b2b_clinical_lab,services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,B2B Clinical Lab +clock_repair_service,clock_repair_service,services_and_business > home_service > clock_repair_service,Clock Repair Service +closet_remodeling,closet_remodeling,services_and_business > home_service > closet_remodeling,Closet Remodeling +clothing_company,clothing_company,services_and_business > corporate_or_business_office > clothing_company,Clothing Company +clothing_rental,clothing_rental,services_and_business > rental_service > clothing_rental,Clothing Rental +clothing_store,clothing_store,shopping > fashion_and_apparel_store > clothing_store,Clothing Store +clown,clown,services_and_business > event_or_party_service > clown,Clown +club_crawl,club_crawl,arts_and_entertainment > nightlife_venue > club_crawl,Club Crawl +coach_bus,coach_bus,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,Coach Bus +coal_and_coke,b2b_coal_and_coke,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_coal_and_coke,B2B Coal and Coke +cocktail_bar,cocktail_bar,food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,Cocktail Bar +coffee_and_tea_supplies,coffee_and_tea_supplies,shopping > food_and_beverage_store > coffee_and_tea_supplies,Coffee and Tea Supplies +coffee_roastery,coffee_roastery,food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,Coffee Roastery +coffee_shop,coffee_shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,Coffee Shop +coin_dealers,coin_dealer,services_and_business > financial_service > coin_dealer,Coin Dealer +collection_agencies,collection_agency,services_and_business > financial_service > collection_agency,Collection Agency +college_counseling,college_counseling,education > educational_service > college_counseling,College Counseling +college_university,college_university,education > place_of_learning > college_university,College University +colombian_restaurant,colombian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,Colombian Restaurant +colonics,colonic_hydrotherapy,lifestyle_services > wellness_service > colonic_hydrotherapy,Colonic Hydrotherapy +comedy_club,comedy_club,arts_and_entertainment > performing_arts_venue > comedy_club,Comedy Club +comfort_food_restaurant,comfort_food_restaurant,food_and_drink > restaurant > comfort_food_restaurant,Comfort Food Restaurant +comic_books_store,comic_books_store,shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,Comic Books Store +commercial_industrial,commercial_industrial,services_and_business > b2b_service > commercial_industrial,Commercial Industrial +commercial_printer,commercial_printer,services_and_business > printing_service > commercial_printer,Commercial Printer +commercial_real_estate,commercial_real_estate,services_and_business > real_estate_service > commercial_real_estate,Commercial Real Estate +commercial_refrigeration,commercial_refrigeration,services_and_business > technical_service > commercial_refrigeration,Commercial Refrigeration +commercial_vehicle_dealer,commercial_vehicle_dealer,shopping > vehicle_dealer > commercial_vehicle_dealer,Commercial Vehicle Dealer +commissioned_artist,commissioned_artist,services_and_business > media_service > commissioned_artist,Commissioned Artist +community_book_boxes,community_book_box,services_and_business > home_service > community_book_box,Community Book Box +community_center,community_center,community_and_government > social_or_community_service > community_center,Community Center +community_gardens,community_garden,geographic_entities > built_feature > garden > community_garden,Community Garden +community_health_center,community_health_center,health_care > outpatient_care_facility > primary_care_or_general_clinic > community_health_center,Community Health Center +community_museum,community_museum,arts_and_entertainment > museum > history_museum > community_museum,Community Museum +community_services_non_profits,social_or_community_service,community_and_government > social_or_community_service,Social or Community Service +computer_coaching,computer_coaching,education > place_of_learning > specialty_school > computer_coaching,Computer Coaching +computer_hardware_company,computer_hardware_company,services_and_business > technical_service > computer_hardware_company,Computer Hardware Company +computer_museum,computer_museum,arts_and_entertainment > museum > science_museum > computer_museum,Computer Museum +computer_store,computer_store,shopping > specialty_store > electronics_store > computer_store,Computer Store +computer_wholesaler,computer_wholesaler,services_and_business > b2b_service > wholesaler > computer_wholesaler,Computer Wholesaler +concept_shop,shopping,shopping,Shopping +concierge_medicine,concierge_medicine,health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,Concierge Medicine +condominium,condominium,services_and_business > housing_or_property_service > condominium,Condominium +construction_management,construction_management,services_and_business > building_or_construction_service > construction_management,Construction Management +construction_services,building_or_construction_service,services_and_business > building_or_construction_service,Building or Construction Service +consultant_and_general_service,b2b_service,services_and_business > b2b_service,B2B Service +contemporary_art_museum,contemporary_art_museum,arts_and_entertainment > museum > art_museum > contemporary_art_museum,Contemporary Art Museum +contract_law,contract_law,services_and_business > legal_service > attorney_or_law_firm > contract_law,Contract Law +contractor,contractor,services_and_business > home_service > contractor,Contractor +convenience_store,convenience_store,shopping > convenience_store,Convenience Store +convents_and_monasteries,religious_organization,cultural_and_historic > religious_organization,Religious Organization +cooking_classes,cooking_classes,shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,Cooking Classes +cooking_school,cooking_school,education > place_of_learning > specialty_school > cooking_school,Cooking School +copywriting_service,copywriting_service,services_and_business > professional_service > copywriting_service,Copywriting Service +corporate_entertainment_services,corporate_entertainment_service,services_and_business > media_service > corporate_entertainment_service,Corporate Entertainment Service +corporate_gift_supplier,corporate_gift_supplier,services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,Corporate Gift Supplier +corporate_office,corporate_or_business_office,services_and_business > corporate_or_business_office,Corporate or Business Office +cosmetic_and_beauty_supplies,beauty_supply_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,Beauty Supply Store +cosmetic_dentist,cosmetic_dentistry,health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,Cosmetic Dentistry +cosmetic_products_manufacturer,cosmetic_products_manufacturer,services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,Cosmetic Products Manufacturer +cosmetic_surgeon,cosmetic_surgery,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,Cosmetic Surgery +cosmetology_school,cosmetology_school,education > place_of_learning > specialty_school > cosmetology_school,Cosmetology School +costa_rican_restaurant,costa_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,Costa Rican Restaurant +costume_museum,costume_museum,arts_and_entertainment > museum > art_museum > costume_museum,Costume Museum +costume_store,costume_store,shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,Costume Store +cottage,cottage,lodging > cottage,Cottage +cotton_mill,cotton_mill,services_and_business > b2b_service > manufacturer > mill > cotton_mill,Cotton Mill +counseling_and_mental_health,behavioral_or_mental_health_clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic +countertop_installation,countertop_installation,services_and_business > home_service > countertop_installation,Countertop Installation +country_club,country_club,arts_and_entertainment > social_club > country_club,Country Club +country_dance_hall,country_dance_hall,arts_and_entertainment > rural_attraction > country_dance_hall,Country Dance Hall +country_house,country_house,lodging > country_house,Country House +courier_and_delivery_services,courier_and_delivery_service,services_and_business > shipping_or_delivery_service > courier_and_delivery_service,Courier and Delivery Service +court_reporter,court_reporter,services_and_business > legal_service > court_reporter,Court Reporter +courthouse,courthouse,community_and_government > government_office > courthouse,Courthouse +coworking_space,coworking_space,services_and_business > professional_service > coworking_space,Coworking Space +cpr_classes,cpr_class,education > place_of_learning > specialty_school > cpr_class,CPR Class +craft_shop,craft_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,Craft Store +crane_services,crane_service,services_and_business > building_or_construction_service > crane_service,Crane Service +crater,crater,geographic_entities > land_feature > crater,Crater +credit_and_debt_counseling,credit_and_debt_counseling,services_and_business > financial_service > credit_and_debt_counseling,Credit and Debt Counseling +credit_union,credit_union,services_and_business > financial_service > bank_or_credit_union > credit_union,Credit Union +cremation_services,cremation_service,services_and_business > family_service > funeral_service > cremation_service,Cremation Service +cricket_ground,cricket_ground,arts_and_entertainment > stadium_arena > stadium > cricket_ground,Cricket Ground +criminal_defense_law,criminal_defense_law,services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,Criminal Defense Law +crisis_intervention_services,crisis_intervention_service,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,Crisis Intervention Service +crops_production,crops_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production,Crops Production +cryotherapy,cryotherapy,lifestyle_services > wellness_service > cryotherapy,Cryotherapy +csa_farm,csa_farm,shopping > food_and_beverage_store > csa_farm,Csa Farm +cuban_restaurant,cuban_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,Cuban Restaurant +cultural_center,cultural_center,cultural_and_historic > cultural_center,Cultural Center +cupcake_shop,cupcake_shop,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,Cupcake Shop +currency_exchange,currency_exchange,services_and_business > financial_service > currency_exchange,Currency Exchange +curry_sausage_restaurant,curry_sausage_restaurant,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,Curry Sausage Restaurant +custom_cakes_shop,custom_cakes_shop,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,Custom Cakes Shop +custom_clothing,custom_clothing_store,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,Custom Clothing Store +custom_t_shirt_store,custom_t_shirt_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,Custom T-shirt Store +customized_merchandise,customized_merchandise_store,shopping > specialty_store > customized_merchandise_store,Customized Merchandise Store +customs_broker,customs_broker,services_and_business > financial_service > customs_broker,Customs Broker +cycling_classes,cycling_class,sports_and_recreation > sport_or_fitness_facility > cycling_class,Cycling Class +czech_restaurant,czech_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,Czech Restaurant +dairy_farm,dairy_farm,services_and_business > agricultural_service > farm > dairy_farm,Dairy Farm +dairy_stores,dairy_store,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,Dairy Store +dam,dam,geographic_entities > built_feature > dam,Dam +damage_restoration,damage_restoration,services_and_business > home_service > damage_restoration,Damage Restoration +dance_club,dance_club,arts_and_entertainment > nightlife_venue > dance_club,Dance Club +dance_school,dance_studio,sports_and_recreation > sport_or_fitness_facility > dance_studio,Dance Studio +dance_wear,dancewear_store,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,Dancewear Store +danish_restaurant,danish_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,Danish Restaurant +data_recovery,it_service_and_computer_repair,services_and_business > technical_service > it_service_and_computer_repair,IT Service and Computer Repair +day_care_preschool,day_care_preschool,services_and_business > family_service > child_care_and_day_care > day_care_preschool,Day Care Preschool +day_spa,day_spa,lifestyle_services > wellness_service > spa > day_spa,Day Spa +debt_relief_services,debt_relief_service,services_and_business > financial_service > debt_relief_service,Debt Relief Service +deck_and_railing_sales_service,deck_and_railing_sales_service,services_and_business > home_service > deck_and_railing_sales_service,Deck and Railing Sales Service +decorative_arts_museum,decorative_arts_museum,arts_and_entertainment > museum > art_museum > decorative_arts_museum,Decorative Arts Museum +delegated_driver_service,delegated_driver_service,travel_and_transportation > vehicle_service > delegated_driver_service,Delegated Driver Service +delicatessen,delicatessen,food_and_drink > casual_eatery > delicatessen,Delicatessen +demolition_service,demolition_service,services_and_business > home_service > demolition_service,Demolition Service +denim_wear_store,denim_wear_store,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,Denim Wear Store +dental_hygienist,dental_hygiene,health_care > outpatient_care_facility > dental_clinic > dental_hygiene,Dental Hygiene +dental_laboratories,b2b_dental_lab,services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,B2B Dental Lab +dental_supply_store,dental_supply_store,shopping > specialty_store > medical_supply_store > dental_supply_store,Dental Supply Store +dentist,dental_clinic,health_care > outpatient_care_facility > dental_clinic,Dental Clinic +dentistry_schools,dentistry_school,education > place_of_learning > college_university > medical_sciences_school > dentistry_school,Dentistry School +department_of_motor_vehicles,department_of_motor_vehicles,community_and_government > government_office > government_department > department_of_motor_vehicles,Department of Motor Vehicles +department_of_social_service,department_of_social_service,community_and_government > government_office > government_department > department_of_social_service,Department of Social Service +department_store,department_store,shopping > department_store,Department Store +dermatologist,dermatology,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,Dermatology +desert,desert,geographic_entities > land_feature > desert,Desert +design_museum,design_museum,arts_and_entertainment > museum > art_museum > design_museum,Design Museum +designer_clothing,designer_clothing,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,Designer Clothing +desserts,dessert_shop,food_and_drink > casual_eatery > dessert_shop,Dessert Shop +diagnostic_imaging,diagnostic_imaging,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,Diagnostic Imaging +diagnostic_services,doctors_office,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,Doctors Office +dialysis_clinic,dialysis_clinic,health_care > specialized_medical_facility > dialysis_clinic,Dialysis Clinic +diamond_dealer,diamond_dealer,shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,Diamond Dealer +dietitian,nutrition_service,lifestyle_services > wellness_service > nutrition_service,Nutrition Service +digitizing_services,digitizing_service,services_and_business > media_service > digitizing_service,Digitizing Service +dim_sum_restaurant,dim_sum_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,Dim Sum Restaurant +diner,diner,food_and_drink > casual_eatery > diner,Diner +dinner_theater,dinner_theater,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,Dinner Theater +direct_mail_advertising,b2b_direct_mail_advertising,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_direct_mail_advertising,B2B Direct Mail Advertising +disability_law,disability_law,services_and_business > legal_service > attorney_or_law_firm > disability_law,Disability Law +disability_services_and_support_organization,disability_services_and_support_organization,community_and_government > social_or_community_service > disability_services_and_support_organization,Disability Services and Support Organization +disc_golf_course,disc_golf_course,sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,Disc Golf Course +discount_store,discount_store,shopping > discount_store,Discount Store +display_home_center,display_home_center,services_and_business > real_estate_service > display_home_center,Display Home Center +distillery,distillery,food_and_drink > alcoholic_beverage_venue > distillery,Distillery +distribution_services,distribution_service,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,Distribution Service +dive_bar,dive_bar,food_and_drink > alcoholic_beverage_venue > bar > dive_bar,Dive Bar +dive_shop,dive_store,shopping > specialty_store > sporting_goods_store > dive_store,Dive Store +diving_center,diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center,Diving Center +divorce_and_family_law,divorce_and_family_law,services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,Divorce and Family Law +diy_auto_shop,diy_auto_shop,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,DIY Auto Shop +diy_foods_restaurant,diy_foods_restaurant,food_and_drink > restaurant > diy_foods_restaurant,DIY Foods Restaurant +dj_service,dj_service,services_and_business > event_or_party_service > dj_service,DJ Service +do_it_yourself_store,do_it_yourself_store,shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,Do IT Yourself Store +doctor,doctors_office,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,Doctors Office +dog_meat_restaurant,meat_restaurant,food_and_drink > restaurant > meat_restaurant,Meat Restaurant +dog_park,dog_park,sports_and_recreation > park > dog_park,Dog Park +dog_trainer,dog_trainer,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,Dog Trainer +dog_walkers,dog_walker,lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,Dog Walker +domestic_airports,airport,travel_and_transportation > air_transport_facility_or_service > airport,Airport +domestic_business_and_trade_organizations,b2b_domestic_trade_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,B2B Domestic Trade Service +dominican_restaurant,dominican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,Dominican Restaurant +donation_center,donation_center,services_and_business > home_service > donation_center,Donation Center +doner_kebab,doner_kebab_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,Doner Kebab Restaurant +donuts,donut_shop,food_and_drink > casual_eatery > dessert_shop > donut_shop,Donut Shop +door_sales_service,door_sales_service,services_and_business > home_service > door_sales_service,Door Sales Service +doula,doula_service,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,Doula Service +drama_school,drama_school,education > place_of_learning > specialty_school > drama_school,Drama School +drinking_water_dispenser,drinking_fountain,community_and_government > public_facility > public_fountain > drinking_fountain,Drinking Fountain +drive_in_theater,drive_in_theater,arts_and_entertainment > movie_theater > drive_in_theater,Drive-In Theater +drive_thru_bar,drive_thru_bar,food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,Drive Thru Bar +driving_range,driving_range,sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,Driving Range +driving_school,driving_school,education > place_of_learning > specialty_school > driving_school,Driving School +drone_store,drone_store,shopping > specialty_store > electronics_store > drone_store,Drone Store +drugstore,drugstore,shopping > specialty_store > pharmacy_and_drug_store > drugstore,Drugstore +dry_cleaning,dry_cleaning,services_and_business > laundry_service > dry_cleaning,Dry Cleaning +drywall_services,drywall_service,services_and_business > home_service > drywall_service,Drywall Service +dui_law,dui_law,services_and_business > legal_service > attorney_or_law_firm > dui_law,DUI Law +dui_school,dui_school,education > place_of_learning > specialty_school > dui_school,DUI School +dumpling_restaurant,dumpling_restaurant,food_and_drink > restaurant > dumpling_restaurant,Dumpling Restaurant +dumpster_rentals,dumpster_rental,services_and_business > rental_service > dumpster_rental,Dumpster Rental +duplication_services,duplication_service,services_and_business > printing_service > duplication_service,Duplication Service +duty_free_shop,duty_free_store,shopping > specialty_store > duty_free_store,Duty Free Store +e_cigarette_store,smoke_and_vape_store,shopping > specialty_store > smoke_and_vape_store,Smoke and Vape Store +e_commerce_service,e_commerce_service,services_and_business > professional_service > e_commerce_service,E-commerce Service +ear_nose_and_throat,ear_nose_and_throat,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,Ear Nose and Throat +eastern_european_restaurant,eastern_european_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,Eastern European Restaurant +eat_and_drink,food_and_drink,food_and_drink,Food and Drink +eatertainment,dinner_theater,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,Dinner Theater +eating_disorder_treatment_centers,eating_disorder_treatment_center,health_care > specialized_medical_facility > eating_disorder_treatment_center,Eating Disorder Treatment Center +ecuadorian_restaurant,ecuadorian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,Ecuadorian Restaurant +editorial_services,editorial_service,services_and_business > professional_service > editorial_service,Editorial Service +education,education,education,Education +educational_camp,educational_camp,education > educational_facility > educational_camp,Educational Camp +educational_research_institute,educational_research_institute,education > research_institute > educational_research_institute,Educational Research Institute +educational_services,educational_service,education > educational_service,Educational Service +educational_supply_store,educational_supply_store,shopping > specialty_store > educational_supply_store,Educational Supply Store +egyptian_restaurant,egyptian_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,Egyptian Restaurant +elder_care_planning,elder_care_planning,services_and_business > family_service > elder_care_planning,Elder Care Planning +electric_utility_provider,electric_utility_provider,community_and_government > public_utility > electric_utility_provider,Electric Utility Provider +electrical_consultant,electrician,services_and_business > home_service > electrician,Electrician +electrical_supply_store,electrical_supply_store,shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,Electrical Supply Store +electrical_wholesaler,electrical_wholesaler,services_and_business > b2b_service > wholesaler > electrical_wholesaler,Electrical Wholesaler +electrician,electrician,services_and_business > home_service > electrician,Electrician +electricity_supplier,electric_utility_provider,community_and_government > public_utility > electric_utility_provider,Electric Utility Provider +electronic_parts_supplier,electronic_parts_supplier,services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,Electronic Parts Supplier +electronics,electronics_store,shopping > specialty_store > electronics_store,Electronics Store +electronics_repair_shop,electronics_repair_shop,services_and_business > technical_service > electronics_repair_shop,Electronics Repair Shop +elementary_school,elementary_school,education > place_of_learning > school > elementary_school,Elementary School +elevator_service,elevator_service,services_and_business > technical_service > elevator_service,Elevator Service +embassy,embassy,community_and_government > government_office > embassy,Embassy +embroidery_and_crochet,embroidery_and_crochet_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,Embroidery and Crochet Store +emergency_medicine,emergency_or_urgent_care_facility,health_care > emergency_or_urgent_care_facility,Emergency or Urgent Care Facility +emergency_pet_hospital,emergency_pet_hospital,lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,Emergency Pet Hospital +emergency_roadside_service,emergency_roadside_service,travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,Emergency Roadside Service +emergency_room,emergency_department,health_care > emergency_or_urgent_care_facility > emergency_department,Emergency Department +emergency_service,ambulance_or_ems_service,health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,Ambulance or EMS Service +emissions_inspection,emissions_inspection,travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,Emissions Inspection +empanadas,empanada_restaurant,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,Empanada Restaurant +employment_agencies,employment_agency,services_and_business > professional_service > employment_agency,Employment Agency +employment_law,employment_law,services_and_business > legal_service > attorney_or_law_firm > employment_law,Employment Law +ems_training,ems_training,health_care > medical_service > ems_training,EMS Training +endocrinologist,endocrinology,health_care > outpatient_care_facility > specialized_health_care > endocrinology,Endocrinology +endodontist,endodontics,health_care > outpatient_care_facility > dental_clinic > endodontics,Endodontics +endoscopist,endoscopy,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,Endoscopy +energy_company,energy_company,services_and_business > corporate_or_business_office > energy_company,Energy Company +energy_equipment_and_solution,b2b_energy_and_utility_service,services_and_business > b2b_service > b2b_energy_and_utility_service,B2B Energy and Utility Service +energy_management_and_conservation_consultants,energy_management_service,services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,Energy Management Service +engine_repair_service,engine_repair_service,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,Engine Repair Service +engineering_schools,engineering_school,education > place_of_learning > college_university > engineering_school,Engineering School +engineering_services,engineering_service,services_and_business > building_or_construction_service > engineering_service,Engineering Service +engraving,engraving,services_and_business > media_service > engraving,Engraving +entertainment_law,entertainment_law,services_and_business > legal_service > attorney_or_law_firm > entertainment_law,Entertainment Law +environmental_abatement_services,environmental_abatement_service,services_and_business > environmental_or_ecological_service > environmental_abatement_service,Environmental Abatement Service +environmental_and_ecological_services_for_businesses,environmental_or_ecological_service,services_and_business > environmental_or_ecological_service,Environmental or Ecological Service +environmental_conservation_and_ecological_organizations,environmental_conservation_organization,services_and_business > environmental_or_ecological_service > environmental_conservation_organization,Environmental Conservation Organization +environmental_conservation_organization,environmental_conservation_organization,services_and_business > environmental_or_ecological_service > environmental_conservation_organization,Environmental Conservation Organization +environmental_medicine,environmental_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,Environmental Medicine +environmental_renewable_natural_resource,environmental_or_ecological_service,services_and_business > environmental_or_ecological_service,Environmental or Ecological Service +environmental_testing,environmental_testing_service,services_and_business > environmental_or_ecological_service > environmental_testing_service,Environmental Testing Service +episcopal_church,anglican_or_episcopal_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > anglican_or_episcopal_place_of_worship,Anglican or Episcopal Place of Worship +equestrian_facility,equestrian_facility,sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,Equestrian Facility +erotic_massage,erotic_massage_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,Erotic Massage Venue +escape_rooms,escape_room,arts_and_entertainment > gaming_venue > escape_room,Escape Room +escrow_services,escrow_service,services_and_business > real_estate_service > escrow_service,Escrow Service +esports_league,esports_league,sports_and_recreation > sport_league > esports_league,Esports League +esports_team,esports_team,sports_and_recreation > sport_team > esports_team,Esports Team +estate_liquidation,estate_liquidation,services_and_business > real_estate_service > estate_liquidation,Estate Liquidation +estate_planning_law,estate_planning_law,services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,Estate Planning Law +esthetician,esthetician,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,Esthetician +ethical_grocery,ethical_grocery_store,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,Ethical Grocery Store +ethiopian_restaurant,ethiopian_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,Ethiopian Restaurant +european_restaurant,european_restaurant,food_and_drink > restaurant > european_restaurant,European Restaurant +ev_charging_station,ev_charging_station,travel_and_transportation > fueling_station > ev_charging_station,EV Charging Station +evangelical_church,protestant_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship,Protestant Place of Worship +event_photography,event_photography_service,services_and_business > media_service > photography_service > event_photography_service,Event Photography Service +event_planning,event_or_party_service,services_and_business > event_or_party_service,Event or Party Service +event_technology_service,event_technology_service,services_and_business > event_or_party_service > event_technology_service,Event Technology Service +excavation_service,excavation_service,services_and_business > home_service > excavation_service,Excavation Service +executive_search_consultants,b2b_executive_search_consultants,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_executive_search_consultants,B2B Executive Search Consultants +exhaust_and_muffler_repair,exhaust_and_muffler_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,Exhaust and Muffler Repair +exhibition_and_trade_center,exhibition_and_trade_fair_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue +exporters,exporter,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,Exporter +exterior_design,exterior_design,services_and_business > home_service > exterior_design,Exterior Design +eye_care_clinic,vision_or_eye_care_clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,Vision or Eye Care Clinic +eyebrow_service,eyebrow_service,lifestyle_services > personal_or_beauty_service > eyebrow_service,Eyebrow Service +eyelash_service,eyelash_service,lifestyle_services > personal_or_beauty_service > eyelash_service,Eyelash Service +eyewear_and_optician,eyewear_store,shopping > fashion_and_apparel_store > eyewear_store,Eyewear Store +fabric_store,fabric_store,shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,Fabric Store +fabric_wholesaler,fabric_wholesaler,services_and_business > b2b_service > wholesaler > fabric_wholesaler,Fabric Wholesaler +face_painting,face_painting,services_and_business > event_or_party_service > face_painting,Face Painting +fair,fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,Fairgrounds +falafel_restaurant,falafel_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,Falafel Restaurant +family_counselor,family_counseling,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,Family Counseling +family_practice,family_practice,health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,Family Practice +family_service_center,family_service_center,services_and_business > family_service > family_service_center,Family Service Center +farm,farm,services_and_business > agricultural_service > farm,Farm +farm_equipment_and_supply,farm_equipment_and_supply,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,Farm Equipment and Supply +farm_equipment_repair_service,farm_equipment_repair_service,services_and_business > agricultural_service > farm_equipment_repair_service,Farm Equipment Repair Service +farm_insurance,farm_insurance,services_and_business > financial_service > insurance_agency > farm_insurance,Farm Insurance +farmers_market,farmers_market,shopping > market > farmers_market,Farmers Market +farming_equipment_store,farming_equipment_store,shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,Farming Equipment Store +farming_services,farming_service,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,Farming Service +farrier_services,farrier_service,lifestyle_services > animal_or_pet_service > equine_service > farrier_service,Farrier Service +fashion,fashion_and_apparel_store,shopping > fashion_and_apparel_store,Fashion and Apparel Store +fashion_accessories_store,fashion_accessories_store,shopping > fashion_and_apparel_store > fashion_accessories_store,Fashion Accessories Store +fast_food_restaurant,fast_food_restaurant,food_and_drink > casual_eatery > fast_food_restaurant,Fast Food Restaurant +fastener_supplier,fastener_supplier,services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,Fastener Supplier +federal_government_offices,government_office,community_and_government > government_office,Government Office +fence_and_gate_sales_service,fence_and_gate_sales_service,services_and_business > home_service > fence_and_gate_sales_service,Fence and Gate Sales Service +fencing_club,fencing_club,sports_and_recreation > sport_or_recreation_club > fencing_club,Fencing Club +feng_shui,feng_shui,services_and_business > home_service > feng_shui,Feng Shui +ferry_boat_company,ferry_boat_company,services_and_business > corporate_or_business_office > ferry_boat_company,Ferry Boat Company +ferry_service,ferry_service,travel_and_transportation > water_transport_facility_or_service > ferry_service,Ferry Service +fertility,fertility_clinic,health_care > specialized_medical_facility > fertility_clinic,Fertility Clinic +fertilizer_store,fertilizer_store,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,Fertilizer Store +festival,festival_venue,arts_and_entertainment > festival_venue,Festival Venue +fidelity_and_surety_bonds,fidelity_and_surety_bonds,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,Fidelity and Surety Bonds +filipino_restaurant,filipino_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,Filipino Restaurant +film_festivals_and_organizations,film_festival_venue,arts_and_entertainment > festival_venue > film_festival_venue,Film Festival Venue +financial_advising,financial_advising,services_and_business > financial_service > financial_advising,Financial Advising +financial_service,financial_service,services_and_business > financial_service,Financial Service +fingerprinting_service,fingerprinting_service,services_and_business > security_service > fingerprinting_service,Fingerprinting Service +fire_and_water_damage_restoration,fire_and_water_damage_restoration,services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,Fire and Water Damage Restoration +fire_department,fire_station,community_and_government > public_safety_service > fire_station,Fire Station +fire_protection_service,fire_protection_service,services_and_business > home_service > fire_protection_service,Fire Protection Service +firearm_training,firearm_training,education > place_of_learning > specialty_school > firearm_training,Firearm Training +fireplace_service,fireplace_service,services_and_business > home_service > fireplace_service,Fireplace Service +firewood,firewood,services_and_business > home_service > firewood,Firewood +firework_retailer,fireworks_store,shopping > specialty_store > fireworks_store,Fireworks Store +first_aid_class,first_aid_class,education > place_of_learning > specialty_school > first_aid_class,First Aid Class +fischbrotchen_restaurant,fischbrotchen_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,Fischbrotchen Restaurant +fish_and_chips_restaurant,fish_and_chips_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,Fish and Chips Restaurant +fish_farm,fish_farm,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,Fish Farm +fish_farms_and_hatcheries,fish_farm_hatchery,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,Fish Farm Hatchery +fish_restaurant,fish_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,Fish Restaurant +fishing_charter,fishing_charter,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,Fishing Charter +fishing_club,fishing_club,sports_and_recreation > sport_or_recreation_club > fishing_club,Fishing Club +fishmonger,fishmonger,shopping > food_and_beverage_store > fishmonger,Fishmonger +fitness_equipment_wholesaler,fitness_equipment_wholesaler,services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,Fitness Equipment Wholesaler +fitness_exercise_equipment,fitness_exercise_store,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,Fitness Exercise Store +fitness_trainer,fitness_trainer,sports_and_recreation > sport_or_fitness_facility > fitness_trainer,Fitness Trainer +flatbread,flatbread_shop,food_and_drink > casual_eatery > bakery > flatbread_shop,Flatbread Shop +flatbread_restaurant,flatbread_shop,food_and_drink > casual_eatery > bakery > flatbread_shop,Flatbread Shop +flea_market,flea_market,shopping > second_hand_store > flea_market,Flea Market +flight_school,flight_school,education > place_of_learning > specialty_school > flight_school,Flight School +float_spa,float_spa,lifestyle_services > wellness_service > spa > float_spa,Float Spa +flooring_contractors,flooring_contractor,services_and_business > home_service > contractor > flooring_contractor,Flooring Contractor +flooring_store,flooring_store,shopping > specialty_store > hardware_home_and_garden_store > flooring_store,Flooring Store +floral_designer,floral_designer,services_and_business > event_or_party_service > floral_designer,Floral Designer +florist,florist,shopping > specialty_store > flowers_and_gifts_store > florist,Florist +flour_mill,flour_mill,services_and_business > b2b_service > manufacturer > mill > flour_mill,Flour Mill +flower_markets,flower_market,shopping > specialty_store > flowers_and_gifts_store > flower_market,Flower Market +flowers_and_gifts_shop,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_store,Flowers and Gifts Store +flyboarding_center,flyboarding_center,sports_and_recreation > sport_or_fitness_facility > flyboarding_center,Flyboarding Center +flyboarding_rental,flyboarding_rental,sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,Flyboarding Rental +fmcg_wholesaler,fmcg_wholesaler,services_and_business > b2b_service > wholesaler > fmcg_wholesaler,Fmcg Wholesaler +fondue_restaurant,fondue_restaurant,food_and_drink > casual_eatery > fondue_restaurant,Fondue Restaurant +food,food_and_beverage_store,shopping > food_and_beverage_store,Food and Beverage Store +food_and_beverage_consultant,food_and_beverage_consultant,services_and_business > professional_service > food_and_beverage_consultant,Food and Beverage Consultant +food_and_beverage_exporter,food_and_beverage_exporter,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter > food_and_beverage_exporter,Food and Beverage Exporter +food_banks,food_bank,community_and_government > social_or_community_service > food_bank,Food Bank +food_beverage_service_distribution,food_beverage_distributor,services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,Food Beverage Distributor +food_consultant,food_consultant,lifestyle_services > food_service > food_consultant,Food Consultant +food_court,food_court,food_and_drink > casual_eatery > food_court,Food Court +food_delivery_service,food_delivery_service,lifestyle_services > food_service > food_delivery_service,Food Delivery Service +food_safety_training,food_safety_training,education > place_of_learning > specialty_school > food_safety_training,Food Safety Training +food_stand,food_truck_stand,food_and_drink > casual_eatery > food_truck_stand,Food Truck or Stand +food_tours,food_tour,travel_and_transportation > travel_service > tour_operator > food_tour,Food Tour +food_truck,food_truck_stand,food_and_drink > casual_eatery > food_truck_stand,Food Truck or Stand +foot_care,foot_care,lifestyle_services > personal_or_beauty_service > foot_care,Foot Care +football_club,football_club,sports_and_recreation > sport_or_recreation_club > football_club,Football Club +football_stadium,football_stadium,arts_and_entertainment > stadium_arena > stadium > football_stadium,Football Stadium +footwear_wholesaler,footwear_wholesaler,services_and_business > b2b_service > wholesaler > footwear_wholesaler,Footwear Wholesaler +forest,forest,geographic_entities > land_feature > forest,Forest +forestry_consultants,forestry_service,services_and_business > environmental_or_ecological_service > forestry_service,Forestry Service +forestry_service,forestry_service,services_and_business > environmental_or_ecological_service > forestry_service,Forestry Service +forklift_dealer,forklift_dealer,shopping > vehicle_dealer > forklift_dealer,Forklift Dealer +formal_wear_store,formal_wear_store,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,Formal Wear Store +fort,fort,cultural_and_historic > historic_site > fort,Fort +fortune_telling_service,fortune_telling,arts_and_entertainment > spiritual_advising > fortune_telling,Fortune Telling +foster_care_services,foster_care_service,community_and_government > social_or_community_service > foster_care_service,Foster Care Service +foundation_repair,foundation_repair,services_and_business > home_service > foundation_repair,Foundation Repair +fountain,public_fountain,community_and_government > public_facility > public_fountain,Public Fountain +framing_store,framing_store,shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,Framing Store +fraternal_organization,fraternal_organization,arts_and_entertainment > social_club > fraternal_organization,Fraternal Organization +free_diving_center,free_diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,Free Diving Center +free_diving_instruction,free_diving_instruction,sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,Free Diving Instruction +freight_and_cargo_service,freight_and_cargo_service,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,Freight and Cargo Service +freight_forwarding_agency,freight_forwarding_agency,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,Freight Forwarding Agency +french_restaurant,french_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,French Restaurant +friterie,friterie,food_and_drink > casual_eatery > friterie,Friterie +frozen_foods,frozen_foods_store,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,Frozen Foods Store +frozen_yoghurt_shop,frozen_yogurt_shop,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,Frozen Yogurt Shop +fruits_and_vegetables,produce_store,shopping > food_and_beverage_store > specialty_foods_store > produce_store,Produce Store +fuel_dock,fuel_dock,travel_and_transportation > fueling_station > gas_station > fuel_dock,Fuel Dock +funeral_services_and_cemeteries,funeral_service,services_and_business > family_service > funeral_service,Funeral Service +fur_clothing,fur_clothing,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,Fur Clothing +furniture_accessory_store,furniture_accessory_store,shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,Furniture Accessory Store +furniture_assembly,furniture_assembly,services_and_business > home_service > furniture_assembly,Furniture Assembly +furniture_manufacturers,furniture_manufacturer,services_and_business > b2b_service > manufacturer > furniture_manufacturer,Furniture Manufacturer +furniture_rental_service,furniture_rental_service,services_and_business > home_service > furniture_rental_service,Furniture Rental Service +furniture_repair,furniture_repair,services_and_business > home_service > furniture_repair,Furniture Repair +furniture_reupholstery,furniture_reupholstery,services_and_business > home_service > furniture_reupholstery,Furniture Reupholstery +furniture_store,furniture_store,shopping > specialty_store > hardware_home_and_garden_store > furniture_store,Furniture Store +furniture_wholesalers,furniture_wholesaler,services_and_business > b2b_service > wholesaler > furniture_wholesaler,Furniture Wholesaler +futsal_field,futsal_field,sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,Futsal Field +game_publisher,game_publisher,services_and_business > media_service > media_news_company > game_publisher,Game Publisher +game_truck_rental,game_truck_rental,services_and_business > event_or_party_service > game_truck_rental,Game Truck Rental +garage_door_service,garage_door_service,services_and_business > home_service > garage_door_service,Garage Door Service +garbage_collection_service,garbage_collection_service,community_and_government > public_utility > garbage_collection_service,Garbage Collection Service +gardener,gardener,services_and_business > home_service > landscaping > gardener,Gardener +gas_station,gas_station,travel_and_transportation > fueling_station > gas_station,Gas Station +gastroenterologist,gastroenterology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology,Gastroenterology +gastropub,gastropub,food_and_drink > casual_eatery > gastropub,Gastropub +gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,community_and_government > social_or_community_service > gay_and_lesbian_services_organization,Gay and Lesbian Services Organization +gay_bar,gay_bar,food_and_drink > alcoholic_beverage_venue > bar > gay_bar,Gay Bar +gelato,gelato_shop,food_and_drink > casual_eatery > dessert_shop > gelato_shop,Gelato Shop +gemstone_and_mineral,gemstone_and_mineral_store,shopping > specialty_store > gemstone_and_mineral_store,Gemstone and Mineral Store +genealogists,genealogist,services_and_business > family_service > genealogist,Genealogist +general_dentistry,general_dentistry,health_care > outpatient_care_facility > dental_clinic > general_dentistry,General Dentistry +general_festivals,festival_venue,arts_and_entertainment > festival_venue,Festival Venue +general_litigation,general_litigation,services_and_business > legal_service > attorney_or_law_firm > general_litigation,General Litigation +generator_installation_repair,generator_installation_repair,services_and_business > technical_service > generator_installation_repair,Generator Installation Repair +geneticist,genetics,health_care > outpatient_care_facility > specialized_health_care > genetics,Genetics +gents_tailor,tailor,services_and_business > home_service > sewing_and_alterations > tailor,Tailor +geologic_formation,geologic_formation,geographic_entities > land_feature > geologic_formation,Geologic Formation +geological_services,geological_service,services_and_business > b2b_service > b2b_environmental_service > geological_service,Geological Service +georgian_restaurant,georgian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,Georgian Restaurant +geriatric_medicine,geriatric_medicine,health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,Geriatric Medicine +geriatric_psychiatry,geriatric_psychiatry,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,Geriatric Psychiatry +german_restaurant,german_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,German Restaurant +gerontologist,gerontology,health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,Gerontology +gift_shop,gift_shop,shopping > specialty_store > flowers_and_gifts_store > gift_shop,Gift Shop +glass_and_mirror_sales_service,glass_and_mirror_sales_service,services_and_business > home_service > glass_and_mirror_sales_service,Glass and Mirror Sales Service +glass_blowing,glass_blowing_venue,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,Glass Blowing Venue +glass_manufacturer,glass_manufacturer,services_and_business > b2b_service > manufacturer > glass_manufacturer,Glass Manufacturer +gliderports,glider_port,travel_and_transportation > air_transport_facility_or_service > airport > glider_port,Glider Port +gluten_free_restaurant,gluten_free_restaurant,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,Gluten Free Restaurant +go_kart_club,go_kart_club,sports_and_recreation > sport_or_recreation_club > go_kart_club,Go Kart Club +go_kart_track,go_kart_track,sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,Go Kart Track +gold_buyer,gold_buyer,services_and_business > financial_service > gold_buyer,Gold Buyer +goldsmith,goldsmith,shopping > fashion_and_apparel_store > jewelry_store > goldsmith,Goldsmith +golf_cart_dealer,golf_cart_dealer,shopping > vehicle_dealer > golf_cart_dealer,Golf Cart Dealer +golf_cart_rental,golf_cart_rental,services_and_business > event_or_party_service > golf_cart_rental,Golf Cart Rental +golf_club,golf_club,sports_and_recreation > sport_or_recreation_club > golf_club,Golf Club +golf_course,golf_course,sports_and_recreation > sport_or_fitness_facility > golf_course,Golf Course +golf_equipment,golf_equipment_store,shopping > specialty_store > sporting_goods_store > golf_equipment_store,Golf Equipment Store +golf_instructor,golf_instructor,sports_and_recreation > sport_or_fitness_facility > golf_instructor,Golf Instructor +government_services,government_office,community_and_government > government_office,Government Office +grain_elevators,grain_elevator,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,Grain Elevator +grain_production,grain_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,Grain Production +granite_supplier,granite_supplier,services_and_business > b2b_service > supplier_or_distributor > granite_supplier,Granite Supplier +graphic_designer,graphic_designer,services_and_business > design_service > graphic_designer,Graphic Designer +gravel_professionals,gravel_professional,services_and_business > building_or_construction_service > gravel_professional,Gravel Professional +greek_restaurant,greek_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,Greek Restaurant +greengrocer,greengrocer,services_and_business > b2b_service > wholesaler > greengrocer,Greengrocer +greenhouses,greenhouse,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,Greenhouse +grilling_equipment,grilling_equipment_store,shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,Grilling Equipment Store +grocery_store,grocery_store,shopping > food_and_beverage_store > grocery_store,Grocery Store +grout_service,grout_service,services_and_business > home_service > grout_service,Grout Service +guamanian_restaurant,guamanian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,Guamanian Restaurant +guatemalan_restaurant,guatemalan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,Guatemalan Restaurant +guest_house,guest_house,lodging > private_lodging > guest_house,Guest House +guitar_store,guitar_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,Guitar Store +gun_and_ammo,gun_and_ammo_store,shopping > specialty_store > gun_and_ammo_store,Gun and Ammo Store +gunsmith,gunsmith,shopping > specialty_store > gun_and_ammo_store > gunsmith,Gunsmith +gutter_service,gutter_service,services_and_business > home_service > gutter_service,Gutter Service +gym,gym,sports_and_recreation > sport_or_fitness_facility > gym,Gym +gymnastics_center,gymnastics_center,sports_and_recreation > sport_or_fitness_facility > gymnastics_center,Gymnastics Center +gymnastics_club,gymnastics_club,sports_and_recreation > sport_or_recreation_club > gymnastics_club,Gymnastics Club +hair_extensions,hair_extensions,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,Hair Extensions +hair_loss_center,hair_loss_center,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,Hair Loss Center +hair_removal,hair_removal,lifestyle_services > personal_or_beauty_service > hair_removal,Hair Removal +hair_replacement,hair_replacement,lifestyle_services > personal_or_beauty_service > hair_replacement,Hair Replacement +hair_salon,hair_salon,lifestyle_services > personal_or_beauty_service > hair_salon,Hair Salon +hair_stylist,hair_stylist,lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,Hair Stylist +hair_supply_stores,hair_supply_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,Hair Supply Store +haitian_restaurant,haitian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,Haitian Restaurant +halal_restaurant,halal_restaurant,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,Halal Restaurant +halfway_house,halfway_house,services_and_business > housing_or_property_service > halfway_house,Halfway House +halotherapy,halotherapy,lifestyle_services > wellness_service > halotherapy,Halotherapy +handbag_stores,handbag_store,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,Handbag Store +handball_court,handball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,Handball Court +handicraft_shop,craft_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,Craft Store +handyman,handyman,services_and_business > home_service > handyman,Handyman +hang_gliding_center,hang_gliding_center,sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,Hang Gliding Center +hardware_store,hardware_store,shopping > specialty_store > hardware_home_and_garden_store > hardware_store,Hardware Store +hat_shop,hat_store,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,Hat Store +haunted_house,haunted_house,arts_and_entertainment > amusement_attraction > haunted_house,Haunted House +haute_cuisine_restaurant,haute_cuisine_restaurant,food_and_drink > restaurant > haute_cuisine_restaurant,Haute Cuisine Restaurant +hawaiian_restaurant,hawaiian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,Hawaiian Restaurant +hazardous_waste_disposal,hazardous_waste_disposal,services_and_business > industrial_facility_or_service > hazardous_waste_disposal,Hazardous Waste Disposal +health_and_medical,health_care,health_care,Health Care +health_and_wellness_club,health_and_wellness_club,lifestyle_services > wellness_service > health_and_wellness_club,Health and Wellness Club +health_coach,health_coaching,lifestyle_services > wellness_service > health_coaching,Health Coaching +health_consultant,health_coaching,lifestyle_services > wellness_service > health_coaching,Health Coaching +health_department,health_department,community_and_government > government_office > government_department > health_department,Health Department +health_food_restaurant,health_food_restaurant,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,Health Food Restaurant +health_food_store,health_food_store,shopping > food_and_beverage_store > health_food_store,Health Food Store +health_insurance_office,health_insurance_office,health_care > medical_service > health_insurance_office,Health Insurance Office +health_market,health_market,shopping > market > health_market,Health Market +health_retreats,health_retreat,lodging > retreat > health_retreat,Health Retreat +health_spa,health_spa,lifestyle_services > wellness_service > spa > health_spa,Health Spa +hearing_aid_provider,hearing_aid_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,Hearing Aid Store +hearing_aids,hearing_aid_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,Hearing Aid Store +heliports,heliport,travel_and_transportation > air_transport_facility_or_service > airport > heliport,Heliport +hematology,hematology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,Hematology +henna_artist,henna_artist,services_and_business > event_or_party_service > henna_artist,Henna Artist +hepatologist,hepatology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,Hepatology +herb_and_spice_shop,herb_and_spice_store,shopping > food_and_beverage_store > herb_and_spice_store,Herb and Spice Store +herbal_shop,herb_and_spice_store,shopping > food_and_beverage_store > herb_and_spice_store,Herb and Spice Store +high_gliding_center,high_gliding_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,High Gliding Center +high_school,high_school,education > place_of_learning > school > high_school,High School +hiking_trail,hiking_trail,sports_and_recreation > recreational_trail_or_path > hiking_trail,Hiking Trail +himalayan_nepalese_restaurant,himalayan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,Himalayan Restaurant +hindu_temple,hindu_place_of_worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,Hindu Place of Worship +historical_tours,historical_tour,travel_and_transportation > travel_service > tour_operator > historical_tour,Historical Tour +history_museum,history_museum,arts_and_entertainment > museum > history_museum,History Museum +hobby_shop,hobby_shop,shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,Hobby Shop +hockey_arena,hockey_arena,arts_and_entertainment > stadium_arena > stadium > hockey_arena,Hockey Arena +hockey_equipment,hockey_equipment_store,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,Hockey Equipment Store +hockey_field,hockey_field,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,Hockey Field +holding_companies,holding_company,services_and_business > financial_service > holding_company,Holding Company +holiday_decor,holiday_decor_store,shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,Holiday Decor Store +holiday_decorating,holiday_decorating_service,services_and_business > home_service > holiday_decorating_service,Holiday Decorating Service +holiday_market,holiday_market,shopping > market > holiday_market,Holiday Market +holiday_park,holiday_park,lodging > holiday_park,Holiday Park +holiday_rental_home,holiday_rental_home,lodging > private_lodging > holiday_rental_home,Holiday Rental Home +holistic_animal_care,holistic_animal_care,lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,Holistic Animal Care +home_and_garden,hardware_home_and_garden_store,shopping > specialty_store > hardware_home_and_garden_store,Hardware Home and Garden Store +home_and_rental_insurance,home_and_rental_insurance,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,Home and Rental Insurance +home_automation,home_automation,services_and_business > home_service > home_automation,Home Automation +home_cleaning,home_cleaning,services_and_business > home_service > home_cleaning,Home Cleaning +home_decor,home_decor_store,shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,Home Decor Store +home_developer,home_developer,services_and_business > real_estate_service > builder > home_developer,Home Developer +home_energy_auditor,home_energy_auditor,services_and_business > home_service > home_energy_auditor,Home Energy Auditor +home_goods_store,home_goods_store,shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,Home Goods Store +home_health_care,home_health_care,health_care > medical_service > home_health_care,Home Health Care +home_improvement_store,home_improvement_store,shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,Home Improvement Store +home_inspector,home_inspector,services_and_business > home_service > home_inspector,Home Inspector +home_network_installation,home_network_installation,services_and_business > home_service > home_network_installation,Home Network Installation +home_organization,home_organization,services_and_business > real_estate_service > home_organization,Home Organization +home_security,home_security,services_and_business > home_service > home_security,Home Security +home_service,home_service,services_and_business > home_service,Home Service +home_staging,home_staging,services_and_business > real_estate_service > home_staging,Home Staging +home_theater_systems_stores,home_theater_systems_stores,shopping > specialty_store > electronics_store > home_theater_systems_stores,Home Theater Systems Stores +home_window_tinting,home_window_tinting,services_and_business > home_service > home_window_tinting,Home Window Tinting +homeless_shelter,homeless_shelter,community_and_government > social_or_community_service > homeless_shelter,Homeless Shelter +homeopathic_medicine,homeopathy,health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,Homeopathy +homeowner_association,homeowner_association,services_and_business > real_estate_service > homeowner_association,Homeowner Association +honduran_restaurant,honduran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,Honduran Restaurant +honey_farm_shop,honey_farm_shop,shopping > food_and_beverage_store > honey_farm_shop,Honey Farm Shop +hong_kong_style_cafe,hong_kong_style_cafe,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,Hong Kong Style Cafe +hookah_bar,hookah_bar,food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,Hookah Bar +horse_boarding,horse_boarding,lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,Horse Boarding +horse_equipment_shop,horse_equipment_shop,shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,Horse Equipment Shop +horse_racing_track,horse_racing_track,sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,Horse Racing Track +horse_riding,horse_riding,sports_and_recreation > sport_or_fitness_facility > horse_riding,Horse Riding +horse_trainer,horse_trainer,lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,Horse Trainer +horseback_riding_service,horseback_riding_service,sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,Horseback Riding Service +hospice,hospice,health_care > medical_service > hospice,Hospice +hospital,hospital,health_care > hospital,Hospital +hospital_equipment_and_supplies,b2b_hospital_equipment_and_supplies,services_and_business > b2b_service > b2b_medical_support_service > b2b_hospital_equipment_and_supplies,B2B Hospital Equipment and Supplies +hospitalist,hospital,health_care > hospital,Hospital +hostel,hostel,lodging > hostel,Hostel +hot_air_balloons_tour,hot_air_balloons_tour,travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,Hot Air Balloons Tour +hot_dog_restaurant,hot_dog_restaurant,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,Hot Dog Restaurant +hot_springs,hot_springs,geographic_entities > water_feature > hot_springs,Hot Springs +hot_tubs_and_pools,hot_tub_and_pool_store,shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,Hot Tub and Pool Store +hotel,hotel,lodging > hotel,Hotel +hotel_bar,hotel_bar,food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,Hotel Bar +hotel_supply_service,hotel_supply_service,services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,Hotel Supply Service +house_sitting,house_sitting,services_and_business > home_service > house_sitting,House Sitting +houseboat,houseboat,lodging > houseboat,Houseboat +housing_authorities,housing_authority,community_and_government > social_or_community_service > housing_authority,Housing Authority +housing_cooperative,housing_cooperative,services_and_business > real_estate_service > housing_cooperative,Housing Cooperative +human_resource_services,b2b_human_resource_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,B2B Human Resource Service +hungarian_restaurant,hungarian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,Hungarian Restaurant +hunting_and_fishing_supplies,hunting_and_fishing_store,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,Hunting and Fishing Store +hvac_services,hvac_service,services_and_business > home_service > hvac_service,HVAC Service +hvac_supplier,hvac_supplier,services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,HVAC Supplier +hybrid_car_repair,hybrid_car_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,Hybrid Car Repair +hydraulic_equipment_supplier,hydraulic_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,Hydraulic Equipment Supplier +hydraulic_repair_service,hydraulic_repair_service,services_and_business > technical_service > hydraulic_repair_service,Hydraulic Repair Service +hydro_jetting,hydro_jetting,services_and_business > home_service > hydro_jetting,Hydro Jetting +hydroponic_gardening,hydroponic_gardening_store,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,Hydroponic Gardening Store +hydrotherapy,hydrotherapy,lifestyle_services > wellness_service > hydrotherapy,Hydrotherapy +hypnosis_hypnotherapy,hypnotherapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > hypnotherapy,Hypnotherapy +iberian_restaurant,iberian_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant,Iberian Restaurant +ice_cream_and_frozen_yoghurt,ice_cream_shop,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,Ice Cream Shop +ice_cream_shop,ice_cream_shop,food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,Ice Cream Shop +ice_skating_rink,ice_skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,Ice Skating Rink +ice_supplier,ice_supplier,services_and_business > b2b_service > supplier_or_distributor > ice_supplier,Ice Supplier +image_consultant,image_consultant,lifestyle_services > personal_or_beauty_service > image_consultant,Image Consultant +immigration_and_naturalization,immigration_and_naturalization_office,community_and_government > government_office > immigration_and_naturalization_office,Immigration and Naturalization Office +immigration_assistance_services,immigration_assistance_service,services_and_business > professional_service > immigration_assistance_service,Immigration Assistance Service +immigration_law,immigration_law,services_and_business > legal_service > attorney_or_law_firm > immigration_law,Immigration Law +immunodermatologist,immunodermatology,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,Immunodermatology +imported_food,imported_food_store,shopping > food_and_beverage_store > imported_food_store,Imported Food Store +importer_and_exporter,import_export_service,services_and_business > b2b_service > supplier_or_distributor > import_export_service,Import Export Service +importers,importer,services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,Importer +indian_grocery_store,indian_grocery_store,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,Indian Grocery Store +indian_restaurant,indian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,Indian Restaurant +indian_sweets_shop,indian_sweets_shop,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,Indian Sweets Shop +indo_chinese_restaurant,indo_chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,Indo Chinese Restaurant +indonesian_restaurant,indonesian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,Indonesian Restaurant +indoor_golf_center,indoor_golf_center,sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,Indoor Golf Center +indoor_landscaping,indoor_landscaping,services_and_business > home_service > indoor_landscaping,Indoor Landscaping +indoor_playcenter,indoor_playcenter,sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,Indoor Playcenter +industrial_cleaning_services,industrial_cleaning_service,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,Industrial Cleaning Service +industrial_company,industrial_company,services_and_business > corporate_or_business_office > industrial_company,Industrial Company +industrial_equipment,industrial_equipment_manufacturer,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,Industrial Equipment Manufacturer +industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler +infectious_disease_specialist,infectious_disease,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,Infectious Disease +information_technology_company,information_technology_company,services_and_business > corporate_or_business_office > information_technology_company,Information Technology Company +inn,inn,lodging > inn,Inn +inspection_services,inspection_service,services_and_business > building_or_construction_service > inspection_service,Inspection Service +installment_loans,installment_loans,services_and_business > financial_service > installment_loans,Installment Loans +instrumentation_engineers,instrumentation_engineer,services_and_business > building_or_construction_service > instrumentation_engineer,Instrumentation Engineer +insulation_installation,insulation_installation,services_and_business > home_service > insulation_installation,Insulation Installation +insurance_agency,insurance_agency,services_and_business > financial_service > insurance_agency,Insurance Agency +interior_design,interior_design,services_and_business > home_service > interior_design,Interior Design +interlock_system,auto_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,Auto Parts Store +internal_medicine,internal_medicine,health_care > outpatient_care_facility > specialized_health_care > internal_medicine,Internal Medicine +international_business_and_trade_services,b2b_international_trade_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,B2B International Trade Service +international_grocery_store,international_grocery_store,shopping > food_and_beverage_store > grocery_store > international_grocery_store,International Grocery Store +international_restaurant,international_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant,International Fusion Restaurant +internet_cafe,internet_cafe,food_and_drink > casual_eatery > cafe > internet_cafe,Internet Cafe +internet_marketing_service,internet_marketing_service,services_and_business > professional_service > internet_marketing_service,Internet Marketing Service +internet_service_provider,internet_service_provider,services_and_business > technical_service > internet_service_provider,Internet Service Provider +inventory_control_service,inventory_control_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,Inventory Control Service +investing,investing,services_and_business > financial_service > investing,Investing +investment_management_company,investment_management_company,services_and_business > financial_service > investment_management_company,Investment Management Company +ip_and_internet_law,ip_and_internet_law,services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,Ip and Internet Law +irish_pub,irish_pub,food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,Irish Pub +irish_restaurant,irish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,Irish Restaurant +iron_and_steel_industry,metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator,Metal Fabricator +iron_and_steel_store,iron_and_steel_store,services_and_business > b2b_service > wholesaler > iron_and_steel_store,Iron and Steel Store +iron_work,iron_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,Iron Fabricator +ironworkers,ironworker,services_and_business > building_or_construction_service > ironworker,Ironworker +irrigation,irrigation_service,services_and_business > home_service > irrigation_service,Irrigation Service +irrigation_companies,irrigation_service,services_and_business > home_service > irrigation_service,Irrigation Service +island,island,geographic_entities > land_feature > island,Island +israeli_restaurant,israeli_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,Israeli Restaurant +it_consultant,it_consultant,services_and_business > technical_service > it_service_and_computer_repair > it_consultant,IT Consultant +it_service_and_computer_repair,it_service_and_computer_repair,services_and_business > technical_service > it_service_and_computer_repair,IT Service and Computer Repair +it_support_and_service,it_service_and_computer_repair,services_and_business > technical_service > it_service_and_computer_repair,IT Service and Computer Repair +italian_restaurant,italian_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,Italian Restaurant +iv_hydration,iv_hydration,lifestyle_services > wellness_service > iv_hydration,IV Hydration +jail_and_prison,jail_or_prison,community_and_government > public_safety_service > jail_or_prison,Jail or Prison +jamaican_restaurant,jamaican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,Jamaican Restaurant +janitorial_services,janitorial_service,services_and_business > professional_service > cleaning_service > janitorial_service,Janitorial Service +japanese_confectionery_shop,japanese_confectionery_shop,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,Japanese Confectionery Shop +japanese_grocery_store,japanese_grocery_store,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,Japanese Grocery Store +japanese_restaurant,japanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,Japanese Restaurant +jazz_and_blues,jazz_and_blues_venue,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,Jazz and Blues Venue +jehovahs_witness_kingdom_hall,jehovahs_witness_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > restorationist_place_of_worship > jehovahs_witness_place_of_worship,Jehovahs Witness Place of Worship +jet_skis_rental,jet_skis_rental,sports_and_recreation > recreational_equipment_rental > jet_skis_rental,Jet Skis Rental +jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer +jewelry_manufacturer,jewelry_manufacturer,services_and_business > b2b_service > manufacturer > jewelry_manufacturer,Jewelry Manufacturer +jewelry_repair_service,jewelry_repair_service,services_and_business > technical_service > jewelry_repair_service,Jewelry Repair Service +jewelry_store,jewelry_store,shopping > fashion_and_apparel_store > jewelry_store,Jewelry Store +jewish_restaurant,jewish_restaurant,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,Jewish Restaurant +junk_removal_and_hauling,junk_removal_and_hauling,services_and_business > home_service > junk_removal_and_hauling,Junk Removal and Hauling +junkyard,junkyard,shopping > second_hand_store > junkyard,Junkyard +juvenile_detention_center,juvenile_detention_center,community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,Juvenile Detention Center +karaoke,karaoke_venue,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,Karaoke Venue +karaoke_rental,karaoke_rental,services_and_business > event_or_party_service > karaoke_rental,Karaoke Rental +karate_club,karate_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,Karate Club +key_and_locksmith,key_and_locksmith,services_and_business > home_service > key_and_locksmith,Key and Locksmith +kickboxing_club,kickboxing_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,Kickboxing Club +kids_hair_salon,kids_hair_salon,lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,Kids Hair Salon +kids_recreation_and_party,kids_recreation_and_party,services_and_business > event_or_party_service > kids_recreation_and_party,Kids Recreation and Party +kiosk,kiosk,shopping > kiosk,Kiosk +kitchen_and_bath,kitchen_and_bath_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,Kitchen and Bath Store +kitchen_incubator,kitchen_incubator,services_and_business > real_estate_service > kitchen_incubator,Kitchen Incubator +kitchen_remodeling,kitchen_remodeling,services_and_business > home_service > kitchen_remodeling,Kitchen Remodeling +kitchen_supply_store,kitchen_supply_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,Kitchen Supply Store +kiteboarding,kiteboarding,sports_and_recreation > sport_or_fitness_facility > kiteboarding,Kiteboarding +kiteboarding_instruction,kiteboarding_instruction,sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,Kiteboarding Instruction +knife_sharpening,knife_sharpening,services_and_business > home_service > knife_sharpening,Knife Sharpening +knitting_supply,knitting_supply_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,Knitting Supply Store +kofta_restaurant,kofta_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,Kofta Restaurant +kombucha,kombucha_bar,food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,Kombucha Bar +korean_grocery_store,korean_grocery_store,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,Korean Grocery Store +korean_restaurant,korean_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,Korean Restaurant +kosher_grocery_store,kosher_grocery_store,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,Kosher Grocery Store +kosher_restaurant,kosher_restaurant,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,Kosher Restaurant +kurdish_restaurant,kurdish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,Kurdish Restaurant +labor_union,labor_union,community_and_government > civic_organization > labor_union,Labor Union +laboratory,laboratory,services_and_business > technical_service > laboratory,Laboratory +laboratory_equipment_supplier,laboratory_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,Laboratory Equipment Supplier +laboratory_testing,laboratory_testing,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,Laboratory Testing +lactation_services,lactation_service,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,Lactation Service +lake,lake,geographic_entities > water_feature > lake,Lake +land_surveying,land_surveying,services_and_business > real_estate_service > land_surveying,Land Surveying +landmark_and_historical_building,historic_site,cultural_and_historic > historic_site,Historic Site +landscape_architect,landscape_architect,services_and_business > home_service > landscaping > landscape_architect,Landscape Architect +landscaping,landscaping,services_and_business > home_service > landscaping,Landscaping +language_school,language_school,education > place_of_learning > specialty_school > language_school,Language School +laotian_restaurant,laotian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,Laotian Restaurant +laser_cutting_service_provider,laser_cutting_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,Laser Cutting Service +laser_eye_surgery_lasik,refractive_surgery_or_lasik,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,Refractive Surgery or Lasik +laser_hair_removal,laser_hair_removal,lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,Laser Hair Removal +laser_tag,laser_tag,sports_and_recreation > sport_or_fitness_facility > laser_tag,Laser Tag +latin_american_restaurant,latin_american_restaurant,food_and_drink > restaurant > latin_american_restaurant,Latin American Restaurant +laundromat,laundromat,services_and_business > laundry_service > laundromat,Laundromat +laundry_services,laundry_service,services_and_business > laundry_service,Laundry Service +law_enforcement,police_station,community_and_government > public_safety_service > police_station,Police Station +law_schools,law_school,education > place_of_learning > college_university > law_school,Law School +lawn_bowling_club,lawn_bowling_club,sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,Lawn Bowling Club +lawn_mower_repair_service,lawn_mower_repair_service,services_and_business > home_service > lawn_mower_repair_service,Lawn Mower Repair Service +lawn_mower_store,lawn_mower_store,shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,Lawn Mower Store +lawn_service,lawn_service,services_and_business > home_service > landscaping > lawn_service,Lawn Service +lawyer,attorney_or_law_firm,services_and_business > legal_service > attorney_or_law_firm,Attorney or Law Firm +leather_goods,leather_goods_store,shopping > fashion_and_apparel_store > leather_goods_store,Leather Goods Store +leather_products_manufacturer,leather_products_manufacturer,services_and_business > b2b_service > manufacturer > leather_products_manufacturer,Leather Products Manufacturer +lebanese_restaurant,lebanese_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,Lebanese Restaurant +legal_services,legal_service,services_and_business > legal_service,Legal Service +library,library,education > library,Library +lice_treatment,specialized_health_care,health_care > outpatient_care_facility > specialized_health_care,Specialized Health Care +life_coach,life_coach,lifestyle_services > personal_or_beauty_service > life_coach,Life Coach +life_insurance,life_insurance,services_and_business > financial_service > insurance_agency > life_insurance,Life Insurance +light_rail_and_subway_stations,light_rail_and_subway_station,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > light_rail_and_subway_station,Light Rail and Subway Station +lighthouse,lighthouse,cultural_and_historic > historic_site > lighthouse,Lighthouse +lighting_fixture_manufacturers,lighting_fixture_manufacturer,services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,Lighting Fixture Manufacturer +lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,services_and_business > home_service > lighting_fixtures_and_equipment,Lighting Fixtures and Equipment +lighting_store,lighting_store,shopping > specialty_store > hardware_home_and_garden_store > lighting_store,Lighting Store +lime_professionals,lime_professional,services_and_business > building_or_construction_service > lime_professional,Lime Professional +limo_services,limo_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,Limo Service +linen,linen_store,shopping > specialty_store > hardware_home_and_garden_store > linen_store,Linen Store +lingerie_store,lingerie_store,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,Lingerie Store +lingerie_wholesaler,lingerie_wholesaler,services_and_business > b2b_service > wholesaler > lingerie_wholesaler,Lingerie Wholesaler +liquor_store,liquor_store,shopping > food_and_beverage_store > liquor_store,Liquor Store +live_and_raw_food_restaurant,live_and_raw_food_restaurant,food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,Live and Raw Food Restaurant +livestock_breeder,livestock_breeder,services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,Livestock Breeder +livestock_dealers,livestock_dealer,services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,Livestock Dealer +livestock_feed_and_supply_store,livestock_feed_and_supply_store,shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,Livestock Feed and Supply Store +local_and_state_government_offices,government_office,community_and_government > government_office,Government Office +lodge,lodge,lodging > lodge,Lodge +logging_contractor,logging_contractor,services_and_business > b2b_service > b2b_environmental_service > logging_contractor,Logging Contractor +logging_equipment_and_supplies,logging_equipment_and_supplies,services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,Logging Equipment and Supplies +logging_services,logging_service,services_and_business > b2b_service > b2b_environmental_service > logging_service,Logging Service +lookout,lookout,geographic_entities > built_feature > lookout,Lookout +lottery_ticket,lottery_vendor,arts_and_entertainment > gaming_venue > lottery_vendor,Lottery Vendor +lounge,lounge,food_and_drink > alcoholic_beverage_venue > lounge,Lounge +low_income_housing,low_income_housing,services_and_business > housing_or_property_service > low_income_housing,Low Income Housing +luggage_storage,luggage_storage,travel_and_transportation > travel_service > luggage_storage,Luggage Storage +luggage_store,luggage_store,shopping > fashion_and_apparel_store > luggage_store,Luggage Store +lumber_store,lumber_store,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,Lumber Store +macarons,macaron_shop,food_and_drink > casual_eatery > bakery > macaron_shop,Macaron Shop +machine_and_tool_rentals,machine_and_tool_rental,services_and_business > rental_service > machine_and_tool_rental,Machine and Tool Rental +machine_shop,machine_shop,services_and_business > technical_service > machine_shop,Machine Shop +magician,magician,services_and_business > event_or_party_service > magician,Magician +mailbox_center,mailbox_center,services_and_business > shipping_or_delivery_service > mailbox_center,Mailbox Center +major_airports,airport,travel_and_transportation > air_transport_facility_or_service > airport,Airport +makerspace,makerspace,arts_and_entertainment > science_attraction > makerspace,Makerspace +makeup_artist,makeup_artist,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,Makeup Artist +malaysian_restaurant,malaysian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,Malaysian Restaurant +manufacturers_agents_and_representatives,manufacturer,services_and_business > b2b_service > manufacturer,Manufacturer +manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant +marble_and_granite_professionals,marble_and_granite_professional,services_and_business > building_or_construction_service > marble_and_granite_professional,Marble and Granite Professional +marching_band,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,Music Venue +marina,marina,geographic_entities > built_feature > marina,Marina +market_stall,market_stall,shopping > market > market_stall,Market Stall +marketing_agency,marketing_agency,services_and_business > professional_service > marketing_agency,Marketing Agency +marketing_consultant,b2b_marketing_consultant,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_marketing_consultant,B2B Marketing Consultant +marriage_or_relationship_counselor,marriage_or_relationship_counseling,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,Marriage or Relationship Counseling +martial_arts_club,martial_arts_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club,Martial Arts Club +masonry_concrete,masonry_concrete,services_and_business > home_service > masonry_concrete,Masonry Concrete +masonry_contractors,masonry_contractor,services_and_business > building_or_construction_service > masonry_contractor,Masonry Contractor +mass_media,media_service,services_and_business > media_service,Media Service +massage,massage_therapy,lifestyle_services > wellness_service > massage_therapy,Massage Therapy +massage_school,massage_school,education > place_of_learning > specialty_school > massage_school,Massage School +massage_therapy,massage_therapy,lifestyle_services > wellness_service > massage_therapy,Massage Therapy +matchmaker,matchmaker,lifestyle_services > personal_or_beauty_service > matchmaker,Matchmaker +maternity_centers,maternity_center,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,Maternity Center +maternity_wear,maternity_wear,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,Maternity Wear +mattress_manufacturing,mattress_manufacturing,services_and_business > b2b_service > manufacturer > mattress_manufacturing,Mattress Manufacturing +mattress_store,mattress_store,shopping > specialty_store > hardware_home_and_garden_store > mattress_store,Mattress Store +meat_restaurant,meat_restaurant,food_and_drink > restaurant > meat_restaurant,Meat Restaurant +meat_shop,butcher_shop,shopping > food_and_beverage_store > butcher_shop,Butcher Shop +meat_wholesaler,meat_wholesaler,services_and_business > b2b_service > wholesaler > meat_wholesaler,Meat Wholesaler +meatball_restaurant,meatball_restaurant,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,Meatball Restaurant +mechanical_engineers,mechanical_engineer,services_and_business > building_or_construction_service > mechanical_engineer,Mechanical Engineer +media_agency,media_agency,services_and_business > media_service > media_news_company > media_agency,Media Agency +media_critic,media_critic,services_and_business > media_service > media_critic,Media Critic +media_news_company,media_news_company,services_and_business > media_service > media_news_company,Media News Company +media_news_website,media_news_website,services_and_business > media_service > media_news_website,Media News Website +media_restoration_service,media_restoration_service,services_and_business > media_service > media_restoration_service,Media Restoration Service +mediator,mediator,services_and_business > legal_service > mediator,Mediator +medical_cannabis_referral,medical_cannabis_referral,health_care > medical_service > medical_cannabis > medical_cannabis_referral,Medical Cannabis Referral +medical_center,outpatient_care_facility,health_care > outpatient_care_facility,Outpatient Care Facility +medical_law,medical_law,services_and_business > legal_service > attorney_or_law_firm > medical_law,Medical Law +medical_research_and_development,medical_research_institute,education > research_institute > medical_research_institute,Medical Research Institute +medical_school,medical_school,education > place_of_learning > specialty_school > medical_school,Medical School +medical_sciences_schools,medical_sciences_school,education > place_of_learning > college_university > medical_sciences_school,Medical Sciences School +medical_service_organizations,medical_service_organization,health_care > medical_service > medical_service_organization,Medical Service Organization +medical_spa,medical_spa,lifestyle_services > wellness_service > spa > medical_spa,Medical Spa +medical_supply,medical_supply_store,shopping > specialty_store > medical_supply_store,Medical Supply Store +medical_transportation,medical_transportation,health_care > medical_service > medical_transportation,Medical Transportation +meditation_center,meditation_center,lifestyle_services > wellness_service > meditation_center,Meditation Center +mediterranean_restaurant,mediterranean_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,Mediterranean Restaurant +memorial_park,memorial_park,cultural_and_historic > memorial_site > memorial_park,Memorial Park +memory_care,memory_care_facility,services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,Memory Care Facility +mens_clothing_store,mens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,Men's Clothing Store +merchandising_service,merchandising_service,services_and_business > professional_service > merchandising_service,Merchandising Service +metal_detector_services,metal_detector_service,services_and_business > technical_service > metal_detector_service,Metal Detector Service +metal_fabricator,metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator,Metal Fabricator +metal_materials_and_experts,metal_material_expert,services_and_business > building_or_construction_service > metal_material_expert,Metal Material Expert +metal_plating_service,metal_plating_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,Metal Plating Service +metal_supplier,metal_supplier,services_and_business > b2b_service > supplier_or_distributor > metal_supplier,Metal Supplier +metals,metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator,Metal Fabricator +metro_station,metro_station,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,Metro Station +mexican_grocery_store,mexican_grocery_store,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,Mexican Grocery Store +mexican_restaurant,mexican_restaurant,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,Mexican Restaurant +middle_eastern_restaurant,middle_eastern_restaurant,food_and_drink > restaurant > middle_eastern_restaurant,Middle Eastern Restaurant +middle_school,middle_school,education > place_of_learning > school > middle_school,Middle School +midwife,midwifery,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,Midwifery +military_museum,military_museum,arts_and_entertainment > museum > military_museum,Military Museum +military_surplus_store,military_surplus_store,shopping > specialty_store > tactical_supply_store > military_surplus_store,Military Surplus Store +milk_bar,milk_bar,food_and_drink > non_alcoholic_beverage_venue > milk_bar,Milk Bar +milkshake_bar,milkshake_bar,food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,Milkshake Bar +mills,mill,services_and_business > b2b_service > manufacturer > mill,Mill +miniature_golf_course,miniature_golf_course,sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,Miniature Golf Course +mining,b2b_mining,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,B2B Mining +mission,historic_mission,cultural_and_historic > historic_site > historic_mission,Historic Mission +misting_system_services,misting_system_service,services_and_business > home_service > misting_system_service,Misting System Service +mobile_clinic,mobile_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,Mobile Clinic +mobile_dent_repair,mobile_dent_repair,travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,Mobile Dent Repair +mobile_home_dealer,mobile_home_dealer,services_and_business > real_estate_service > mobile_home_dealer,Mobile Home Dealer +mobile_home_park,mobile_home_park,services_and_business > housing_or_property_service > mobile_home_park,Mobile Home Park +mobile_home_repair,mobile_home_repair,services_and_business > home_service > mobile_home_repair,Mobile Home Repair +mobile_phone_accessories,mobile_phone_accessory_store,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,Mobile Phone Accessory Store +mobile_phone_repair,mobile_phone_repair,services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,Mobile Phone Repair +mobile_phone_store,mobile_phone_store,shopping > specialty_store > electronics_store > mobile_phone_store,Mobile Phone Store +mobility_equipment_services,mobility_equipment_service,services_and_business > family_service > mobility_equipment_service,Mobility Equipment Service +modern_art_museum,modern_art_museum,arts_and_entertainment > museum > art_museum > modern_art_museum,Modern Art Museum +mohel,mohel,services_and_business > event_or_party_service > mohel,Mohel +molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant +money_transfer_services,money_transfer_service,services_and_business > financial_service > money_transfer_service,Money Transfer Service +mongolian_restaurant,mongolian_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,Mongolian Restaurant +montessori_school,montessori_school,education > place_of_learning > school > montessori_school,Montessori School +monument,monument,cultural_and_historic > memorial_site > monument,Monument +mooring_service,mooring_service,travel_and_transportation > vehicle_service > boat_service > mooring_service,Mooring Service +moroccan_restaurant,moroccan_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,Moroccan Restaurant +mortgage_broker,mortgage_broker,services_and_business > financial_service > mortgage_broker,Mortgage Broker +mortgage_lender,mortgage_lender,services_and_business > financial_service > installment_loans > mortgage_lender,Mortgage Lender +mortuary_services,mortuary_service,services_and_business > family_service > funeral_service > mortuary_service,Mortuary Service +mosque,muslim_place_of_worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,Muslim Place of Worship +motel,motel,lodging > hotel > motel,Motel +motor_freight_trucking,motor_freight_trucking,services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,Motor Freight Trucking +motorcycle_dealer,motorcycle_dealer,shopping > vehicle_dealer > motorcycle_dealer,Motorcycle Dealer +motorcycle_gear,motorcycle_parts_store,shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,Motorcycle Parts Store +motorcycle_manufacturer,motorcycle_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,Motorcycle Manufacturer +motorcycle_parking,motorcycle_parking,travel_and_transportation > parking > motorcycle_parking,Motorcycle Parking +motorcycle_rentals,motorcycle_rental_service,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,Motorcycle Rental Service +motorcycle_repair,motorcycle_repair,travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,Motorcycle Repair +motorsport_vehicle_dealer,motorsport_vehicle_dealer,shopping > vehicle_dealer > motorsport_vehicle_dealer,Motorsport Vehicle Dealer +motorsport_vehicle_repair,motorsport_vehicle_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,Motorsport Vehicle Repair +motorsports_store,motorsports_store,shopping > specialty_store > vehicle_parts_store > motorsports_store,Motorsports Store +mountain,mountain,geographic_entities > land_feature > mountain,Mountain +mountain_bike_parks,mountain_bike_park,sports_and_recreation > park > mountain_bike_park,Mountain Bike Park +mountain_bike_trails,mountain_bike_trail,sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,Mountain Bike Trail +mountain_huts,mountain_hut,lodging > mountain_hut,Mountain Hut +movers,mover,services_and_business > home_service > mover,Mover +movie_critic,movie_critic,services_and_business > media_service > media_critic > movie_critic,Movie Critic +movie_television_studio,movie_television_studio,services_and_business > media_service > media_news_company > movie_television_studio,Movie Television Studio +muay_thai_club,muay_thai_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,Muay Thai Club +mulled_wine,beer_wine_spirits_store,shopping > food_and_beverage_store > beer_wine_spirits_store,Beer Wine Spirits Store +museum,museum,arts_and_entertainment > museum,Museum +music_and_dvd_store,music_and_dvd_store,shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,Music and DVD Store +music_critic,music_critic,services_and_business > media_service > media_critic > music_critic,Music Critic +music_festivals_and_organizations,music_festival_venue,arts_and_entertainment > festival_venue > music_festival_venue,Music Festival Venue +music_production,music_production,services_and_business > media_service > media_news_company > music_production,Music Production +music_production_services,music_production_service,services_and_business > media_service > music_production_service,Music Production Service +music_school,music_school,education > place_of_learning > specialty_school > music_school,Music School +music_venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,Music Venue +musical_band_orchestras_and_symphonies,band_orchestra_symphony,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,Band Orchestra Symphony +musical_instrument_services,musical_instrument_service,services_and_business > media_service > musical_instrument_service,Musical Instrument Service +musical_instrument_store,musical_instrument_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store,Musical Instrument Store +musician,musician,services_and_business > event_or_party_service > musician,Musician +mystic,spiritual_advising,arts_and_entertainment > spiritual_advising,Spiritual Advising +nail_salon,nail_salon,lifestyle_services > personal_or_beauty_service > nail_salon,Nail Salon +nanny_services,nanny_service,services_and_business > family_service > nanny_service,Nanny Service +nasi_restaurant,nasi_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,Nasi Restaurant +national_museum,national_museum,arts_and_entertainment > museum > national_museum,National Museum +national_park,national_park,sports_and_recreation > park > national_park,National Park +national_security_services,national_security_service,community_and_government > government_office > national_security_service,National Security Service +natural_gas_supplier,natural_gas_utility_provider,community_and_government > public_utility > natural_gas_utility_provider,Natural Gas Utility Provider +natural_hot_springs,hot_springs,geographic_entities > water_feature > hot_springs,Hot Springs +nature_reserve,nature_reserve,geographic_entities > land_feature > nature_reserve,Nature Reserve +naturopathic_holistic,naturopathic_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,Naturopathic Medicine +nephrologist,nephrology,health_care > outpatient_care_facility > specialized_health_care > nephrology,Nephrology +neurologist,neurology,health_care > outpatient_care_facility > specialized_health_care > neurology,Neurology +neuropathologist,neuropathology,health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,Neuropathology +neurotologist,neurotology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,Neurotology +newspaper_advertising,b2b_newspaper_advertising,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_newspaper_advertising,B2B Newspaper Advertising +newspaper_and_magazines_store,newspaper_and_magazines_store,shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,Newspaper and Magazines Store +nicaraguan_restaurant,nicaraguan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,Nicaraguan Restaurant +nigerian_restaurant,nigerian_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,Nigerian Restaurant +night_market,night_market,shopping > market > night_market,Night Market +non_governmental_association,non_governmental_association,community_and_government > civic_organization > non_governmental_association,Non Governmental Association +noodles_restaurant,ramen_restaurant,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,Ramen Restaurant +norwegian_restaurant,norwegian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,Norwegian Restaurant +notary_public,notary_public,services_and_business > legal_service > notary_public,Notary Public +nudist_clubs,naturist_club,sports_and_recreation > sport_or_recreation_club > naturist_club,Naturist Club +nurse_practitioner,nursing,health_care > outpatient_care_facility > specialized_health_care > nursing,Nursing +nursery_and_gardening,nursery_and_gardening_store,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,Nursery and Gardening Store +nursing_school,nursing_school,education > place_of_learning > specialty_school > nursing_school,Nursing School +nutritionist,nutrition_service,lifestyle_services > wellness_service > nutrition_service,Nutrition Service +observatory,observatory,arts_and_entertainment > science_attraction > observatory,Observatory +obstetrician_and_gynecologist,obstetrics_and_gynecology,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,Obstetrics and Gynecology +occupational_medicine,occupational_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,Occupational Medicine +occupational_safety,occupational_safety,services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,Occupational Safety +occupational_therapy,occupational_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,Occupational Therapy +office_cleaning,office_cleaning,services_and_business > professional_service > cleaning_service > office_cleaning,Office Cleaning +office_equipment,office_supply_store,shopping > specialty_store > office_supply_store,Office Supply Store +office_of_vital_records,office_of_vital_records,community_and_government > government_office > office_of_vital_records,Office of Vital Records +officiating_services,officiating_service,services_and_business > event_or_party_service > officiating_service,Officiating Service +oil_and_gas,b2b_oil_and_gas,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,B2B Oil and Gas +oil_and_gas_exploration_and_development,b2b_oil_and_gas_exploration_and_development,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_exploration_and_development,B2B Oil and Gas Exploration and Development +oil_and_gas_field_equipment_and_services,b2b_oil_and_gas_equipment,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_and_gas_equipment,B2B Oil and Gas Equipment +oil_change_station,oil_change_station,travel_and_transportation > vehicle_service > automotive_service > oil_change_station,Oil Change Station +oil_refiners,b2b_oil_refinery,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,B2B Oil Refinery +olive_oil,olive_oil_store,shopping > food_and_beverage_store > olive_oil_store,Olive Oil Store +oncologist,oncology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,Oncology +online_shop,shopping,shopping,Shopping +onsen,onsen,lifestyle_services > wellness_service > public_bath_house > onsen,Onsen +opera_and_ballet,opera_and_ballet,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,Opera and Ballet +ophthalmologist,ophthalmology,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,Ophthalmology +optical_wholesaler,optical_wholesaler,services_and_business > b2b_service > wholesaler > optical_wholesaler,Optical Wholesaler +optometrist,optometry,health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,Optometry +oral_surgeon,oral_and_maxillofacial_surgery,health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery +orchard,orchard,services_and_business > agricultural_service > farm > orchard,Orchard +orchards_production,orchards_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,Orchards Production +organ_and_tissue_donor_service,organ_and_tissue_donor_service,health_care > specialized_medical_facility > organ_and_tissue_donor_service,Organ and Tissue Donor Service +organic_grocery_store,organic_grocery_store,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,Organic Grocery Store +organization,civic_organization,community_and_government > civic_organization,Civic Organization +oriental_restaurant,asian_restaurant,food_and_drink > restaurant > asian_restaurant,Asian Restaurant +orthodontist,orthodontics,health_care > outpatient_care_facility > dental_clinic > orthodontics,Orthodontics +orthopedic_shoe_store,orthopedic_shoe_store,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,Orthopedic Shoe Store +orthopedist,orthopedics,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,Orthopedics +orthotics,orthotics,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,Orthotics +osteopath,osteopathic_medicine,health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,Osteopathic Medicine +osteopathic_physician,osteopathic_medicine,health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,Osteopathic Medicine +otologist,otology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,Otology +outdoor_advertising,b2b_outdoor_advertising,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_outdoor_advertising,B2B Outdoor Advertising +outdoor_furniture_store,outdoor_furniture_store,shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,Outdoor Furniture Store +outdoor_gear,outdoor_store,shopping > specialty_store > sporting_goods_store > outdoor_store,Outdoor Store +outdoor_movies,outdoor_movie_space,arts_and_entertainment > movie_theater > outdoor_movie_space,Outdoor Movie Space +outlet_store,outlet_store,shopping > specialty_store > outlet_store,Outlet Store +oxygen_bar,oxygen_bar,lifestyle_services > wellness_service > oxygen_bar,Oxygen Bar +package_locker,package_locker,services_and_business > storage_facility > package_locker,Package Locker +packaging_contractors_and_service,packaging_contractors_and_service,services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,Packaging Contractors and Service +packing_services,packing_service,services_and_business > home_service > packing_service,Packing Service +packing_supply,packing_supply_store,shopping > specialty_store > office_supply_store > packing_supply_store,Packing Supply Store +paddle_tennis_club,paddle_tennis_club,sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,Paddle Tennis Club +paddleboard_rental,paddleboard_rental,sports_and_recreation > recreational_equipment_rental > paddleboard_rental,Paddleboard Rental +paddleboarding_center,paddleboarding_center,sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,Paddleboarding Center +paddleboarding_lessons,paddleboarding_lessons,sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,Paddleboarding Lessons +pain_management,pain_management,health_care > outpatient_care_facility > specialized_health_care > pain_management,Pain Management +paint_and_sip,paint_and_sip_venue,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,Paint and Sip Venue +paint_store,paint_store,shopping > specialty_store > hardware_home_and_garden_store > paint_store,Paint Store +paint_your_own_pottery,paint_your_own_pottery_venue,arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,Paint Your Own Pottery Venue +paintball,paintball,sports_and_recreation > sport_or_fitness_facility > paintball,Paintball +painting,painting,services_and_business > home_service > painting,Painting +pakistani_restaurant,pakistani_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,Pakistani Restaurant +palace,palace,cultural_and_historic > historic_site > palace,Palace +pan_asian_restaurant,pan_asian_restaurant,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,Pan Asian Restaurant +panamanian_restaurant,panamanian_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,Panamanian Restaurant +pancake_house,pancake_house,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,Pancake House +paper_mill,paper_mill,services_and_business > b2b_service > manufacturer > mill > paper_mill,Paper Mill +paraguayan_restaurant,paraguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,Paraguayan Restaurant +paralegal_services,paralegal_service,services_and_business > legal_service > attorney_or_law_firm > paralegal_service,Paralegal Service +parasailing_ride_service,parasailing_ride_service,sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,Parasailing Ride Service +parenting_classes,parenting_class,education > place_of_learning > specialty_school > parenting_class,Parenting Class +park,park,sports_and_recreation > park,Park +park_and_rides,park_and_ride,travel_and_transportation > parking > park_and_ride,Park and Ride +parking,parking,travel_and_transportation > parking,Parking +party_and_event_planning,party_and_event_planning,services_and_business > event_or_party_service > party_and_event_planning,Party and Event Planning +party_bike_rental,party_bike_rental,services_and_business > event_or_party_service > party_bike_rental,Party Bike Rental +party_bus_rental,party_bus_rental,services_and_business > event_or_party_service > party_bus_rental,Party Bus Rental +party_character,party_character,services_and_business > event_or_party_service > party_character,Party Character +party_equipment_rental,party_equipment_rental,services_and_business > event_or_party_service > party_equipment_rental,Party Equipment Rental +party_supply,party_supply_store,shopping > specialty_store > party_supply_store,Party Supply Store +passport_and_visa_services,passport_and_visa_service,travel_and_transportation > travel_service > passport_and_visa_service,Passport and Visa Service +pasta_shop,pasta_store,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,Pasta Store +patent_law,patent_law,services_and_business > legal_service > patent_law,Patent Law +paternity_tests_and_services,paternity_testing,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,Paternity Testing +pathologist,pathology,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,Pathology +patio_covers,patio_covers,services_and_business > home_service > patio_covers,Patio Covers +patisserie_cake_shop,patisserie_cake_shop,shopping > food_and_beverage_store > patisserie_cake_shop,Patisserie Cake Shop +paving_contractor,paving_contractor,services_and_business > home_service > contractor > paving_contractor,Paving Contractor +pawn_shop,pawn_shop,shopping > second_hand_store > pawn_shop,Pawn Shop +payroll_services,payroll_service,services_and_business > professional_service > payroll_service,Payroll Service +pediatric_anesthesiology,pediatric_anesthesiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,Pediatric Anesthesiology +pediatric_cardiology,pediatric_cardiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,Pediatric Cardiology +pediatric_dentist,pediatric_dentistry,health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,Pediatric Dentistry +pediatric_endocrinology,pediatric_endocrinology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,Pediatric Endocrinology +pediatric_gastroenterology,pediatric_gastroenterology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,Pediatric Gastroenterology +pediatric_infectious_disease,pediatric_infectious_disease,health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,Pediatric Infectious Disease +pediatric_nephrology,pediatric_nephrology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,Pediatric Nephrology +pediatric_neurology,pediatric_neurology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,Pediatric Neurology +pediatric_oncology,pediatric_oncology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,Pediatric Oncology +pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery +pediatric_pulmonology,pediatric_pulmonology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,Pediatric Pulmonology +pediatric_radiology,pediatric_radiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,Pediatric Radiology +pediatric_surgery,pediatric_surgery,health_care > specialized_medical_facility > surgery > pediatric_surgery,Pediatric Surgery +pediatrician,pediatric_clinic,health_care > outpatient_care_facility > pediatric_clinic,Pediatric Clinic +pedicab_service,pedicab_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,Pedicab Service +pen_store,pen_store,shopping > specialty_store > office_supply_store > pen_store,Pen Store +pension,pension_office,community_and_government > government_office > pension_office,Pension Office +pentecostal_church,pentecostal_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship > pentecostal_place_of_worship,Pentecostal Place of Worship +performing_arts,performing_arts_venue,arts_and_entertainment > performing_arts_venue,Performing Arts Venue +perfume_store,cosmetics_and_fragrance_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,Cosmetics and Fragrance Store +periodontist,periodontics,health_care > outpatient_care_facility > dental_clinic > periodontics,Periodontics +permanent_makeup,permanent_makeup,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,Permanent Makeup +persian_iranian_restaurant,persian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,Persian Restaurant +personal_assistant,personal_assistant,services_and_business > home_service > personal_assistant,Personal Assistant +personal_care_service,personal_or_beauty_service,lifestyle_services > personal_or_beauty_service,Personal or Beauty Service +personal_chef,personal_chef,services_and_business > event_or_party_service > personal_chef,Personal Chef +personal_injury_law,personal_injury_law,services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,Personal Injury Law +personal_shopper,personal_shopper,shopping > shopping_service > personal_shopper,Personal Shopper +peruvian_restaurant,peruvian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,Peruvian Restaurant +pest_control_service,pest_control_service,services_and_business > home_service > pest_control_service,Pest Control Service +pet_adoption,pet_adoption,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,Pet Adoption +pet_boarding,pet_boarding,lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,Pet Boarding +pet_breeder,pet_breeder,lifestyle_services > animal_or_pet_service > pet_breeder,Pet Breeder +pet_cemetery_and_crematorium_services,pet_cemetery_and_crematorium_service,lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service +pet_groomer,pet_groomer,lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,Pet Groomer +pet_hospice,pet_hospice,lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,Pet Hospice +pet_insurance,pet_insurance,lifestyle_services > animal_or_pet_service > pet_insurance,Pet Insurance +pet_photography,pet_photography,lifestyle_services > animal_or_pet_service > pet_photography,Pet Photography +pet_services,animal_or_pet_service,lifestyle_services > animal_or_pet_service,Animal or Pet Service +pet_sitting,pet_sitting,lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,Pet Sitting +pet_store,pet_store,shopping > specialty_store > animal_and_pet_store > pet_store,Pet Store +pet_training,pet_training,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,Pet Training +pet_transportation,pet_transportation,lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,Pet Transportation +pet_waste_removal,pet_waste_removal,lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,Pet Waste Removal +pets,animal_or_pet_service,lifestyle_services > animal_or_pet_service,Animal or Pet Service +petting_zoo,petting_zoo,arts_and_entertainment > animal_attraction > zoo > petting_zoo,Petting Zoo +pharmaceutical_companies,pharmaceutical_company,services_and_business > corporate_or_business_office > pharmaceutical_company,Pharmaceutical Company +pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler +pharmacy,pharmacy,shopping > specialty_store > pharmacy_and_drug_store > pharmacy,Pharmacy +pharmacy_schools,pharmacy_school,education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,Pharmacy School +phlebologist,phlebology,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,Phlebology +photo_booth_rental,photo_booth_rental,services_and_business > event_or_party_service > photo_booth_rental,Photo Booth Rental +photographer,photography_service,services_and_business > media_service > photography_service,Photography Service +photography_classes,photography_class,education > place_of_learning > specialty_school > photography_class,Photography Class +photography_museum,photography_museum,arts_and_entertainment > museum > art_museum > photography_museum,Photography Museum +photography_store_and_services,camera_and_photography_store,shopping > specialty_store > electronics_store > camera_and_photography_store,Camera and Photography Store +physical_therapy,physical_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,Physical Therapy +physician_assistant,specialized_health_care,health_care > outpatient_care_facility > specialized_health_care,Specialized Health Care +piadina_restaurant,piadina_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,Piadina Restaurant +piano_bar,piano_bar,food_and_drink > alcoholic_beverage_venue > bar > piano_bar,Piano Bar +piano_services,piano_service,services_and_business > media_service > musical_instrument_service > piano_service,Piano Service +piano_store,piano_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,Piano Store +pick_your_own_farm,pick_your_own_farm,shopping > food_and_beverage_store > pick_your_own_farm,Pick Your Own Farm +pie_shop,pie_shop,food_and_drink > casual_eatery > dessert_shop > pie_shop,Pie Shop +pier,pier,geographic_entities > built_feature > pier,Pier +piercing,piercing,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,Piercing +pig_farm,pig_farm,services_and_business > agricultural_service > farm > pig_farm,Pig Farm +pigs_trotters_restaurant,restaurant,food_and_drink > restaurant,Restaurant +pilates_studio,pilates_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,Pilates Studio +pipe_supplier,pipe_supplier,services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,Pipe Supplier +pipeline_transportation,pipeline_transportation,services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,Pipeline Transportation +pizza_delivery_service,pizza_delivery_service,lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,Pizza Delivery Service +pizza_restaurant,pizza_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,Pizza Restaurant +placenta_encapsulation_service,health_care,health_care,Health Care +planetarium,planetarium,arts_and_entertainment > science_attraction > planetarium,Planetarium +plasterer,plasterer,services_and_business > home_service > plasterer,Plasterer +plastic_company,plastics_company,services_and_business > corporate_or_business_office > plastics_company,Plastics Company +plastic_fabrication_company,plastics_company,services_and_business > corporate_or_business_office > plastics_company,Plastics Company +plastic_injection_molding_workshop,plastic_injection_molding_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,Plastic Injection Molding Service +plastic_manufacturer,plastic_manufacturer,services_and_business > b2b_service > manufacturer > plastic_manufacturer,Plastic Manufacturer +plastic_surgeon,plastic_and_reconstructive_surgery,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery +playground,playground,sports_and_recreation > park > playground,Playground +playground_equipment_supplier,playground_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,Playground Equipment Supplier +plaza,public_plaza,community_and_government > public_facility > public_plaza,Public Plaza +plumbing,plumbing,services_and_business > home_service > plumbing,Plumbing +plus_size_clothing,plus_size_clothing_store,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,Plus Size Clothing Store +podiatrist,podiatry,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,Podiatry +podiatry,podiatry,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,Podiatry +poke_restaurant,poke_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,Poke Restaurant +police_department,police_station,community_and_government > public_safety_service > police_station,Police Station +polish_restaurant,polish_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,Polish Restaurant +political_organization,political_organization,community_and_government > civic_organization > political_organization,Political Organization +political_party_office,political_party_office,community_and_government > civic_organization > political_organization > political_party_office,Political Party Office +polynesian_restaurant,polynesian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,Polynesian Restaurant +pool_and_billiards,pool_and_billiards_store,shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,Pool and Billiards Store +pool_and_hot_tub_services,pool_and_hot_tub_service,services_and_business > home_service > pool_and_hot_tub_service,Pool and Hot Tub Service +pool_billiards,pool_billiards,sports_and_recreation > sport_or_fitness_facility > pool_billiards,Pool Billiards +pool_cleaning,pool_cleaning,services_and_business > home_service > pool_cleaning,Pool Cleaning +pool_hall,pool_hall,sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,Pool Hall +pop_up_restaurant,pop_up_restaurant,food_and_drink > restaurant > pop_up_restaurant,Pop Up Restaurant +pop_up_shop,pop_up_store,shopping > specialty_store > pop_up_store,Pop Up Store +popcorn_shop,popcorn_shop,food_and_drink > casual_eatery > popcorn_shop,Popcorn Shop +portuguese_restaurant,portuguese_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,Portuguese Restaurant +post_office,post_office,services_and_business > shipping_or_delivery_service > post_office,Post Office +potato_restaurant,restaurant,food_and_drink > restaurant,Restaurant +poultry_farm,poultry_farm,services_and_business > agricultural_service > farm > poultry_farm,Poultry Farm +poultry_farming,poultry_farming,services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,Poultry Farming +poutinerie_restaurant,poutinerie_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,Poutinerie Restaurant +powder_coating_service,powder_coating_service,services_and_business > industrial_facility_or_service > powder_coating_service,Powder Coating Service +power_plants_and_power_plant_service,b2b_power_plants_and_power_plant_service,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_power_plants_and_power_plant_service,B2B Power Plants and Power Plant Service +prenatal_perinatal_care,prenatal_and_perinatal_care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,Prenatal and Perinatal Care +preschool,preschool,education > place_of_learning > school > preschool,Preschool +pressure_washing,pressure_washing,services_and_business > home_service > pressure_washing,Pressure Washing +pretzels,pretzel_shop,food_and_drink > casual_eatery > bakery > pretzel_shop,Pretzel Shop +preventive_medicine,preventive_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,Preventive Medicine +print_media,print_media,services_and_business > media_service > print_media,Print Media +printing_equipment_and_supply,printing_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,Printing Equipment Supplier +printing_services,printing_service,services_and_business > printing_service,Printing Service +private_association,private_association,services_and_business > corporate_or_business_office > private_association,Private Association +private_equity_firm,private_equity_firm,services_and_business > financial_service > private_equity_firm,Private Equity Firm +private_establishments_and_corporates,corporate_or_business_office,services_and_business > corporate_or_business_office,Corporate or Business Office +private_investigation,private_investigation,services_and_business > legal_service > private_investigation,Private Investigation +private_jet_charters,private_jet_charter,travel_and_transportation > air_transport_facility_or_service > private_jet_charter,Private Jet Charter +private_school,private_school,education > place_of_learning > school > private_school,Private School +private_tutor,private_tutor,education > educational_service > tutoring_service > private_tutor,Private Tutor +process_servers,process_server,services_and_business > legal_service > process_server,Process Server +proctologist,proctology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,Proctology +produce_wholesaler,produce_wholesaler,services_and_business > b2b_service > wholesaler > produce_wholesaler,Produce Wholesaler +product_design,product_design,services_and_business > design_service > product_design,Product Design +professional_services,professional_service,services_and_business > professional_service,Professional Service +professional_sports_league,professional_sport_league,sports_and_recreation > sport_league > professional_sport_league,Professional Sport League +professional_sports_team,professional_sport_team,sports_and_recreation > sport_team > professional_sport_team,Professional Sport Team +promotional_products_and_services,b2b_promotional_products_and_services,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_promotional_products_and_services,B2B Promotional Products and Services +propane_supplier,propane_supplier,services_and_business > b2b_service > supplier_or_distributor > propane_supplier,Propane Supplier +property_management,property_management,services_and_business > real_estate_service > property_management,Property Management +props,specialty_store,shopping > specialty_store,Specialty Store +prosthetics,prosthetics,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,Prosthetics +prosthodontist,prosthodontics,health_care > outpatient_care_facility > dental_clinic > prosthodontics,Prosthodontics +psychiatrist,psychiatry,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,Psychiatry +psychic,psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,Psychic Advising +psychic_medium,psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,Psychic Advising +psychoanalyst,psychoanalysis,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,Psychoanalysis +psychologist,psychology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,Psychology +psychomotor_therapist,psychomotor_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,Psychomotor Therapy +psychotherapist,psychotherapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,Psychotherapy +pub,pub,food_and_drink > alcoholic_beverage_venue > bar > pub,Pub +public_adjuster,public_adjuster,services_and_business > financial_service > public_adjuster,Public Adjuster +public_and_government_association,government_office,community_and_government > government_office,Government Office +public_bath_houses,public_bath_house,lifestyle_services > wellness_service > public_bath_house,Public Bath House +public_health_clinic,public_health_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,Public Health Clinic +public_market,public_market,shopping > market > public_market,Public Market +public_phones,public_phone,community_and_government > public_facility > public_phone,Public Phone +public_plaza,public_plaza,community_and_government > public_facility > public_plaza,Public Plaza +public_relations,public_relations,services_and_business > professional_service > public_relations,Public Relations +public_restrooms,public_restroom,community_and_government > public_facility > public_restroom,Public Restroom +public_school,public_school,education > place_of_learning > school > public_school,Public School +public_service_and_government,community_and_government,community_and_government,Community and Government +public_toilet,public_restroom,community_and_government > public_facility > public_restroom,Public Restroom +public_transportation,public_transit_facility_or_service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,Public Transit Facility or Service +public_utility_company,public_utility,community_and_government > public_utility,Public Utility +publicity_service,b2b_publicity_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_publicity_service,B2B Publicity Service +puerto_rican_restaurant,puerto_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,Puerto Rican Restaurant +pulmonologist,pulmonology,health_care > outpatient_care_facility > specialized_health_care > pulmonology,Pulmonology +pumpkin_patch,pumpkin_patch,arts_and_entertainment > rural_attraction > pumpkin_patch,Pumpkin Patch +qi_gong_studio,qi_gong_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,Qi Gong Studio +quarries,b2b_quarry,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,B2B Quarry +quay,quay,geographic_entities > built_feature > quay,Quay +race_track,race_track,sports_and_recreation > sport_or_fitness_facility > race_track,Race Track +racing_experience,racing_experience,sports_and_recreation > sport_or_fitness_facility > racing_experience,Racing Experience +racquetball_court,racquetball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,Racquetball Court +radio_and_television_commercials,b2b_radio_and_television_commercials,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_radio_and_television_commercials,B2B Radio and Television Commercials +radio_station,radio_station,services_and_business > media_service > media_news_company > radio_station,Radio Station +radiologist,radiology,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,Radiology +rafting_kayaking_area,rafting_kayaking_area,sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,Rafting Kayaking Area +railroad_freight,railroad_freight,services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,Railroad Freight +railway_service,rail_facility_or_service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,Rail Facility or Service +railway_ticket_agent,railway_ticket_agent,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,Railway Ticket Agent +ranch,ranch,services_and_business > agricultural_service > farm > ranch,Ranch +real_estate,real_estate_service,services_and_business > real_estate_service,Real Estate Service +real_estate_agent,real_estate_agent,services_and_business > real_estate_service > real_estate_agent,Real Estate Agent +real_estate_investment,real_estate_investment,services_and_business > financial_service > real_estate_investment,Real Estate Investment +real_estate_law,real_estate_law,services_and_business > legal_service > attorney_or_law_firm > real_estate_law,Real Estate Law +real_estate_photography,real_estate_photography,services_and_business > real_estate_service > real_estate_photography,Real Estate Photography +real_estate_service,real_estate_service,services_and_business > real_estate_service,Real Estate Service +record_label,record_label,services_and_business > media_service > record_label,Record Label +recording_and_rehearsal_studio,recording_and_rehearsal_studio,services_and_business > media_service > recording_and_rehearsal_studio,Recording and Rehearsal Studio +recreation_vehicle_repair,recreation_vehicle_repair,travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,Recreation Vehicle Repair +recreational_vehicle_dealer,recreational_vehicle_dealer,shopping > vehicle_dealer > recreational_vehicle_dealer,Recreational Vehicle Dealer +recreational_vehicle_parts_and_accessories,rv_parts_store,shopping > specialty_store > vehicle_parts_store > rv_parts_store,RV Parts Store +recycling_center,recycling_center,services_and_business > home_service > recycling_center,Recycling Center +refinishing_services,refinishing_service,services_and_business > home_service > refinishing_service,Refinishing Service +reflexology,reflexology,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,Reflexology +registry_office,registry_office,community_and_government > government_office > registry_office,Registry Office +rehabilitation_center,rehabilitation_center,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,Rehabilitation Center +reiki,reiki,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,Reiki +religious_destination,religious_organization,cultural_and_historic > religious_organization,Religious Organization +religious_items,religious_and_spiritual_goods_store,shopping > specialty_store > religious_and_spiritual_goods_store,Religious and Spiritual Goods Store +religious_organization,religious_organization,cultural_and_historic > religious_organization,Religious Organization +religious_school,religious_school,education > place_of_learning > school > religious_school,Religious School +rental_kiosks,rental_kiosk,services_and_business > rental_service > rental_kiosk,Rental Kiosk +rental_service,rental_service,services_and_business > rental_service,Rental Service +rental_services,rental_service,services_and_business > rental_service,Rental Service +reptile_shop,reptile_store,shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,Reptile Store +research_institute,research_institute,education > research_institute,Research Institute +resort,resort,lodging > resort,Resort +rest_areas,rest_stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,Rest Stop +rest_stop,rest_stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,Rest Stop +restaurant,restaurant,food_and_drink > restaurant,Restaurant +restaurant_equipment_and_supply,restaurant_equipment_and_supply,services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,Restaurant Equipment and Supply +restaurant_management,restaurant_management,services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,Restaurant Management +restaurant_wholesale,restaurant_wholesale,services_and_business > b2b_service > wholesaler > restaurant_wholesale,Restaurant Wholesale +retail,shopping,shopping,Shopping +retaining_wall_supplier,retaining_wall_supplier,services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,Retaining Wall Supplier +retina_specialist,retina_services,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,Retina Services +retirement_home,retirement_home,services_and_business > housing_or_property_service > senior_living_facility > retirement_home,Retirement Home +rheumatologist,rheumatology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,Rheumatology +rice_mill,rice_mill,services_and_business > b2b_service > manufacturer > mill > rice_mill,Rice Mill +rice_shop,rice_store,shopping > food_and_beverage_store > specialty_foods_store > rice_store,Rice Store +ride_sharing,ride_share_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,Ride Share Service +river,river,geographic_entities > water_feature > river,River +road_contractor,road_contractor,services_and_business > building_or_construction_service > road_contractor,Road Contractor +road_structures_and_services,road_structures_and_service,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,Road Structures and Service +roadside_assistance,roadside_assistance,travel_and_transportation > vehicle_service > roadside_assistance,Roadside Assistance +rock_climbing_gym,rock_climbing_gym,sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,Rock Climbing Gym +rock_climbing_instructor,rock_climbing_instructor,sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,Rock Climbing Instructor +rock_climbing_spot,rock_climbing_spot,sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,Rock Climbing Spot +rodeo,rodeo,arts_and_entertainment > rural_attraction > rodeo,Rodeo +roller_skating_rink,roller_skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,Roller Skating Rink +romanian_restaurant,romanian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,Romanian Restaurant +roofing,roofing,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,Roofing +rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant +rowing_club,rowing_club,sports_and_recreation > sport_or_recreation_club > rowing_club,Rowing Club +rug_store,rug_store,shopping > specialty_store > hardware_home_and_garden_store > rug_store,Rug Store +rugby_pitch,rugby_pitch,sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,Rugby Pitch +rugby_stadium,rugby_stadium,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,Rugby Stadium +ruin,ruin,cultural_and_historic > historic_site > ruin,Ruin +russian_grocery_store,russian_grocery_store,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,Russian Grocery Store +russian_restaurant,russian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,Russian Restaurant +rv_and_boat_storage_facility,boat_storage_facility,services_and_business > storage_facility > boat_storage_facility,Boat Storage Facility +rv_park,rv_park,lodging > rv_park,RV Park +rv_rentals,rv_rental_service,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,RV Rental Service +rv_storage_facility,rv_storage_facility,services_and_business > storage_facility > rv_storage_facility,RV Storage Facility +ryokan,ryokan,lodging > ryokan,Ryokan +safe_store,safe_store,shopping > specialty_store > safe_store,Safe Store +safety_equipment,safety_equipment_store,shopping > specialty_store > safety_equipment_store,Safety Equipment Store +sailing_area,sailing_area,sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,Sailing Area +sailing_club,sailing_club,sports_and_recreation > sport_or_recreation_club > sailing_club,Sailing Club +sake_bar,sake_bar,food_and_drink > alcoholic_beverage_venue > bar > sake_bar,Sake Bar +salad_bar,salad_bar,food_and_drink > restaurant > salad_bar,Salad Bar +salsa_club,salsa_club,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,Salsa Club +salvadoran_restaurant,salvadoran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,Salvadoran Restaurant +sand_and_gravel_supplier,sand_and_gravel_supplier,services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,Sand and Gravel Supplier +sand_dune,sand_dune,geographic_entities > land_feature > sand_dune,Sand Dune +sandblasting_service,sandblasting_service,services_and_business > industrial_facility_or_service > sandblasting_service,Sandblasting Service +sandwich_shop,sandwich_shop,food_and_drink > casual_eatery > sandwich_shop,Sandwich Shop +saree_shop,saree_shop,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,Saree Shop +sauna,sauna,lifestyle_services > wellness_service > sauna,Sauna +saw_mill,sawmill,services_and_business > b2b_service > manufacturer > mill > sawmill,Sawmill +scale_supplier,scale_supplier,services_and_business > b2b_service > supplier_or_distributor > scale_supplier,Scale Supplier +scandinavian_restaurant,scandinavian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,Scandinavian Restaurant +scavenger_hunts_provider,scavenger_hunt,arts_and_entertainment > gaming_venue > scavenger_hunt,Scavenger Hunt +schnitzel_restaurant,schnitzel_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,Schnitzel Restaurant +school,school,education > place_of_learning > school,School +school_district_offices,school_district_office,education > education_office > school_district_office,School District Office +school_sports_league,school_sport_league,sports_and_recreation > sport_league > school_sport_league,School Sport League +school_sports_team,school_sport_team,sports_and_recreation > sport_team > school_sport_team,School Sport Team +science_museum,science_museum,arts_and_entertainment > museum > science_museum,Science Museum +science_schools,science_school,education > place_of_learning > college_university > science_school,Science School +scientific_laboratories,b2b_scientific_lab,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,B2B Scientific Lab +scooter_dealers,scooter_dealer,shopping > vehicle_dealer > scooter_dealer,Scooter Dealer +scooter_rental,scooter_rental,sports_and_recreation > recreational_equipment_rental > scooter_rental,Scooter Rental +scooter_tours,scooter_tour,travel_and_transportation > travel_service > tour_operator > scooter_tour,Scooter Tour +scottish_restaurant,scottish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,Scottish Restaurant +scout_hall,scout_hall,community_and_government > social_or_community_service > scout_hall,Scout Hall +scrap_metals,b2b_industrial_and_machine_service,services_and_business > b2b_service > b2b_industrial_and_machine_service,B2B Industrial and Machine Service +screen_printing_t_shirt_printing,t_shirt_printing_service,services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,T-shirt Printing Service +scuba_diving_center,scuba_diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,Scuba Diving Center +scuba_diving_instruction,scuba_diving_instruction,sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,Scuba Diving Instruction +sculpture_statue,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,Sculpture Statue +seafood_market,seafood_market,shopping > food_and_beverage_store > seafood_market,Seafood Market +seafood_restaurant,seafood_restaurant,food_and_drink > restaurant > seafood_restaurant,Seafood Restaurant +seafood_wholesaler,seafood_wholesaler,services_and_business > b2b_service > wholesaler > seafood_wholesaler,Seafood Wholesaler +seal_and_hanko_dealers,seal_and_hanko_supplier,services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,Seal and Hanko Supplier +seaplane_bases,seaplane_base,travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,Seaplane Base +secretarial_services,b2b_secretarial_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,B2B Secretarial Service +security_services,security_service,services_and_business > security_service,Security Service +security_systems,security_systems,services_and_business > home_service > security_systems,Security Systems +self_catering_accommodation,self_catering_accommodation,lodging > self_catering_accommodation,Self Catering Accommodation +self_defense_classes,self_defense_class,sports_and_recreation > sport_or_fitness_facility > self_defense_class,Self Defense Class +self_storage_facility,self_storage_facility,services_and_business > storage_facility > self_storage_facility,Self Storage Facility +senegalese_restaurant,senegalese_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,Senegalese Restaurant +senior_citizen_services,senior_citizen_service,community_and_government > social_or_community_service > senior_citizen_service,Senior Citizen Service +septic_services,septic_service,community_and_government > public_utility > septic_service,Septic Service +serbo_croatian_restaurant,serbo_croatian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,Serbo-Croatian Restaurant +service_apartments,service_apartment,lodging > service_apartment,Service Apartment +session_photography,session_photography_service,services_and_business > media_service > photography_service > session_photography_service,Session Photography Service +sewing_and_alterations,sewing_and_alterations,services_and_business > home_service > sewing_and_alterations,Sewing and Alterations +sex_therapist,sex_therapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,Sex Therapy +shades_and_blinds,shades_and_blinds,services_and_business > home_service > shades_and_blinds,Shades and Blinds +shared_office_space,shared_office_space,services_and_business > real_estate_service > shared_office_space,Shared Office Space +shaved_ice_shop,shaved_ice_shop,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,Shaved Ice Shop +shaved_snow_shop,shaved_ice_shop,food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,Shaved Ice Shop +sheet_metal,sheet_metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,Sheet Metal Fabricator +shinto_shrines,shinto_shrine,cultural_and_historic > religious_landmark > shrine > shinto_shrine,Shinto Shrine +shipping_center,shipping_center,services_and_business > shipping_or_delivery_service > shipping_center,Shipping Center +shipping_collection_services,shipping_collection_service,services_and_business > shipping_or_delivery_service > shipping_collection_service,Shipping Collection Service +shoe_factory,shoe_factory_manufacturer,services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,Shoe Factory Manufacturer +shoe_repair,shoe_repair,lifestyle_services > personal_or_beauty_service > shoe_repair,Shoe Repair +shoe_shining_service,shoe_shining_service,lifestyle_services > personal_or_beauty_service > shoe_shining_service,Shoe Shining Service +shoe_store,shoe_store,shopping > fashion_and_apparel_store > shoe_store,Shoe Store +shooting_range,shooting_range,sports_and_recreation > sport_or_fitness_facility > shooting_range,Shooting Range +shopping,shopping,shopping,Shopping +shopping_center,shopping_mall,shopping > shopping_mall,Shopping Mall +shopping_passage,shopping_passage,shopping > market > shopping_passage,Shopping Passage +shredding_services,shredding_service,services_and_business > professional_service > shredding_service,Shredding Service +shutters,shutters,services_and_business > home_service > shutters,Shutters +siding,siding,services_and_business > home_service > siding,Siding +sightseeing_tour_agency,sightseeing_tour_agency,travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,Sightseeing Tour Agency +sign_making,sign_making,services_and_business > design_service > sign_making,Sign Making +sikh_temple,sikh_place_of_worship,cultural_and_historic > place_of_worship > sikh_place_of_worship,Sikh Place of Worship +silent_disco,silent_disco,services_and_business > event_or_party_service > silent_disco,Silent Disco +singaporean_restaurant,singaporean_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,Singaporean Restaurant +skate_park,skate_park,sports_and_recreation > sport_or_fitness_facility > skate_park,Skate Park +skate_shop,skate_store,shopping > specialty_store > sporting_goods_store > skate_store,Skate Store +skating_rink,skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,Skating Rink +ski_and_snowboard_school,ski_and_snowboard_school,sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,Ski and Snowboard School +ski_and_snowboard_shop,ski_and_snowboard_store,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,Ski and Snowboard Store +ski_area,ski_area,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,Ski Area +ski_resort,ski_resort,lodging > resort > ski_resort,Ski Resort +skilled_nursing,nursing,health_care > outpatient_care_facility > specialized_health_care > nursing,Nursing +skin_care,skin_care_and_makeup,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,Skin Care and Makeup +sky_diving,sky_diving,sports_and_recreation > sport_or_fitness_facility > sky_diving,Sky Diving +skylight_installation,skylight_installation,services_and_business > home_service > windows_installation > skylight_installation,Skylight Installation +skyline,skyline,geographic_entities > scenic_viewpoint > skyline,Skyline +skyscraper,skyscraper,geographic_entities > built_feature > building > skyscraper,Skyscraper +sledding_rental,sledding_rental,sports_and_recreation > recreational_equipment_rental > sledding_rental,Sledding Rental +sleep_specialist,sleep_medicine,health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,Sleep Medicine +sleepwear,sleepwear,shopping > fashion_and_apparel_store > clothing_store > sleepwear,Sleepwear +slovakian_restaurant,slovakian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,Slovakian Restaurant +smokehouse,smokehouse,shopping > food_and_beverage_store > smokehouse,Smokehouse +smoothie_juice_bar,smoothie_juice_bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,Smoothie or Juice Bar +snorkeling,snorkeling,sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,Snorkeling +snorkeling_equipment_rental,snorkeling_equipment_rental,sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,Snorkeling Equipment Rental +snow_removal_service,snow_removal_service,services_and_business > home_service > snow_removal_service,Snow Removal Service +snowboarding_center,snowboarding_center,sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,Snowboarding Center +snuggle_service,snuggle_service,lifestyle_services > wellness_service > snuggle_service,Snuggle Service +soccer_club,soccer_club,sports_and_recreation > sport_or_recreation_club > soccer_club,Soccer Club +soccer_field,soccer_field,sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,Soccer Field +soccer_stadium,soccer_stadium,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,Soccer Stadium +social_and_human_services,social_and_human_service,community_and_government > social_or_community_service > social_and_human_service,Social and Human Service +social_club,social_club,arts_and_entertainment > social_club,Social Club +social_media_agency,social_media_agency,services_and_business > professional_service > social_media_agency,Social Media Agency +social_media_company,social_media_company,services_and_business > media_service > media_news_company > social_media_company,Social Media Company +social_security_law,social_security_law,services_and_business > legal_service > attorney_or_law_firm > social_security_law,Social Security Law +social_security_services,social_security_service,community_and_government > government_office > social_security_service,Social Security Service +social_service_organizations,social_or_community_service,community_and_government > social_or_community_service,Social or Community Service +social_welfare_center,social_welfare_center,community_and_government > social_or_community_service > social_welfare_center,Social Welfare Center +software_development,software_development,services_and_business > technical_service > software_development,Software Development +solar_installation,solar_installation,services_and_business > home_service > solar_installation,Solar Installation +solar_panel_cleaning,solar_panel_cleaning,services_and_business > home_service > solar_panel_cleaning,Solar Panel Cleaning +sommelier_service,sommelier_service,services_and_business > event_or_party_service > sommelier_service,Sommelier Service +sophrologist,sophrology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,Sophrology +soul_food,soul_food,food_and_drink > restaurant > soul_food,Soul Food +soup_restaurant,soup_restaurant,food_and_drink > restaurant > soup_restaurant,Soup Restaurant +south_african_restaurant,south_african_restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,South African Restaurant +southern_restaurant,southern_american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,Southern American Restaurant +souvenir_shop,souvenir_store,shopping > specialty_store > souvenir_store,Souvenir Store +spanish_restaurant,spanish_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,Spanish Restaurant +spas,spa,lifestyle_services > wellness_service > spa,Spa +speakeasy,speakeasy,food_and_drink > alcoholic_beverage_venue > bar > speakeasy,Speakeasy +specialty_foods,specialty_foods_store,shopping > food_and_beverage_store > specialty_foods_store,Specialty Foods Store +specialty_grocery_store,grocery_store,shopping > food_and_beverage_store > grocery_store,Grocery Store +specialty_school,specialty_school,education > place_of_learning > specialty_school,Specialty School +speech_therapist,speech_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,Speech Therapy +speech_training,speech_training,education > place_of_learning > specialty_school > speech_training,Speech Training +sperm_clinic,sperm_clinic,health_care > medical_service > sperm_clinic,Sperm Clinic +spices_wholesaler,spices_wholesaler,services_and_business > b2b_service > wholesaler > spices_wholesaler,Spices Wholesaler +spine_surgeon,spine_surgery,health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,Spine Surgery +spiritual_shop,religious_and_spiritual_goods_store,shopping > specialty_store > religious_and_spiritual_goods_store,Religious and Spiritual Goods Store +sport_equipment_rentals,sport_equipment_rental,sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,Sport Equipment Rental +sporting_goods,sporting_goods_store,shopping > specialty_store > sporting_goods_store,Sporting Goods Store +sports_and_fitness_instruction,sport_or_fitness_facility,sports_and_recreation > sport_or_fitness_facility,Sport or Fitness Facility +sports_and_recreation_rental_and_services,recreational_equipment_rental,sports_and_recreation > recreational_equipment_rental,Recreational Equipment Rental +sports_and_recreation_venue,sport_or_fitness_facility,sports_and_recreation > sport_or_fitness_facility,Sport or Fitness Facility +sports_bar,sports_bar,food_and_drink > alcoholic_beverage_venue > bar > sports_bar,Sports Bar +sports_club_and_league,sport_or_recreation_club,sports_and_recreation > sport_or_recreation_club,Sport or Recreation Club +sports_medicine,sports_medicine,health_care > outpatient_care_facility > specialized_health_care > sports_medicine,Sports Medicine +sports_museum,sports_museum,arts_and_entertainment > museum > sports_museum,Sports Museum +sports_psychologist,sports_psychology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,Sports Psychology +sports_school,sports_school,education > place_of_learning > specialty_school > sports_school,Sports School +sports_wear,sportswear_store,shopping > specialty_store > sporting_goods_store > sportswear_store,Sportswear Store +spray_tanning,spray_tanning,lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,Spray Tanning +spring_supplier,spring_supplier,services_and_business > b2b_service > supplier_or_distributor > spring_supplier,Spring Supplier +squash_court,squash_court,sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,Squash Court +sri_lankan_restaurant,sri_lankan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,Sri Lankan Restaurant +stadium_arena,stadium_arena,arts_and_entertainment > stadium_arena,Stadium Arena +stargazing_area,stargazing_area,geographic_entities > scenic_viewpoint > stargazing_area,Stargazing Area +state_museum,state_museum,arts_and_entertainment > museum > state_museum,State Museum +state_park,state_park,sports_and_recreation > park > state_park,State Park +steakhouse,steakhouse,food_and_drink > restaurant > meat_restaurant > steakhouse,Steakhouse +steel_fabricators,steel_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,Steel Fabricator +stock_and_bond_brokers,stock_and_bond_broker,services_and_business > financial_service > broker > stock_and_bond_broker,Stock and Bond Broker +stocking,clothing_store,shopping > fashion_and_apparel_store > clothing_store,Clothing Store +stone_and_masonry,stone_and_masonry,services_and_business > building_or_construction_service > stone_and_masonry,Stone and Masonry +stone_supplier,stone_supplier,services_and_business > b2b_service > supplier_or_distributor > stone_supplier,Stone Supplier +storage_facility,storage_facility,services_and_business > storage_facility,Storage Facility +storefront_clinic,storefront_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,Storefront Clinic +street_art,street_art,arts_and_entertainment > arts_and_crafts_space > street_art,Street Art +street_vendor,street_vendor,shopping > market > street_vendor,Street Vendor +stress_management_services,stress_management_service,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,Stress Management Service +strip_club,strip_club,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,Strip Club +striptease_dancer,strip_club,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,Strip Club +structural_engineer,structural_engineer,services_and_business > home_service > structural_engineer,Structural Engineer +structure_and_geography,geographic_entities,geographic_entities,Geographic Entities +stucco_services,stucco_service,services_and_business > home_service > stucco_service,Stucco Service +student_union,student_union,education > educational_facility > campus_building > student_union,Student Union +studio_taping,studio_taping,services_and_business > media_service > studio_taping,Studio Taping +sugar_shack,sugar_shack,food_and_drink > casual_eatery > sugar_shack,Sugar Shack +sugaring,sugaring,lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,Sugaring +suicide_prevention_services,suicide_prevention_service,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,Suicide Prevention Service +sunglasses_store,sunglasses_store,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,Sunglasses Store +supermarket,grocery_store,shopping > food_and_beverage_store > grocery_store,Grocery Store +supernatural_reading,spiritual_advising,arts_and_entertainment > spiritual_advising,Spiritual Advising +superstore,superstore,shopping > superstore,Superstore +supper_club,supper_club,food_and_drink > restaurant > supper_club,Supper Club +surf_lifesaving_club,surf_lifesaving_club,sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,Surf Lifesaving Club +surf_shop,surf_store,shopping > specialty_store > sporting_goods_store > surf_store,Surf Store +surfboard_rental,surfboard_rental,sports_and_recreation > recreational_equipment_rental > surfboard_rental,Surfboard Rental +surfing,surfing,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,Surfing +surfing_school,surfing_school,sports_and_recreation > sport_or_fitness_facility > surfing_school,Surfing School +surgeon,surgery,health_care > specialized_medical_facility > surgery,Surgery +surgical_appliances_and_supplies,b2b_surgical_appliances_and_supplies,services_and_business > b2b_service > b2b_medical_support_service > b2b_surgical_appliances_and_supplies,B2B Surgical Appliances and Supplies +surgical_center,surgery_center,health_care > specialized_medical_facility > surgery > surgery_center,Surgery Center +sushi_restaurant,sushi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,Sushi Restaurant +swimming_instructor,swimming_instructor,sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,Swimming Instructor +swimming_pool,swimming_pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,Swimming Pool +swimwear_store,swimwear_store,shopping > specialty_store > sporting_goods_store > swimwear_store,Swimwear Store +swiss_restaurant,swiss_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,Swiss Restaurant +synagogue,jewish_place_of_worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,Jewish Place of Worship +syrian_restaurant,syrian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,Syrian Restaurant +t_shirt_store,t_shirt_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,T-shirt Store +tabac,bar_tabac,food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,Bar Tabac +table_tennis_club,table_tennis_club,sports_and_recreation > sport_or_recreation_club > table_tennis_club,Table Tennis Club +tabletop_games,tabletop_games_store,shopping > specialty_store > toys_and_games_store > tabletop_games_store,Tabletop Games Store +tableware_supplier,tableware_supplier,services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,Tableware Supplier +taco_restaurant,taco_restaurant,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,Taco Restaurant +taekwondo_club,taekwondo_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,Taekwondo Club +tai_chi_studio,tai_chi_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,Tai Chi Studio +taiwanese_restaurant,taiwanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,Taiwanese Restaurant +talent_agency,talent_agency,services_and_business > professional_service > talent_agency,Talent Agency +tanning_bed,tanning_bed,lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,Tanning Bed +tanning_salon,tanning_salon,lifestyle_services > personal_or_beauty_service > tanning_salon,Tanning Salon +tapas_bar,tapas_bar,food_and_drink > casual_eatery > tapas_bar,Tapas Bar +tasting_classes,tasting_class,education > place_of_learning > class_venue > tasting_class,Tasting Class +tatar_restaurant,tatar_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,Tatar Restaurant +tattoo,tattoo,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,Tattoo +tattoo_and_piercing,tattoo_and_piercing,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,Tattoo and Piercing +tattoo_removal,tattoo_removal,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,Tattoo Removal +tax_law,tax_law,services_and_business > legal_service > attorney_or_law_firm > tax_law,Tax Law +tax_office,tax_office,community_and_government > government_office > tax_office,Tax Office +tax_services,tax_service,services_and_business > financial_service > tax_service,Tax Service +taxi_rank,taxi_stand,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,Taxi Stand +taxi_service,taxi_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,Taxi Service +taxidermist,taxidermist,services_and_business > technical_service > taxidermist,Taxidermist +tea_room,tea_room,food_and_drink > non_alcoholic_beverage_venue > tea_room,Tea Room +tea_wholesaler,tea_wholesaler,services_and_business > b2b_service > wholesaler > tea_wholesaler,Tea Wholesaler +team_building_activity,team_building_activity,services_and_business > event_or_party_service > team_building_activity,Team Building Activity +teeth_whitening,teeth_whitening,lifestyle_services > personal_or_beauty_service > teeth_whitening,Teeth Whitening +telecommunications,telecommunications_service,services_and_business > telecommunications_service,Telecommunications Service +telecommunications_company,telecommunications_company,services_and_business > corporate_or_business_office > telecommunications_company,Telecommunications Company +telemarketing_services,b2b_telemarketing_service,services_and_business > b2b_service > b2b_office_and_professional_service > b2b_advertising_and_marketing_service > b2b_telemarketing_service,B2B Telemarketing Service +telephone_services,telephone_service,services_and_business > technical_service > telephone_service,Telephone Service +television_service_providers,television_service_provider,services_and_business > home_service > television_service_provider,Television Service Provider +television_station,television_station,services_and_business > media_service > media_news_company > television_station,Television Station +temp_agency,temp_agency,services_and_business > professional_service > employment_agency > temp_agency,Temp Agency +temple,place_of_worship,cultural_and_historic > place_of_worship,Place of Worship +tenant_and_eviction_law,tenant_and_eviction_law,services_and_business > legal_service > tenant_and_eviction_law,Tenant and Eviction Law +tennis_court,tennis_court,sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,Tennis Court +tennis_stadium,tennis_stadium,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,Tennis Stadium +tent_house_supplier,tent_house_supplier,services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,Tent House Supplier +test_preparation,test_preparation,education > educational_service > test_preparation,Test Preparation +texmex_restaurant,texmex_restaurant,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,Texmex Restaurant +textile_mill,textile_mill,services_and_business > b2b_service > manufacturer > mill > textile_mill,Textile Mill +textile_museum,textile_museum,arts_and_entertainment > museum > art_museum > textile_museum,Textile Museum +thai_restaurant,thai_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,Thai Restaurant +theaters_and_performance_venues,performing_arts_venue,arts_and_entertainment > performing_arts_venue,Performing Arts Venue +theatre,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue,Theatre Venue +theatrical_productions,theatrical_production,services_and_business > media_service > theatrical_production,Theatrical Production +theme_restaurant,theme_restaurant,food_and_drink > restaurant > theme_restaurant,Theme Restaurant +thread_supplier,thread_supplier,services_and_business > b2b_service > supplier_or_distributor > thread_supplier,Thread Supplier +threading_service,threading_service,lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,Threading Service +threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,Threads and Yarns Wholesaler +thrift_store,second_hand_store,shopping > second_hand_store,Second Hand Store +ticket_sales,ticket_office_or_booth,arts_and_entertainment > ticket_office_or_booth,Ticket Office or Booth +tiki_bar,tiki_bar,food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,Tiki Bar +tile_store,tile_store,shopping > specialty_store > hardware_home_and_garden_store > tile_store,Tile Store +tiling,tiling,services_and_business > home_service > tiling,Tiling +tire_dealer_and_repair,tire_dealer_and_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,Tire Dealer and Repair +tire_repair_shop,tire_shop,travel_and_transportation > vehicle_service > automotive_service > tire_shop,Tire Shop +tire_shop,tire_shop,travel_and_transportation > vehicle_service > automotive_service > tire_shop,Tire Shop +tobacco_company,tobacco_company,services_and_business > corporate_or_business_office > tobacco_company,Tobacco Company +tobacco_shop,tobacco_shop,shopping > food_and_beverage_store > tobacco_shop,Tobacco Shop +toll_stations,toll_station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,Toll Station +tools_wholesaler,tools_wholesaler,services_and_business > b2b_service > wholesaler > tools_wholesaler,Tools Wholesaler +topic_concert_venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,Music Venue +topic_publisher,publisher,services_and_business > media_service > media_news_company > publisher,Publisher +tours,tour_operator,travel_and_transportation > travel_service > tour_operator,Tour Operator +tower,historic_tower,cultural_and_historic > historic_site > historic_tower,Historic Tower +tower_communication_service,tower_communication_service,services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,Tower Communication Service +towing_service,towing_service,travel_and_transportation > vehicle_service > automotive_service > towing_service,Towing Service +town_car_service,town_car_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,Town Car Service +town_hall,town_hall,community_and_government > government_office > town_hall,Town Hall +toxicologist,toxicology,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,Toxicology +toy_store,toy_store,shopping > specialty_store > toys_and_games_store > toy_store,Toy Store +track_stadium,track_stadium,arts_and_entertainment > stadium_arena > stadium > track_stadium,Track Stadium +trade_fair,exhibition_and_trade_fair_venue,arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue +traditional_chinese_medicine,traditional_chinese_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,Traditional Chinese Medicine +traditional_clothing,traditional_clothing,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,Traditional Clothing +traffic_school,traffic_school,education > place_of_learning > specialty_school > traffic_school,Traffic School +traffic_ticketing_law,traffic_ticketing_law,services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,Traffic Ticketing Law +trail,recreational_trail_or_path,sports_and_recreation > recreational_trail_or_path,Recreational Trail or Path +trailer_dealer,trailer_dealer,shopping > vehicle_dealer > trailer_dealer,Trailer Dealer +trailer_rentals,trailer_rental_service,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,Trailer Rental Service +trailer_repair,trailer_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,Trailer Repair +train_station,train_station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,Train Station +trains,train,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,Train +trampoline_park,trampoline_park,sports_and_recreation > sport_or_fitness_facility > trampoline_park,Trampoline Park +transcription_services,transcription_service,services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,Transcription Service +translating_and_interpreting_services,translating_and_interpreting_service,services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,Translating and Interpreting Service +translation_services,translation_service,services_and_business > professional_service > translation_service,Translation Service +transmission_repair,transmission_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,Transmission Repair +transport_interchange,transport_interchange,travel_and_transportation > transport_interchange,Transport Interchange +transportation,travel_and_transportation,travel_and_transportation,Travel and Transportation +travel,travel_service,travel_and_transportation > travel_service,Travel Service +travel_agents,travel_agent,travel_and_transportation > travel_service > travel_agent,Travel Agent +travel_company,travel_company,services_and_business > corporate_or_business_office > travel_company,Travel Company +travel_services,travel_service,travel_and_transportation > travel_service,Travel Service +tree_services,tree_service,services_and_business > home_service > landscaping > tree_service,Tree Service +trinidadian_restaurant,trinidadian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,Trinidadian Restaurant +trivia_host,trivia_host,services_and_business > event_or_party_service > trivia_host,Trivia Host +trophy_shop,trophy_store,shopping > specialty_store > trophy_store,Trophy Store +tropical_medicine,tropical_medicine,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,Tropical Medicine +truck_dealer,truck_dealer,shopping > vehicle_dealer > truck_dealer,Truck Dealer +truck_dealer_for_businesses,truck_dealer,shopping > vehicle_dealer > truck_dealer,Truck Dealer +truck_gas_station,truck_gas_station,travel_and_transportation > fueling_station > gas_station > truck_gas_station,Truck Gas Station +truck_rentals,truck_rental_service,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,Truck Rental Service +truck_repair,truck_repair,travel_and_transportation > vehicle_service > automotive_service > truck_repair,Truck Repair +truck_repair_and_services_for_businesses,truck_repair,travel_and_transportation > vehicle_service > automotive_service > truck_repair,Truck Repair +truck_stop,truck_stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,Truck Stop +trucks_and_industrial_vehicles,truck_and_industrial_vehicle_services,services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services,Truck and Industrial Vehicle Services +trusts,trusts,services_and_business > financial_service > trusts,Trusts +tubing_provider,tubing_provider,sports_and_recreation > sport_or_fitness_facility > tubing_provider,Tubing Provider +tui_na,tui_na,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,Tui Na +turkish_baths,turkish_bath,lifestyle_services > wellness_service > public_bath_house > turkish_bath,Turkish Bath +turkish_restaurant,turkish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,Turkish Restaurant +turnery,turnery,services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,Turnery +tutoring_center,tutoring_service,education > educational_service > tutoring_service,Tutoring Service +tv_mounting,tv_mounting,services_and_business > home_service > tv_mounting,TV Mounting +typing_services,typing_service,services_and_business > professional_service > typing_service,Typing Service +ukrainian_restaurant,ukrainian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,Ukrainian Restaurant +ultralight_airports,ultralight_airport,travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,Ultralight Airport +ultrasound_imaging_center,ultrasound_imaging,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,Ultrasound Imaging +undersea_hyperbaric_medicine,hyperbaric_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,Hyperbaric Medicine +unemployment_office,unemployment_office,community_and_government > government_office > unemployment_office,Unemployment Office +uniform_store,uniform_store,shopping > fashion_and_apparel_store > clothing_store > uniform_store,Uniform Store +university_housing,university_housing,services_and_business > housing_or_property_service > university_housing,University Housing +urban_farm,urban_farm,services_and_business > agricultural_service > farm > urban_farm,Urban Farm +urgent_care_clinic,urgent_care_clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,Urgent Care Clinic +urologist,urology,health_care > outpatient_care_facility > specialized_health_care > urology,Urology +uruguayan_restaurant,uruguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,Uruguayan Restaurant +used_bookstore,used_bookstore,shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,Used Bookstore +used_car_dealer,used_auto_dealer,shopping > vehicle_dealer > auto_dealer > used_auto_dealer,Used Auto Dealer +used_vintage_and_consignment,second_hand_clothing_store,shopping > second_hand_store > second_hand_clothing_store,Second Hand Clothing Store +utility_service,public_utility,community_and_government > public_utility,Public Utility +uzbek_restaurant,uzbek_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,Uzbek Restaurant +vacation_rental_agents,vacation_rental_agent,travel_and_transportation > travel_service > vacation_rental_agent,Vacation Rental Agent +valet_service,valet_service,services_and_business > event_or_party_service > valet_service,Valet Service +vascular_medicine,vascular_medicine,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,Vascular Medicine +vegan_restaurant,vegan_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,Vegan Restaurant +vegetarian_restaurant,vegetarian_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,Vegetarian Restaurant +vehicle_shipping,vehicle_shipping,services_and_business > shipping_or_delivery_service > vehicle_shipping,Vehicle Shipping +vehicle_wrap,vehicle_wrap,travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,Vehicle Wrap +vending_machine_supplier,vending_machine_supplier,services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,Vending Machine Supplier +venezuelan_restaurant,venezuelan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,Venezuelan Restaurant +venison_restaurant,venison_restaurant,food_and_drink > restaurant > meat_restaurant > venison_restaurant,Venison Restaurant +venue_and_event_space,event_venue,arts_and_entertainment > event_venue,Event Venue +vermouth_bar,vermouth_bar,food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,Vermouth Bar +veterans_organization,veterans_organization,arts_and_entertainment > social_club > veterans_organization,Veterans Organization +veterinarian,veterinarian,lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,Veterinarian +veterinary_schools,veterinary_school,education > place_of_learning > college_university > medical_sciences_school > veterinary_school,Veterinary School +video_and_video_game_rentals,video_and_video_game_rental,shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,Video and Video Game Rental +video_film_production,video_film_production,services_and_business > media_service > video_film_production,Video Film Production +video_game_critic,video_game_critic,services_and_business > media_service > media_critic > video_game_critic,Video Game Critic +video_game_store,video_game_store,shopping > specialty_store > books_music_and_video_store > video_game_store,Video Game Store +videographer,videographer,services_and_business > event_or_party_service > videographer,Videographer +vietnamese_restaurant,vietnamese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,Vietnamese Restaurant +vinyl_record_store,vinyl_record_store,shopping > specialty_store > books_music_and_video_store > vinyl_record_store,Vinyl Record Store +virtual_reality_center,virtual_reality_center,arts_and_entertainment > science_attraction > virtual_reality_center,Virtual Reality Center +visa_agent,visa_agent,travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,Visa Agent +visitor_center,visitor_center,travel_and_transportation > travel_service > visitor_center,Visitor Center +vitamins_and_supplements,vitamin_and_supplement_store,shopping > food_and_beverage_store > vitamin_and_supplement_store,Vitamin and Supplement Store +vocal_coach,vocal_coach,services_and_business > media_service > musical_instrument_service > vocal_coach,Vocal Coach +vocational_and_technical_school,vocational_and_technical_school,education > place_of_learning > specialty_school > vocational_and_technical_school,Vocational and Technical School +volleyball_club,volleyball_club,sports_and_recreation > sport_or_recreation_club > volleyball_club,Volleyball Club +volleyball_court,volleyball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,Volleyball Court +volunteer_association,volunteer_association,community_and_government > social_or_community_service > volunteer_association,Volunteer Association +waffle_restaurant,waffle_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,Waffle Restaurant +waldorf_school,waldorf_school,education > place_of_learning > school > waldorf_school,Waldorf School +walk_in_clinic,walk_in_clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,Walk-In Clinic +walking_tours,walking_tour,travel_and_transportation > travel_service > tour_operator > walking_tour,Walking Tour +wallpaper_installers,wallpaper_installer,services_and_business > home_service > wallpaper_installer,Wallpaper Installer +wallpaper_store,wallpaper_store,shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,Wallpaper Store +warehouse_rental_services_and_yards,warehouse_rental_service_yard,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse_rental_service_yard,Warehouse Rental Service Yard +warehouses,warehouse,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,Warehouse +washer_and_dryer_repair_service,washer_and_dryer_repair_service,services_and_business > home_service > washer_and_dryer_repair_service,Washer and Dryer Repair Service +watch_repair_service,watch_repair_service,services_and_business > technical_service > watch_repair_service,Watch Repair Service +watch_store,watch_store,shopping > fashion_and_apparel_store > jewelry_store > watch_store,Watch Store +water_delivery,water_delivery,services_and_business > home_service > water_delivery,Water Delivery +water_heater_installation_repair,water_heater_installation_repair,services_and_business > home_service > water_heater_installation_repair,Water Heater Installation Repair +water_park,water_park,sports_and_recreation > park > water_park,Water Park +water_purification_services,water_purification_service,services_and_business > home_service > water_purification_service,Water Purification Service +water_softening_equipment_supplier,water_softening_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,Water Softening Equipment Supplier +water_store,water_store,shopping > food_and_beverage_store > water_store,Water Store +water_supplier,water_utility_provider,community_and_government > public_utility > water_utility_provider,Water Utility Provider +water_taxi,water_taxi_service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,Water Taxi Service +water_treatment_equipment_and_services,b2b_water_treatment_service,services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,B2B Water Treatment Service +waterfall,waterfall,geographic_entities > water_feature > waterfall,Waterfall +waterproofing,waterproofing,services_and_business > home_service > waterproofing,Waterproofing +waxing,waxing,lifestyle_services > personal_or_beauty_service > hair_removal > waxing,Waxing +weather_forecast_services,weather_forecast_service,services_and_business > media_service > media_news_company > weather_forecast_service,Weather Forecast Service +weather_station,weather_station,services_and_business > media_service > weather_station,Weather Station +weaving_mill,weaving_mill,services_and_business > b2b_service > manufacturer > mill > weaving_mill,Weaving Mill +web_designer,web_designer,services_and_business > design_service > web_designer,Web Designer +web_hosting_service,web_hosting_service,services_and_business > technical_service > internet_service_provider > web_hosting_service,Web Hosting Service +wedding_chapel,wedding_chapel,services_and_business > event_or_party_service > wedding_chapel,Wedding Chapel +wedding_planning,wedding_planning,services_and_business > event_or_party_service > wedding_planning,Wedding Planning +weight_loss_center,weight_loss_center,lifestyle_services > wellness_service > weight_loss_center,Weight Loss Center +weir,weir,geographic_entities > built_feature > dam > weir,Weir +welders,welder,services_and_business > building_or_construction_service > welder,Welder +welding_supply_store,welding_supply_store,shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,Welding Supply Store +well_drilling,well_drilling,services_and_business > home_service > well_drilling,Well Drilling +wellness_program,wellness_service,lifestyle_services > wellness_service,Wellness Service +whale_watching_tours,whale_watching_tour,travel_and_transportation > travel_service > tour_operator > whale_watching_tour,Whale Watching Tour +wheel_and_rim_repair,wheel_and_rim_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,Wheel and Rim Repair +whiskey_bar,whiskey_bar,food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,Whiskey Bar +wholesale_florist,wholesale_florist,services_and_business > b2b_service > wholesaler > wholesale_florist,Wholesale Florist +wholesale_grocer,wholesale_grocer,services_and_business > b2b_service > wholesaler > wholesale_grocer,Wholesale Grocer +wholesale_store,warehouse_club_store,shopping > warehouse_club_store,Warehouse Club Store +wholesaler,wholesaler,services_and_business > b2b_service > wholesaler,Wholesaler +wig_store,wig_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,Wig Store +wild_game_meats_restaurant,wild_game_meats_restaurant,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,Wild Game Meats Restaurant +wildlife_control,wildlife_control,services_and_business > environmental_or_ecological_service > wildlife_control,Wildlife Control +wildlife_hunting_range,wildlife_hunting_range,sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,Wildlife Hunting Range +wildlife_sanctuary,wildlife_sanctuary,arts_and_entertainment > animal_attraction > wildlife_sanctuary,Wildlife Sanctuary +wills_trusts_and_probate,wills_trusts_and_probate,services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,Wills Trusts and Probate +wind_energy,wind_energy,services_and_business > utility_energy_infrastructure > wind_energy,Wind Energy +window_supplier,window_supplier,services_and_business > b2b_service > supplier_or_distributor > window_supplier,Window Supplier +window_treatment_store,window_treatment_store,shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,Window Treatment Store +window_washing,window_washing,services_and_business > home_service > window_washing,Window Washing +windows_installation,windows_installation,services_and_business > home_service > windows_installation,Windows Installation +windshield_installation_and_repair,windshield_installation_and_repair,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,Windshield Installation and Repair +windsurfing_center,windsurfing_center,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,Windsurfing Center +wine_bar,wine_bar,food_and_drink > alcoholic_beverage_venue > bar > wine_bar,Wine Bar +wine_tasting_classes,wine_tasting_class,education > place_of_learning > class_venue > tasting_class > wine_tasting_class,Wine Tasting Class +wine_tasting_room,wine_tasting_room,food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,Wine Tasting Room +wine_tours,wine_tour,travel_and_transportation > travel_service > tour_operator > wine_tour,Wine Tour +wine_wholesaler,wine_wholesaler,services_and_business > b2b_service > wholesaler > wine_wholesaler,Wine Wholesaler +winery,winery,food_and_drink > alcoholic_beverage_venue > winery,Winery +wok_restaurant,wok_restaurant,food_and_drink > restaurant > asian_restaurant > wok_restaurant,Wok Restaurant +womens_clothing_store,womens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,Women's Clothing Store +womens_health_clinic,reproductive_perinatal_and_womens_care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care +wood_and_pulp,b2b_environmental_service,services_and_business > b2b_service > b2b_environmental_service,B2B Environmental Service +woodworking_supply_store,woodworking_supply_store,shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,Woodworking Supply Store +workers_compensation_law,workers_compensation_law,services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,Workers Compensation Law +wrap_restaurant,wrap_restaurant,food_and_drink > restaurant > wrap_restaurant,Wrap Restaurant +writing_service,writing_service,services_and_business > professional_service > writing_service,Writing Service +yoga_instructor,yoga_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,Yoga Studio +yoga_studio,yoga_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,Yoga Studio +youth_organizations,youth_organization,community_and_government > social_or_community_service > youth_organization,Youth Organization +ziplining_center,ziplining_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,Ziplining Center +zoo,zoo,arts_and_entertainment > animal_attraction > zoo,Zoo +zorbing_center,sport_or_fitness_facility,sports_and_recreation > sport_or_fitness_facility,Sport or Fitness Facility diff --git a/vitest.config.mjs b/vitest.config.mjs index b8c0127e6..5e7865df7 100644 --- a/vitest.config.mjs +++ b/vitest.config.mjs @@ -1,15 +1,21 @@ import { defineConfig } from 'vitest/config'; import path from 'path'; +import { fileURLToPath } from 'url'; + +const dirname = path.dirname(fileURLToPath(import.meta.url)); export default defineConfig({ resolve: { alias: { // Mirror the @site alias that Docusaurus/webpack provides at build time - '@site': path.resolve(import.meta.dirname), + '@site': path.resolve(dirname), + // Docusaurus client exports need site context that doesn't exist in a + // unit test; stub the ones components import directly. + '@docusaurus/useBaseUrl': path.resolve(dirname, 'src/__mocks__/docusaurus-useBaseUrl.js'), }, }, test: { - include: ['src/**/__tests__/**/*.test.{js,jsx}'], + include: ['src/**/__tests__/**/*.test.{js,jsx}', 'scripts/__tests__/**/*.test.{js,mjs}'], setupFiles: ['./src/setupTests.js'], // CI runners are slower under load; the render-heavy CommunityTable tests // can exceed the 5s default and flake. 20s gives ample headroom.