From 9e4cff262f53ffc04731d22465d8ac89e9da9945 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 10:53:01 -0400 Subject: [PATCH 01/19] update taxonomy browser Signed-off-by: Warren Ehrenfried --- docs/guides/places/_README.md | 94 +- docs/guides/places/taxonomy-browser.mdx | 44 +- docs/guides/places/taxonomy.mdx | 160 +- eslint.config.mjs | 2 +- package-lock.json | 68 +- package.json | 3 + scripts/__tests__/taxonomy-transform.test.js | 228 ++ scripts/build-taxonomy.mjs | 198 ++ scripts/lib/taxonomy-transform.mjs | 294 +++ sidebars.js | 1 + src/__mocks__/docusaurus-useBaseUrl.js | 14 + .../__tests__/taxonomyBrowser.test.jsx | 314 +++ ...taxonomyBrowser.js => taxonomyBrowser.jsx} | 274 +- src/components/taxonomyViz.jsx | 362 +++ src/css/taxonomyBrowser.css | 218 ++ .../2026-09-16.0/basic_categories.csv | 299 +++ .../2026-09-16.0/legacy_crosswalk.csv | 2008 ++++++++++++++ static/taxonomy/2026-09-16.0/taxonomy.csv | 2303 +++++++++++++++++ static/taxonomy/2026-09-16.0/taxonomy.json | 1 + vitest.config.js | 5 +- 20 files changed, 6747 insertions(+), 143 deletions(-) create mode 100644 scripts/__tests__/taxonomy-transform.test.js create mode 100755 scripts/build-taxonomy.mjs create mode 100644 scripts/lib/taxonomy-transform.mjs create mode 100644 src/__mocks__/docusaurus-useBaseUrl.js create mode 100644 src/components/__tests__/taxonomyBrowser.test.jsx rename src/components/{taxonomyBrowser.js => taxonomyBrowser.jsx} (71%) create mode 100644 src/components/taxonomyViz.jsx create mode 100644 static/taxonomy/2026-09-16.0/basic_categories.csv create mode 100644 static/taxonomy/2026-09-16.0/legacy_crosswalk.csv create mode 100644 static/taxonomy/2026-09-16.0/taxonomy.csv create mode 100644 static/taxonomy/2026-09-16.0/taxonomy.json diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md index 381315a15..a0327eb2e 100644 --- a/docs/guides/places/_README.md +++ b/docs/guides/places/_README.md @@ -2,9 +2,71 @@ An interactive tool for exploring and comparing Overture Maps Places taxonomy releases. -## Adding a New Release +There are two kinds of release entry: -To add a new release, only edit `taxonomy-browser.mdx` — no component code changes are needed. +- **Canonical (JSON)** — generated from the places pipeline by + `scripts/build-taxonomy.mjs` and served as a static file that the browser + fetches. This is how every release from September 2026 onward is added. +- **Legacy (CSV)** — the working spreadsheets produced during the taxonomy + project, inlined into the page bundle via `raw-loader`. Kept so the browser + can still show how the taxonomy looked at each earlier point. + +Both kinds live in the same `releases` array and can be selected and compared +against each other. Adding either one only requires editing +`taxonomy-browser.mdx` — no component changes. + +## Adding a canonical release + +### 1. Generate the artifacts + +Run the generator against the canonical files in the pipeline repo: + +```bash +npm run build-taxonomy -- \ + --source ../tf-data-platform/overture_places/overture_places/places_data_providers/category_mapping \ + --version 2026-09-16.0 \ + --schema v1.19.0 \ + --date 2026-09-16 \ + --counts path/to/counts.csv # optional +``` + +This writes `static/taxonomy//`, which Docusaurus serves verbatim — so +each file is both the browser's data source and a public download. Commit the +output; the docs build never reads the pipeline repo. + +If `--counts` is omitted the taxonomy still renders, and the stats row reports +"Not published" for place counts rather than showing a broken zero. Counts can +be added later by re-running the generator; no component change is needed. + +### 2. Add a release entry + +```jsx +{ + id: 'september', + label: '2026 September (Canonical Taxonomy)', + releaseUrl: 'https://docs.overturemaps.org/blog/...', + note: 'Optional note displayed in the detail panel.', + tags: [ + { label: '16 September 2026', title: 'Date' }, + { label: '2026-09-16.0', title: 'Data version' }, + { label: 'v1.19.0', title: 'Schema version' }, + ], + dataUrl: '/taxonomy/2026-09-16.0/taxonomy.json', + downloads: [ + { label: 'Taxonomy (JSON)', url: '/taxonomy/2026-09-16.0/taxonomy.json' }, + { label: 'Taxonomy (CSV)', url: '/taxonomy/2026-09-16.0/taxonomy.csv' }, + ], + displayFields: [ + { field: 'is_basic', label: 'Is Basic Category' }, + ], +} +``` + +`dataUrl` is what makes an entry canonical: when it is present the component +fetches that file and ignores the CSV fields entirely. URLs are resolved through +Docusaurus's base URL, so write them site-absolute (leading `/`). + +## Adding a legacy CSV release ### 1. Add CSV files @@ -80,11 +142,15 @@ hierarchyField: 'hierarchy_column_name', | `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` | +| `dataUrl` | * | Site-absolute URL of a generated `taxonomy.json`. Marks the entry as canonical; the CSV fields are then unused | +| `downloads` | No | Array of `{ label, url }` shown as download links under the stats row | | `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. +\* A canonical entry needs `dataUrl` only. A legacy CSV entry needs `dataCsv`, +`fieldNames`, `codeField`, and exactly one of `hierarchyFields` or +`hierarchyField`. ### Cross-tab matching @@ -104,7 +170,11 @@ If `matchColumn` is not set, cross-tab matching uses the `codeField` value direc ### 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. +Releases are compared in array order, oldest first. 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** — the +browser opens on the last entry, so ordering determines what a visitor sees +first. ### Visibility and missing data @@ -121,7 +191,10 @@ Set `enabled: false` on a release entry in `taxonomy-browser.mdx` to exclude it 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. +If a release has no counts — `countsCsv: null`, or a canonical release generated +without `--counts` — the stats row reports "Not published" for total places and +the tree nodes carry no count badges. Category and basic-category totals are +structural and still shown. ### Display fields @@ -138,7 +211,10 @@ These appear after the hierarchy levels and basic category, but before counts an | 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` | +| 2025 April | `category_key` | +| 2025 October | `match_type`, `modified`, `remove_from_v1` | +| 2025 December | none | +| 2026 March | `new_display_name`, `is_basic`, `pc_added`, `pc_hierarchy_change`, `pc_name_change`, `pc_removed`, `pc_redirect_to`, `blc_change` | +| 2026 September | `is_basic` | + +For canonical releases the generator derives `is_basic`. diff --git a/docs/guides/places/taxonomy-browser.mdx b/docs/guides/places/taxonomy-browser.mdx index 841e46658..4423de86e 100644 --- a/docs/guides/places/taxonomy-browser.mdx +++ b/docs/guides/places/taxonomy-browser.mdx @@ -14,12 +14,17 @@ import decemberCountsCsv from '!!raw-loader!./csv/2025-12-05-counts.csv'; # Taxonomy Browser -Explore and compare updates to the Overture Taxonomy. +Explore and compare updates to the Overture Taxonomy. The browser opens on the +current release; use the dropdown to see how the taxonomy looked at any earlier +point, and the download links to take a release away as JSON or CSV. + +See [Places Taxonomy](./taxonomy.mdx) for what the `taxonomy` and +`basic_category` properties mean and how to use them. diff --git a/docs/guides/places/taxonomy.mdx b/docs/guides/places/taxonomy.mdx index 8c522073a..acbe4c848 100644 --- a/docs/guides/places/taxonomy.mdx +++ b/docs/guides/places/taxonomy.mdx @@ -6,57 +6,60 @@ pagination_label: Places Taxonomy # Places Taxonomy -Recently, Overture introduced new `basic_category` and `taxonomy` properties for places data. These new properties are designed to better categorize location entities such as businesses, landmarks, and attractions and facilitate search, display, and navigation in map applications. With these changes, Overture is embarking on an iterative process to address known issues with the original `categories` property, including structural inconsistencies, naming ambiguity, and coverage gaps. We are implementing taxonomy design best practices to improve granularity and ease of use. +Overture describes what a place *is* with two properties: `taxonomy`, which +carries a full hierarchical path, and `basic_category`, a single high-level +label. Together they replace the original `categories` property, addressing +known issues with it including structural inconsistencies, naming ambiguity, and +coverage gaps. -:::tip +:::info Removed: the `categories` property -The original `categories` property will be available alongside the new `basic_category` and `taxonomy` properties for several months. You can explore the old-to-new category mappings [here](https://docs.google.com/spreadsheets/d/1_i2S48zTDoHff0uX-d8Nes3bR-Xee8drx27Gyi80CQ0/edit?usp=sharing0). We'd love your [feedback](https://github.com/orgs/OvertureMaps/discussions) on the new structure and suggestions for further improvement. +The original `categories` property was removed in the **September 2026** +release, having been deprecated since February 2026. Use `taxonomy` and +`basic_category` instead. + +If you are migrating, the [legacy crosswalk](#downloads) maps every original +category to its taxonomy path. It is the same file the places pipeline used to +back-fill `categories` while the property was still published, so it is the +authoritative mapping. ::: -## Taxonomy Change Summary -Users should be aware of the following key updates when evaluating and integrating the new places taxonomy. +You can browse any release of the taxonomy, and compare releases to each other, +in the [Taxonomy Browser](./taxonomy-browser.mdx). +## The taxonomy at a glance -| Change area | Details | Impact on Data Use | -| -------- | -------- | -------- | -| Top-Level Overhaul (L0) | Reduced top-level categories from 22 to 13. | Requires updating logic dependent on L0 categories. Consolidation reduces ambiguity. | -| New Categories| 209 new categories added (e.g., artist_studio, pickleball_court). | New, more granular POI types are available for filtering and display. | -| Removed Categories | 80 categories removed (resolved duplicates, merged obscure types). | Users must use the provided "redirect" rules to map old category IDs to active categories for backfill/historical data continuity. | -| Renamed Categories | 407 categories renamed (primarily plural-to-singular conversion, e.g., banks to bank). | Update category-based lookups and display logic to use singular forms for better mapping interface labeling. | -| Reparented Categories | 482 categories moved under a different direct parent. | The immediate parent-child relationship has changed for nearly 500 categories. | -| Repathed Categories (Hierarchy) | 2,108 categories have a different hierarchical structure or "path". | Critical: Hierarchy-dependent processing (e.g., aggregation) must be updated to reflect the new paths, especially in areas like food_and_drink and arts_and_entertainment. | -| Basic Category Mapping | All place categories are now mapped to a "Basic Level Category" (approx. 280 labels like restaurant, museum). | Facilitates simplified map iconography, high-level filtering, and cross-taxonomy mapping. | +| | | +| --- | --- | +| Categories | 2,302 | +| Top-level groups | 13 | +| Depth | Up to 6 levels | +| Basic categories | 298 | +The 13 top-level groups are `arts_and_entertainment`, `community_and_government`, +`cultural_and_historic`, `education`, `food_and_drink`, `geographic_entities`, +`health_care`, `lifestyle_services`, `lodging`, `services_and_business`, +`shopping`, `sports_and_recreation`, and `travel_and_transportation`. -## Comparing the Original and New Properties +## What changed from the original categories +The figures below compare the original `categories` system to the taxonomy as +published in September 2026. -#### Original Categories System +| Change area | Details | Impact on data use | +| --- | --- | --- | +| Top-level overhaul | Top-level groups reduced from 22 to 13. | Logic that keys on a top-level category needs updating. Consolidation reduces ambiguity. | +| New categories | 295 taxonomy categories have no antecedent in the original system. | More granular place types are available for filtering and display. | +| Removed categories | 121 original categories have no taxonomy equivalent, having been merged or resolved as duplicates. | Use the legacy crosswalk to map historical data onto active categories. | +| Renamed categories | 613 categories changed label, mostly plural to singular (`banks` to `bank`). | Category lookups and display logic should use the singular forms. | +| Reparented categories | 1,588 categories sit under a different direct parent. | Immediate parent-child relationships have changed for most of the taxonomy. | +| Repathed categories | 2,001 categories have a different full hierarchical path. | **Critical:** hierarchy-dependent processing such as aggregation must be updated, especially in `food_and_drink` and `arts_and_entertainment`. | +| Basic categories | Every place now carries a `basic_category` drawn from a set of 298 labels. | Simplifies map iconography, high-level filtering, and cross-taxonomy mapping. | -The original `categories` property will remain in the schema for several months to allow users to compare the old system to the new taxonomy and facilitate migration. +## The properties -``` -properties: - categories: - primary: greasy_diner -``` - - -#### New Basic Level Category - -The new `basic_category`, introduced in the October release, provides a single, high-level, "cognitively basic" label. - -``` -properties: - basic_category: casual_eatery -``` - -#### New Taxonomy Structure - -The new `taxonomy` property, introduced in the December 2025 release, contains a new hierarchy and category labels. - -``` +```yaml properties: basic_category: casual_eatery taxonomy: @@ -67,29 +70,58 @@ properties: - sushi_restaurant ``` - -## Key Taxonomy Fields -- `hierarchy`: An ordered list representing the full path from the top-level (L0) category down to the primary category. This array is essential for aggregating POIs based on subtype/supertype relationships (e.g., for aggregating all cantonese_restaurant POIs up to chinese_restaurant). -- `primary`: The most specific and appropriate category label for the POI, consistent with the lowest level of the hierarchy. -- `basic_category`: Identifies a “cognitively basic” category, as a supplement to the Primary Place category. This is recommended for use in map applications for high-level filtering and defining map iconography, LLM’s as it offers a streamlined set of labels (approx. 280) that are less specific than the full 2.1k taxonomy. -- `alternate`: Other relevant category labels for the POI. - - -## Aggregation and Generalization - -The structured `hierarchy` property is designed to support robust aggregation logic. Users can reliably generalize specialized POIs by traversing the path. For example, you can find all Asian restaurants by traversing the `hierarchy` property of POIs and checking for `asian_restaurant`. - -| Hierarchy Path | Aggregation Level | -| -------- | -------- | -| [food_and_drink, ...] | Food and Drink POIs | -| [..., restaurant, ...] | All Restaurants | -| [..., asian_restaurant, ...] | All Asian Restaurants | -| [..., chinese_restaurant, ...] | All Chinese Restaurants | -| [..., cantonese_restaurant] | Specific Cantonese Restaurants | - - -## Provider Category Mappings - -Each data provider describes places using its own category system, so during ingest every provider's raw categories are mapped into the Overture taxonomy. Most of these mappings are exact or previously reviewed matches; the remainder are model-derived semantic matches that are held to a confidence floor and reviewed before becoming permanent lookups. - -Beginning with the July 2026 release, Overture also captures these provider category mappings in the pipeline, making it possible to trace how a source provider's original category was translated into the Overture taxonomy. The July 2026 release additionally expanded US coverage from BrightQuery with places in the `arts_and_entertainment`, `lodging`, and `cultural_and_historic_landmarks` categories. In cases where BrightQuery supplies no category, the category is sometimes inferred from the supplied NAICS code as a fallback. \ No newline at end of file +- `hierarchy`: an ordered list representing the full path from the top-level + group down to the primary category. This array is what makes aggregation by + supertype possible — for example, rolling `cantonese_restaurant` places up to + `chinese_restaurant`. +- `primary`: the most specific category for the place. Always equal to the last + entry in `hierarchy`. +- `basic_category`: a "cognitively basic" label — the level at which you still + have a firm understanding of what something is or does. Recommended for map + iconography and high-level filtering, since roughly 300 labels are far more + tractable than the full 2,302. +- `alternate`: other relevant categories that are not part of the primary + hierarchy. A gas station that also sells groceries might have a primary + category of `gas_station` with an alternate of `grocery_store`. + +### How `basic_category` is derived + +A place's `basic_category` is the **deepest** node in its `hierarchy` whose +label is one of the 298 basic categories. The pipeline walks the hierarchy from +the most specific end toward the top and takes the first match, so +`basic_category` always appears somewhere in `hierarchy`. + +For a place with the hierarchy above, `casual_eatery` is basic and +`gas_station_sushi` is not, so `basic_category` is `casual_eatery`. + +## Aggregation and generalization + +Because `hierarchy` is an ordered path, you can generalize a specialized place +by looking for an ancestor anywhere in the array. + +| Hierarchy path | Aggregation level | +| --- | --- | +| `[food_and_drink, ...]` | All food and drink places | +| `[..., restaurant, ...]` | All restaurants | +| `[..., asian_restaurant, ...]` | All Asian restaurants | +| `[..., chinese_restaurant, ...]` | All Chinese restaurants | +| `[..., cantonese_restaurant]` | Cantonese restaurants specifically | + +## Downloads + +The taxonomy is published as a set of files with each release. These are the +September 2026 artifacts; the [Taxonomy Browser](./taxonomy-browser.mdx) links +the equivalents for every release it covers. + +| File | Contents | +| --- | --- | +| [`taxonomy.json`](pathname:///taxonomy/2026-09-16.0/taxonomy.json) | The full taxonomy as a nested tree, with display names and basic-category flags. | +| [`taxonomy.csv`](pathname:///taxonomy/2026-09-16.0/taxonomy.csv) | One row per category: path, name, display name, level, top-level group, and basic category. | +| [`basic_categories.csv`](pathname:///taxonomy/2026-09-16.0/basic_categories.csv) | The 298 basic categories and where each sits in the hierarchy. | +| [`legacy_crosswalk.csv`](pathname:///taxonomy/2026-09-16.0/legacy_crosswalk.csv) | Every original `categories` value mapped to its taxonomy path. | + +## Feedback + +The taxonomy is maintained iteratively. We welcome +[feedback](https://github.com/orgs/OvertureMaps/discussions) on the structure +and suggestions for further improvement. diff --git a/eslint.config.mjs b/eslint.config.mjs index ab745cbcc..ddfdd1318 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 5bb7c5552..10f2f76e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,6 +14,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.5.1", "js-yaml": "^5.4.0", "maplibre-gl": "^6.6.0", @@ -6627,9 +6629,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6646,9 +6645,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6665,9 +6661,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6684,9 +6677,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6703,9 +6693,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6722,9 +6709,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6869,9 +6853,6 @@ "cpu": [ "arm64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6888,9 +6869,6 @@ "cpu": [ "arm64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6907,9 +6885,6 @@ "cpu": [ "ppc64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6926,9 +6901,6 @@ "cpu": [ "s390x" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6945,9 +6917,6 @@ "cpu": [ "x64" ], - "libc": [ - "glibc" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -6964,9 +6933,6 @@ "cpu": [ "x64" ], - "libc": [ - "musl" - ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -10308,6 +10274,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", diff --git a/package.json b/package.json index 15831643c..0f4b43a0e 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "private": true, "scripts": { "fetch-og": "node scripts/fetch-og-images.mjs", + "build-taxonomy": "node scripts/build-taxonomy.mjs", "copy-maplibre-worker": "node scripts/copy-maplibre-worker.mjs", "docusaurus": "docusaurus", "start": "npm run copy-maplibre-worker && npm run docusaurus start", @@ -32,6 +33,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.5.1", "js-yaml": "^5.4.0", "maplibre-gl": "^6.6.0", diff --git a/scripts/__tests__/taxonomy-transform.test.js b/scripts/__tests__/taxonomy-transform.test.js new file mode 100644 index 000000000..e0832ad1b --- /dev/null +++ b/scripts/__tests__/taxonomy-transform.test.js @@ -0,0 +1,228 @@ +import { describe, it, expect } from 'vitest'; +import { readFileSync, existsSync } from 'node:fs'; +import { resolve, dirname } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +import { + toDisplayName, + deriveBasicCategory, + buildTaxonomy, + parseCsv, + parseCounts, + toCsv, + compactTree, +} from '../lib/taxonomy-transform.mjs'; + +const root = resolve(dirname(fileURLToPath(import.meta.url)), '..', '..'); + +// A miniature taxonomy with the shapes that matter: a basic root, a deep chain, +// a node that is itself basic, and a node whose nearest basic is an ancestor. +const mappings = { + food_and_drink: [{ source: 'meta', keys: ['food'] }], + 'food_and_drink > restaurant': [{ source: 'meta', keys: ['restaurant', 'eatery'] }], + 'food_and_drink > restaurant > casual_eatery': [{ source: 'foursquare', keys: ['Diner'] }], + 'food_and_drink > restaurant > casual_eatery > gas_station_sushi': [ + { source: 'foursquare', keys: ['Sushi'] }, + ], + shopping: [{ source: 'meta', keys: ['shop'] }], +}; +const basicCategories = ['food_and_drink', 'restaurant', 'casual_eatery', 'shopping']; + +describe('toDisplayName', () => { + it('title-cases snake_case and keeps small words lowercase', () => { + expect(toDisplayName('bed_and_breakfast')).toBe('Bed and Breakfast'); + expect(toDisplayName('board_of_education_office')).toBe('Board of Education Office'); + }); + + it('capitalizes a small word in first position', () => { + expect(toDisplayName('in_home_service')).toBe('In Home Service'); + }); + + it('uppercases acronyms', () => { + expect(toDisplayName('b2b_oil_and_gas')).toBe('B2B Oil and Gas'); + expect(toDisplayName('vr_cafe')).toBe('VR Cafe'); + expect(toDisplayName('atm')).toBe('ATM'); + }); + + it('restores possessive apostrophes', () => { + expect(toDisplayName('childrens_museum')).toBe("Children's Museum"); + expect(toDisplayName('mens_grooming_salon')).toBe("Men's Grooming Salon"); + }); + + it('joins hyphenated compounds', () => { + expect(toDisplayName('e_commerce_service')).toBe('E-commerce Service'); + expect(toDisplayName('non_alcoholic_beverage_venue')).toBe('Non-Alcoholic Beverage Venue'); + expect(toDisplayName('walk_in_clinic')).toBe('Walk-In Clinic'); + }); + + it('applies explicit overrides where no rule produces the curated name', () => { + expect(toDisplayName('food_truck_stand')).toBe('Food Truck or Stand'); + }); + + it('returns empty string for empty input', () => { + expect(toDisplayName('')).toBe(''); + expect(toDisplayName(undefined)).toBe(''); + }); +}); + +describe('deriveBasicCategory', () => { + const basic = new Set(basicCategories); + + // Mirrors _add_basic_category in the places pipeline: deepest basic node, + // found leaf -> root. + it('returns the deepest basic node, not the shallowest', () => { + expect(deriveBasicCategory(['food_and_drink', 'restaurant', 'casual_eatery'], basic)).toBe( + 'casual_eatery' + ); + }); + + it('returns the node itself when the node is basic', () => { + expect(deriveBasicCategory(['food_and_drink', 'restaurant'], basic)).toBe('restaurant'); + }); + + it('falls back to an ancestor when the leaf is not basic', () => { + expect( + deriveBasicCategory( + ['food_and_drink', 'restaurant', 'casual_eatery', 'gas_station_sushi'], + basic + ) + ).toBe('casual_eatery'); + }); + + it('returns null when nothing in the path is basic', () => { + expect(deriveBasicCategory(['nowhere', 'nothing'], basic)).toBeNull(); + }); +}); + +describe('buildTaxonomy', () => { + const built = buildTaxonomy({ mappings, basicCategories }); + + it('produces one flat entry per canonical path', () => { + expect(built.flat).toHaveLength(Object.keys(mappings).length); + }); + + it('nests children under their parent and leaves no orphans', () => { + expect(built.orphans).toEqual([]); + expect(built.tree.map(n => n.name).sort()).toEqual(['food_and_drink', 'shopping']); + const food = built.tree.find(n => n.name === 'food_and_drink'); + expect(food.children[0].name).toBe('restaurant'); + expect(food.children[0].children[0].children[0].name).toBe('gas_station_sushi'); + }); + + it('records level as depth from the root', () => { + const byName = Object.fromEntries(built.flat.map(e => [e.name, e])); + expect(byName.food_and_drink.level).toBe(0); + expect(byName.gas_station_sushi.level).toBe(3); + }); + + it('reports null counts when none are supplied', () => { + expect(built.stats.totalPlaces).toBeNull(); + expect(built.tree[0].totalCount).toBeNull(); + }); + + it('rolls counts up the tree when they are supplied', () => { + const withCounts = buildTaxonomy({ + mappings, + basicCategories, + counts: { gas_station_sushi: 10, casual_eatery: 5, restaurant: 1 }, + }); + const food = withCounts.tree.find(n => n.name === 'food_and_drink'); + expect(food.totalCount).toBe(16); + expect(withCounts.stats.totalPlaces).toBe(16); + }); + + it('flags a gap in the canonical path keys as an orphan', () => { + const broken = buildTaxonomy({ + mappings: { 'a > b > c': [{ source: 'meta', keys: ['x'] }] }, + basicCategories: [], + }); + expect(broken.orphans).toEqual(['a > b > c']); + }); +}); + +describe('csv', () => { + it('round-trips quoted fields containing commas, quotes and newlines', () => { + const rows = [{ a: 'x,y', b: 'say "hi"', c: 'one\ntwo' }]; + expect(parseCsv(toCsv(rows, ['a', 'b', 'c']))).toEqual(rows); + }); + + it('strips a BOM from the header', () => { + expect(parseCsv('\uFEFFa,b\n1,2\n')).toEqual([{ a: '1', b: '2' }]); + }); + + it('skips blank lines', () => { + expect(parseCsv('a,b\n1,2\n\n3,4\n')).toHaveLength(2); + }); + + it('sums counts per category', () => { + const counts = parseCounts('_col0,primary_category,basic_category\n5,cafe,restaurant\n3,cafe,restaurant\n'); + expect(counts.cafe).toBe(8); + }); + + it('returns an empty map for missing counts', () => { + expect(parseCounts('')).toEqual({}); + expect(parseCounts(undefined)).toEqual({}); + }); +}); + +describe('compactTree', () => { + it('omits absent and derivable fields', () => { + const built = buildTaxonomy({ mappings, basicCategories }); + const compact = compactTree(built.tree); + const shopping = compact.find(n => n.name === 'shopping'); + expect(shopping).toEqual({ + name: 'shopping', + displayName: 'Shopping', + isBasic: true, + }); + expect(shopping).not.toHaveProperty('path'); + expect(shopping).not.toHaveProperty('count'); + }); +}); + +// Guards the committed artifact against a bad regeneration. These are the +// invariants of the September 2026 canonical taxonomy. +describe('generated 2026-09-16.0 artifact', () => { + const artifact = resolve(root, 'static/taxonomy/2026-09-16.0/taxonomy.json'); + const present = existsSync(artifact); + const it_ = present ? it : it.skip; + + it_('matches the canonical shape', () => { + const data = JSON.parse(readFileSync(artifact, 'utf8')); + expect(data.stats.categories).toBe(2302); + expect(data.stats.basicCategories).toBe(298); + expect(data.stats.rootGroups).toBe(13); + expect(data.stats.maxDepth).toBe(5); + expect(data.tree).toHaveLength(13); + }); + + it_('resolves a basic category for every node', () => { + const data = JSON.parse(readFileSync(artifact, 'utf8')); + const missing = []; + const walk = (nodes, inherited) => { + for (const node of nodes) { + const basic = node.isBasic ? node.name : (node.basicCategory ?? inherited); + if (!basic) missing.push(node.name); + walk(node.children ?? [], basic); + } + }; + walk(data.tree, null); + expect(missing).toEqual([]); + }); + + it_('keeps every category name globally unique', () => { + const data = JSON.parse(readFileSync(artifact, 'utf8')); + const seen = new Set(); + const dupes = []; + const walk = nodes => { + for (const node of nodes) { + if (seen.has(node.name)) dupes.push(node.name); + seen.add(node.name); + walk(node.children ?? []); + } + }; + walk(data.tree); + expect(dupes).toEqual([]); + expect(seen.size).toBe(2302); + }); +}); diff --git a/scripts/build-taxonomy.mjs b/scripts/build-taxonomy.mjs new file mode 100755 index 000000000..65039c70f --- /dev/null +++ b/scripts/build-taxonomy.mjs @@ -0,0 +1,198 @@ +#!/usr/bin/env node +/** + * Generates the taxonomy artifacts the docs site serves from the canonical + * places taxonomy files, which live in the tf-data-platform pipeline repo. + * + * That repo is deliberately an *input*, not a dependency: this script is run by + * hand when a release lands, and its output is committed. The docs build stays + * hermetic, and every release produces a reviewable diff. + * + * npm run build-taxonomy -- \ + * --source ../tf-data-platform/overture_places/overture_places/places_data_providers/category_mapping \ + * --version 2026-09-16.0 \ + * --schema v1.19.0 \ + * --date 2026-09-16 \ + * [--counts path/to/counts.csv] + * + * Writes to static/taxonomy//, which Docusaurus serves verbatim — so + * every artifact is both the browser's data source and a public download. + */ + +import { readFileSync, writeFileSync, mkdirSync, existsSync } from 'node:fs'; +import { resolve, dirname, join } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +import { + buildTaxonomy, + compactTree, + parseCsv, + parseCounts, + toCsv, + toDisplayName, +} from './lib/taxonomy-transform.mjs'; + +const __dirname = dirname(fileURLToPath(import.meta.url)); +const root = resolve(__dirname, '..'); + +const TAXONOMY_FILE = 'overture_taxonomy.json'; +const BASIC_CATEGORY_FILE = 'overture_basic_category.json'; +const LEGACY_CROSSWALK_FILE = 'overture_taxonomy_to_legacy_category.csv'; + +function parseArgs(argv) { + const args = {}; + for (let i = 0; i < argv.length; i++) { + if (!argv[i].startsWith('--')) continue; + const key = argv[i].slice(2); + const next = argv[i + 1]; + if (next && !next.startsWith('--')) { + args[key] = next; + i++; + } else { + args[key] = true; + } + } + return args; +} + +function fail(message) { + console.error(`\nbuild-taxonomy: ${message}\n`); + process.exit(1); +} + +const args = parseArgs(process.argv.slice(2)); + +if (!args.source) fail('--source is required (the category_mapping directory in tf-data-platform)'); +if (!args.version) fail('--version is required (the Overture data release, e.g. 2026-09-16.0)'); + +const sourceDir = resolve(process.cwd(), args.source); +const version = args.version; +const outDir = join(root, 'static', 'taxonomy', version); + +for (const file of [TAXONOMY_FILE, BASIC_CATEGORY_FILE, LEGACY_CROSSWALK_FILE]) { + if (!existsSync(join(sourceDir, file))) fail(`${file} not found in ${sourceDir}`); +} + +const readJson = file => JSON.parse(readFileSync(join(sourceDir, file), 'utf8')); +const readText = file => readFileSync(join(sourceDir, file), 'utf8'); + +const canonical = readJson(TAXONOMY_FILE); +const basicCategories = readJson(BASIC_CATEGORY_FILE); +const counts = args.counts ? parseCounts(readFileSync(resolve(process.cwd(), args.counts), 'utf8')) : {}; + +if (!canonical.mappings) fail(`${TAXONOMY_FILE} has no "mappings" key — is this the canonical file?`); + +const { tree, flat, orphans, stats } = buildTaxonomy({ + mappings: canonical.mappings, + basicCategories, + counts, +}); + +if (orphans.length > 0) { + fail( + `${orphans.length} categories have no parent in the taxonomy, which means the ` + + `canonical file has a gap in its path keys. First few:\n ${orphans.slice(0, 5).join('\n ')}` + ); +} + +// --------------------------------------------------------------------------- +// Artifacts +// --------------------------------------------------------------------------- + +mkdirSync(outDir, { recursive: true }); + +const written = []; +function write(name, contents) { + writeFileSync(join(outDir, name), contents); + written.push([name, Buffer.byteLength(contents)]); +} + +// 1. Nested tree — the browser's data source, the visualization's d3 hierarchy, +// and the JSON download, all from one file. +write( + 'taxonomy.json', + `${JSON.stringify( + { + version, + schemaVersion: args.schema ?? null, + releaseDate: args.date ?? null, + generatedAt: new Date().toISOString().slice(0, 10), + source: { taxonomy: TAXONOMY_FILE, basicCategories: BASIC_CATEGORY_FILE }, + stats, + tree: compactTree(tree), + } + )}\n` +); + +// 2. Flat category list — the spreadsheet answer to the download request. +write( + 'taxonomy.csv', + toCsv(flat, [ + 'path', + 'name', + 'displayName', + 'level', + 'group', + 'isBasic', + 'basicCategory', + 'count', + ]) +); + +// 3. Basic categories on their own — the ~300-label set most map-iconography +// and high-level-filtering users actually want. +const basicRows = flat + .filter(entry => entry.isBasic) + .map(entry => ({ + basic_category: entry.name, + display_name: entry.displayName, + path: entry.path, + level: entry.level, + group: entry.group, + count: entry.count, + })); +write('basic_categories.csv', toCsv(basicRows, ['basic_category', 'display_name', 'path', 'level', 'group', 'count'])); + +// 4. Legacy crosswalk — the pipeline uses this file to back-fill the deprecated +// `categories` property, so it is the authoritative old -> new mapping and +// replaces the Google Sheet the taxonomy guide currently links. +const legacyRows = parseCsv(readText(LEGACY_CROSSWALK_FILE)).map(row => ({ + legacy_primary_category: row['Legacy Primary Category'], + legacy_primary_hierarchy: row['Legacy Primary Hierarchy'], + taxonomy_primary: row['Taxonomy Primary'], + taxonomy_path: row['Taxonomy Path'], + taxonomy_display_name: toDisplayName(row['Taxonomy Primary']), +})); +write( + 'legacy_crosswalk.csv', + toCsv(legacyRows, [ + 'legacy_primary_category', + 'legacy_primary_hierarchy', + 'taxonomy_primary', + 'taxonomy_path', + 'taxonomy_display_name', + ]) +); + +// --------------------------------------------------------------------------- +// Report +// --------------------------------------------------------------------------- + +const kb = bytes => `${(bytes / 1024).toFixed(0)} KB`; + +console.log(`\nbuild-taxonomy → static/taxonomy/${version}/\n`); +for (const [name, bytes] of written) { + console.log(` ${name.padEnd(24)} ${kb(bytes).padStart(9)}`); +} +console.log(` + categories ${stats.categories} + basic categories ${stats.basicCategories} + top-level groups ${stats.rootGroups} + max depth ${stats.maxDepth} + legacy crosswalk ${legacyRows.length} rows + place counts ${stats.totalPlaces === null ? 'not supplied' : stats.totalPlaces.toLocaleString()} +`); + +if (stats.totalPlaces === null) { + console.log(' Note: no --counts supplied, so count badges and count-weighted'); + console.log(' visualization will be disabled for this release.\n'); +} diff --git a/scripts/lib/taxonomy-transform.mjs b/scripts/lib/taxonomy-transform.mjs new file mode 100644 index 000000000..533f0efb9 --- /dev/null +++ b/scripts/lib/taxonomy-transform.mjs @@ -0,0 +1,294 @@ +/** + * Pure transforms that turn the canonical Overture places taxonomy files into + * the artifacts the docs site serves. + * + * Kept free of I/O so the derivation rules — which have to stay faithful to the + * pipeline — can be unit tested directly. See build-taxonomy.mjs for the CLI. + * + * Canonical inputs (from tf-data-platform, category_mapping/): + * overture_taxonomy.json { mappings: { "a > b > c": [{source, keys}] } } + * overture_basic_category.json ["academy", "adult_entertainment_venue", ...] + * overture_taxonomy_to_legacy_category.csv + */ + +/** Words that stay lowercase when they aren't the first token. */ +const SMALL_WORDS = new Set(['and', 'or', 'the', 'in', 'of', 'for', 'to', 'a', 'an']); + +/** + * Tokens that are acronyms and should be fully uppercased. Derived by diffing + * naive title-casing against the curated `New Display Name` column that shipped + * with the March 2026 taxonomy spreadsheet. + */ +const ACRONYMS = new Set([ + 'atm', 'atv', 'b2b', 'bbq', 'bmx', 'cbd', 'cpr', 'diy', 'dj', 'dui', 'dvd', + 'ems', 'ev', 'gps', 'hvac', 'id', 'it', 'iv', 'led', 'lpg', 'mma', 'pc', + 'rv', 'suv', 'tv', 'ufc', 'usb', 'vhs', 'vip', 'vr', 'ymca', 'ywca', +]); + +/** Tokens the taxonomy spells without an apostrophe but that read as possessives. */ +const POSSESSIVES = new Map([ + ['childrens', "Children's"], + ['mens', "Men's"], + ['womens', "Women's"], +]); + +/** + * Adjacent token pairs that form a hyphenated compound. Naive title-casing + * renders `e_commerce_service` as "E Commerce Service"; these fix the small set + * of keys where the underscore stands in for a hyphen rather than a space. + */ +const HYPHEN_COMPOUNDS = new Map([ + ['non|alcoholic', 'Non-Alcoholic'], + ['serbo|croatian', 'Serbo-Croatian'], + ['e|commerce', 'E-commerce'], + ['t|shirt', 'T-shirt'], + ['drive|in', 'Drive-In'], + ['walk|in', 'Walk-In'], +]); + +/** + * Display names that no rule produces, because the underscore joins alternatives + * rather than words. Kept explicit and small so it stays reviewable. + */ +const DISPLAY_NAME_OVERRIDES = new Map([ + ['food_truck_stand', 'Food Truck or Stand'], + ['smoothie_juice_bar', 'Smoothie or Juice Bar'], +]); + +/** + * Convert a snake_case category key into a human display name. + * + * The canonical taxonomy carries no display-name column, so this reproduces the + * curated names that shipped with earlier releases. Rule order matters: + * hyphenated compounds consume two tokens, so they resolve before per-token + * casing. + */ +export function toDisplayName(code) { + if (!code) return ''; + + const override = DISPLAY_NAME_OVERRIDES.get(code); + if (override) return override; + + const tokens = code.split('_'); + const out = []; + + for (let i = 0; i < tokens.length; i++) { + const pair = HYPHEN_COMPOUNDS.get(`${tokens[i]}|${tokens[i + 1]}`); + if (pair) { + out.push(pair); + i++; + continue; + } + + const token = tokens[i]; + if (ACRONYMS.has(token)) { + out.push(token.toUpperCase()); + } else if (POSSESSIVES.has(token)) { + out.push(POSSESSIVES.get(token)); + } else if (out.length > 0 && SMALL_WORDS.has(token)) { + out.push(token); + } else { + out.push(token.charAt(0).toUpperCase() + token.slice(1)); + } + } + + return out.join(' '); +} + +/** + * Resolve the basic category for a taxonomy path. + * + * Mirrors `_add_basic_category` in the places pipeline + * (overture_places/places_data_providers/places_data_provider.py): the basic + * category is the deepest node in the hierarchy whose label is a valid basic + * label, found by walking leaf -> root and taking the first hit. Basic labels + * are globally unique, so matching on the bare label is safe. + * + * Deriving rather than importing this keeps the docs consistent with the data + * users actually receive. + */ +export function deriveBasicCategory(hierarchy, basicLabels) { + for (let i = hierarchy.length - 1; i >= 0; i--) { + if (basicLabels.has(hierarchy[i])) return hierarchy[i]; + } + return null; +} + +/** Split a canonical `"a > b > c"` path key into its segments. */ +export function splitPath(path) { + return path.split(' > ').map(segment => segment.trim()); +} + +/** + * Build the flat category list and the nested tree from the canonical files. + * + * `counts` is an optional map of category label -> place count. When absent, + * every count is null and downstream consumers fall back to uniform weighting. + */ +export function buildTaxonomy({ mappings, basicCategories, counts = {} }) { + const basicLabels = new Set(basicCategories); + const paths = Object.keys(mappings).sort(); + + const flat = []; + const nodesByPath = new Map(); + + for (const path of paths) { + const hierarchy = splitPath(path); + const name = hierarchy[hierarchy.length - 1]; + const count = Object.prototype.hasOwnProperty.call(counts, name) ? counts[name] : null; + + const entry = { + path, + name, + displayName: toDisplayName(name), + level: hierarchy.length - 1, + group: hierarchy[0], + isBasic: basicLabels.has(name), + basicCategory: deriveBasicCategory(hierarchy, basicLabels), + count, + }; + + flat.push(entry); + nodesByPath.set(path, { ...entry, children: [] }); + } + + // Link children to parents. Paths are sorted, so a parent is always created + // before its children; a missing parent means the canonical file has a gap. + const roots = []; + const orphans = []; + + for (const path of paths) { + const node = nodesByPath.get(path); + const hierarchy = splitPath(path); + + if (hierarchy.length === 1) { + roots.push(node); + continue; + } + + const parentPath = hierarchy.slice(0, -1).join(' > '); + const parent = nodesByPath.get(parentPath); + if (parent) { + parent.children.push(node); + } else { + orphans.push(path); + } + } + + // Roll counts up the tree so a collapsed branch still reports its weight. + function totalCount(node) { + const childTotal = node.children.reduce((sum, child) => sum + totalCount(child), 0); + const own = node.count ?? 0; + node.totalCount = own + childTotal; + return node.totalCount; + } + for (const root of roots) totalCount(root); + + const hasCounts = Object.keys(counts).length > 0; + if (!hasCounts) { + for (const node of nodesByPath.values()) node.totalCount = null; + } + + return { + tree: roots, + flat, + orphans, + stats: { + categories: flat.length, + basicCategories: basicLabels.size, + rootGroups: roots.length, + maxDepth: flat.reduce((max, e) => Math.max(max, e.level), 0), + totalPlaces: hasCounts ? roots.reduce((sum, r) => sum + (r.totalCount ?? 0), 0) : null, + }, + }; +} + +// --------------------------------------------------------------------------- +// CSV +// --------------------------------------------------------------------------- + +/** Parse RFC 4180-ish CSV text into an array of objects keyed by header name. */ +export function parseCsv(text) { + const rows = []; + let row = []; + let field = ''; + let quoted = false; + const src = text.replace(/^\uFEFF/, '').replace(/\r\n?/g, '\n'); + + for (let i = 0; i < src.length; i++) { + const char = src[i]; + + if (quoted) { + if (char === '"') { + if (src[i + 1] === '"') { + field += '"'; + i++; + } else { + quoted = false; + } + } else { + field += char; + } + continue; + } + + if (char === '"') quoted = true; + else if (char === ',') { row.push(field); field = ''; } + else if (char === '\n') { row.push(field); rows.push(row); row = []; field = ''; } + else field += char; + } + if (field !== '' || row.length > 0) { row.push(field); rows.push(row); } + + const header = rows.shift(); + if (!header) return []; + + return rows + .filter(r => r.some(value => value !== '')) + .map(r => Object.fromEntries(header.map((name, i) => [name, r[i] ?? '']))); +} + +/** Serialize rows to CSV, quoting only fields that need it. */ +export function toCsv(rows, columns) { + const escape = value => { + if (value === null || value === undefined) return ''; + const str = String(value); + return /[",\n]/.test(str) ? `"${str.replace(/"/g, '""')}"` : str; + }; + const lines = [columns.join(',')]; + for (const row of rows) lines.push(columns.map(c => escape(row[c])).join(',')); + return `${lines.join('\n')}\n`; +} + +/** Read a counts CSV (count, primary_category, basic_category, ...) into a label -> count map. */ +export function parseCounts(text) { + if (!text) return {}; + const counts = {}; + for (const row of parseCsv(text)) { + const values = Object.values(row); + const count = Number.parseInt(values[0], 10); + const category = values[1]; + if (category && Number.isFinite(count)) { + counts[category] = (counts[category] ?? 0) + count; + } + } + return counts; +} + +/** + * Strip a tree to what the browser actually needs to fetch. + * + * `path` and `group` are reconstructible while walking from the roots, and + * absent fields are cheaper than null ones — together these roughly halve the + * payload, which matters because this file is fetched on page load. + */ +export function compactTree(nodes) { + return nodes.map(node => { + const out = { name: node.name, displayName: node.displayName }; + if (node.isBasic) out.isBasic = true; + if (node.basicCategory && node.basicCategory !== node.name) out.basicCategory = node.basicCategory; + if (node.count !== null && node.count !== undefined) out.count = node.count; + if (node.totalCount !== null && node.totalCount !== undefined) out.totalCount = node.totalCount; + if (node.children.length > 0) out.children = compactTree(node.children); + return out; + }); +} diff --git a/sidebars.js b/sidebars.js index 2029d22d4..0eea724e1 100644 --- a/sidebars.js +++ b/sidebars.js @@ -84,6 +84,7 @@ const sidebars = { collapsed: true, items: [ 'guides/places/index', + 'guides/places/taxonomy', 'guides/places/taxonomy-browser', ], }, diff --git a/src/__mocks__/docusaurus-useBaseUrl.js b/src/__mocks__/docusaurus-useBaseUrl.js new file mode 100644 index 000000000..39ffa9e72 --- /dev/null +++ b/src/__mocks__/docusaurus-useBaseUrl.js @@ -0,0 +1,14 @@ +/** + * 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. + */ +export function useBaseUrlUtils() { + return { withBaseUrl: url => url }; +} + +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..740f438d9 --- /dev/null +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -0,0 +1,314 @@ +// @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'; + +// A two-release fixture: one legacy CSV release and one canonical JSON release, +// which is the combination the browser has to support during the transition. +const LEGACY_CSV = [ + 'New Primary Category,New Primary Hierarchy,Basic Level Category', + 'restaurant,food_and_drink > restaurant,restaurant', + 'diner,food_and_drink > restaurant > diner,restaurant', +].join('\n'); + +const CANONICAL_JSON = { + version: '2026-09-16.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: 'december', + label: '2025 December (New Hierarchy Addition)', + tags: [{ label: '17 December 2025', title: 'Date' }], + dataCsv: LEGACY_CSV, + countsCsv: null, + hierarchyField: 'new_primary_hierarchy', + codeField: 'new_primary_category', + fieldNames: ['new_primary_category', 'new_primary_hierarchy', 'basic_level_category'], + basicCategoryField: 'basic_level_category', + }, + { + id: 'september', + label: '2026 September (Canonical Taxonomy)', + tags: [{ label: '16 September 2026', title: 'Date' }], + dataUrl: '/taxonomy/2026-09-16.0/taxonomy.json', + downloads: [ + { label: 'Taxonomy (JSON)', url: '/taxonomy/2026-09-16.0/taxonomy.json' }, + { label: 'Taxonomy (CSV)', url: '/taxonomy/2026-09-16.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('opens on the newest release, not the oldest', async () => { + render(); + const select = screen.getByRole('combobox'); + expect(select).toHaveValue('september'); + }); + + it('fetches a JSON-sourced release and renders its tree', async () => { + render(); + expect(global.fetch).toHaveBeenCalledWith('/taxonomy/2026-09-16.0/taxonomy.json'); + expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); + }); + + it('reconstructs the hierarchy path the generator omitted', async () => { + render(); + 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(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'); + }); + + 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-16.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 label figures "(new)" when the previous release simply has no counts', async () => { + // The December fixture has countsCsv: null, so its stats are zeros. That is + // missing data, not a measured zero, and must not drive a change indicator. + render(); + const categories = await screen.findByText('Categories'); + expect(categories.nextSibling).toHaveTextContent(/^3$/); + expect(categories.nextSibling).not.toHaveTextContent('new'); + }); + + it('still renders legacy CSV releases', async () => { + render(); + fireEvent.change(screen.getByRole('combobox'), { target: { value: 'december' } }); + expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); + expect(screen.queryByRole('link', { name: 'Taxonomy (JSON)' })).not.toBeInTheDocument(); + }); + + 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', () => { + const showSunburst = async () => { + render(); + await screen.findByText('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: '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('outlines basic categories and leaves the rest unoutlined', async () => { + await showSunburst(); + const arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; + const outlined = arcs.filter(p => parseFloat(p.getAttribute('stroke-width')) > 1); + // food_and_drink and casual_eatery are basic; bagel_shop is not. + expect(outlined).toHaveLength(2); + }); + + 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: 'Reset zoom' })).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); + }); + + it('renders the icicle view with labels', async () => { + render(); + await screen.findByText('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); + expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBeGreaterThan(0); + expect(document.querySelectorAll('.taxonomy-viz-cell-label').length).toBeGreaterThan(0); + }); + + // 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.findByText('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: '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('Reset zoom 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: 'Reset zoom' })); + expect(centreLabel()).toBe('Overture Places'); + expect(screen.getByRole('button', { name: 'Reset zoom' })).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); + }); + + it('steps back in the icicle view too', async () => { + global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); + render(); + await screen.findByText('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); + + const before = document.querySelectorAll('.taxonomy-viz-stage rect').length; + fireEvent.click(document.querySelector('.taxonomy-viz-stage rect')); + expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBeLessThan(before); + fireEvent.click(screen.getByRole('button', { name: '← Back' })); + expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBe(before); + }); + + it('keeps the tree view as the default', async () => { + render(); + await screen.findByText('Food and Drink'); + expect(screen.getByRole('button', { name: 'Tree' })).toHaveAttribute('aria-pressed', 'true'); + expect(document.querySelector('.taxonomy-viz-stage')).toBeNull(); + }); + }); + + it('filters the tree by search term', async () => { + render(); + 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.jsx similarity index 71% rename from src/components/taxonomyBrowser.js rename to src/components/taxonomyBrowser.jsx index a5c44f0a6..0f27c3e45 100644 --- a/src/components/taxonomyBrowser.js +++ b/src/components/taxonomyBrowser.jsx @@ -1,4 +1,6 @@ -import { useState, useMemo, useCallback } from 'react'; +import { useState, useMemo, useCallback, useEffect, useRef } from 'react'; +import { useBaseUrlUtils } from '@docusaurus/useBaseUrl'; +import TaxonomyViz from './taxonomyViz'; import '../css/taxonomyBrowser.css'; const SMALL_WORDS = new Set(['and', 'or', 'the', 'in', 'of', 'for', 'to', 'a', 'an']); @@ -252,6 +254,71 @@ function buildTree(rows, counts, config) { return { children: root, totalCategories: rows.length }; } +// --------------------------------------------------------------------------- +// 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) { + 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, + children: [], + }; + built.children = buildTreeFromJson(node.children ?? [], hierarchy, basicCategory, index); + 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 children = buildTreeFromJson(data.tree ?? [], '', null, index); + + const lookups = {}; + for (const [code, node] of Object.entries(index)) { + lookups[code] = { + hierarchy: node.hierarchy, + code, + basicCategory: node.basicCategory, + count: node.leafCount, + prevCount: null, + basicCount: null, + prevBasicCount: 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 // --------------------------------------------------------------------------- @@ -570,16 +637,52 @@ export default function TaxonomyBrowser({ releases: allReleases }) { [allReleases] ); - const [activeTab, setActiveTab] = useState(releases[0]?.id || ''); + // 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({}); + const [view, setView] = useState('tree'); + + 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()); + + // 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(() => { + let cancelled = false; + 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 (!cancelled) setJsonReleases(prev => ({ ...prev, [r.id]: buildJsonRelease(data) })); + }) + .catch(err => { + if (!cancelled) setLoadErrors(prev => ({ ...prev, [r.id]: err.message })); + }); + } + return () => { cancelled = true; }; + }, [releases, withBaseUrl]); - // Parse all data CSVs + // Parse all data CSVs. Releases sourced from JSON have no CSV to parse. const allRows = useMemo(() => { const result = {}; for (const r of releases) { - result[r.id] = parseCsv(r.dataCsv, r.fieldNames); + result[r.id] = r.dataCsv ? parseCsv(r.dataCsv, r.fieldNames) : []; } return result; }, [releases]); @@ -606,25 +709,33 @@ export default function TaxonomyBrowser({ releases: allReleases }) { const allTrees = useMemo(() => { const result = {}; for (const r of releases) { - result[r.id] = buildTree(allRows[r.id], allCountsByPrimary[r.id], r); + result[r.id] = r.dataUrl + ? (jsonReleases[r.id]?.tree ?? { children: [], totalCategories: 0 }) + : buildTree(allRows[r.id], allCountsByPrimary[r.id], r); } return result; - }, [releases, allRows, allCountsByPrimary]); + }, [releases, allRows, allCountsByPrimary, jsonReleases]); // Build lookups - const lookups = useMemo( - () => buildLookups(releases, allRows, allCountsByPrimary, allCountsByBasic), - [releases, allRows, allCountsByPrimary, allCountsByBasic] - ); + const lookups = useMemo(() => { + const csvReleases = releases.filter(r => !r.dataUrl); + const result = buildLookups(csvReleases, allRows, allCountsByPrimary, allCountsByBasic); + for (const r of releases) { + if (r.dataUrl) result[r.id] = jsonReleases[r.id]?.lookups ?? {}; + } + return result; + }, [releases, allRows, allCountsByPrimary, allCountsByBasic, jsonReleases]); // Stats per release const releaseStats = useMemo(() => { const result = {}; for (const r of releases) { - result[r.id] = parseCountsStats(r.countsCsv); + result[r.id] = r.dataUrl + ? (jsonReleases[r.id]?.stats ?? { totalPlaces: 0, uniqueCategories: 0, uniqueBasicCategories: 0 }) + : parseCountsStats(r.countsCsv); } return result; - }, [releases]); + }, [releases, jsonReleases]); // Previous release stats (for change indicators) const prevReleaseStats = useMemo(() => { @@ -706,8 +817,55 @@ export default function TaxonomyBrowser({ releases: allReleases }) { 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. + 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 ( -
+
Choose a release: @@ -726,7 +884,11 @@ export default function TaxonomyBrowser({ releases: allReleases }) { const tags = cfg?.tags || []; const releaseUrl = cfg?.releaseUrl || ''; const stats = releaseStats[activeTab]; - const prevStats = prevReleaseStats[activeTab]; + // A release with no counts file reports zeros, which is absence of + // data rather than a measurement of zero. Comparing against it would + // label every figure "(new)". + const prevRaw = prevReleaseStats[activeTab]; + const prevStats = prevRaw && prevRaw.uniqueCategories > 0 ? prevRaw : null; return (
@@ -741,17 +903,25 @@ export default function TaxonomyBrowser({ releases: allReleases }) {
))}
- {stats && stats.totalPlaces > 0 ? ( + {stats && stats.uniqueCategories > 0 && (
+ {/* Place counts are published per release and may not be ready + when the taxonomy is; the structural counts always are. */}
Total Places
- {stats.totalPlaces.toLocaleString()} - + {stats.totalPlaces > 0 ? ( + <> + {stats.totalPlaces.toLocaleString()} + + + ) : ( + Not published + )}
-
Unique Categories
+
Categories
{stats.uniqueCategories.toLocaleString()} @@ -765,17 +935,46 @@ export default function TaxonomyBrowser({ releases: allReleases }) {
- ) : ( -
+ )} + {cfg?.downloads?.length > 0 && ( +
-
Counts
-
No Data
+
Download
+
+ {cfg.downloads.map(d => ( + + {d.label} + + ))} +
)}
); })()} +
+ {[ + { id: 'tree', label: 'Tree' }, + { id: 'sunburst', label: 'Sunburst' }, + { id: 'icicle', label: 'Icicle' }, + ].map(v => ( + + ))} +
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 && ( + {filteredTree.length === 0 && !isLoading && !loadError && (
No categories match your search.
)}
+ )}
diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx new file mode 100644 index 000000000..b387a716c --- /dev/null +++ b/src/components/taxonomyViz.jsx @@ -0,0 +1,362 @@ +import { useState, useMemo, useCallback } from 'react'; +import { hierarchy, partition } from 'd3-hierarchy'; +import { arc as d3arc } from 'd3-shape'; + +/** + * Sunburst and icicle views over the taxonomy tree. + * + * Both are partition layouts of the same d3 hierarchy, so a view switch is a + * change of projection rather than a rebuild. 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. + * + * Basic categories carry a stroke rather than a hue, so "is this basic?" stays + * legible independently of which family a node belongs to. + */ + +// 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; + +/** + * 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}%)`; + }; +} + +/** 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. + if (sized) root.sum(d => (d.children?.length ? 0 : (d.leafCount ?? 1))); + 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; + const path = node.ancestors().reverse().slice(1).map(n => n.data.displayName); + return ( +
+
{node.data.displayName}
+
{path.join(' › ')}
+
+ {node.data.isBasic && Basic category} + {node.children + ? `${(node.descendants().length - 1).toLocaleString()} categories beneath` + : 'Leaf category'} +
+
+ ); +} + +function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, matches, showBasicOnly }) { + const radius = size / 2; + const laidOut = useMemo(() => { + const copy = root.copy(); + partition().size([2 * Math.PI, radius])(copy); + return copy; + }, [root, radius]); + + const [hover, setHover] = useState(null); + const [pointer, setPointer] = useState({ x: 0, y: 0 }); + + // Zooming 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 spanStart = base.x0; + const span = base.x1 - base.x0 || 2 * Math.PI; + const depthOffset = base.depth; + const ringCount = Math.max(1, laidOut.height - depthOffset); + const ringWidth = radius / ringCount; + 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, r0: (rel - 1) * ringWidth, r1: rel * ringWidth }; + }) + .filter(s => s.a1 - s.a0 > 0.0009); + + const label = focused ? focused.data.displayName : 'Overture Places'; + const beneath = base.descendants().length - 1; + + return ( +
setPointer({ x: e.clientX, y: e.clientY })}> + + + {segments.map(seg => { + const { d } = seg; + const isMatch = !matches || matches.has(d.data.code); + const passesBasic = !showBasicOnly || d.data.isBasic; + const dimmed = !isMatch || !passesBasic; + const isSelected = d.data.code === selectedCode; + return ( + setHover(d)} + onMouseLeave={() => setHover(null)} + onClick={() => { + onSelect(d.data.code); + if (d.children) onZoomIn(d.data.code); + }} + /> + ); + })} + {focused && ( + + Back to the previous view + + )} + {label} + + {`${beneath.toLocaleString()} categories`} + + + + +
+ ); +} + +function Icicle({ root, width, height, focus, onZoomIn, onSelect, selectedCode, matches, showBasicOnly }) { + const laidOut = useMemo(() => { + const copy = root.copy(); + partition().size([height, width])(copy); + return copy; + }, [root, width, height]); + + const [hover, setHover] = useState(null); + const [pointer, setPointer] = useState({ x: 0, y: 0 }); + + const focused = useMemo( + () => (focus ? (laidOut.descendants().find(d => d.data.code === focus) ?? null) : null), + [laidOut, focus] + ); + + // At full extent a leaf is a fraction of a pixel tall, so the whole taxonomy + // cannot be drawn at once. Re-projecting onto the focused branch is what makes + // the lower levels reachable, exactly as zooming does in the sunburst. + const base = focused ?? laidOut; + const spanStart = base.x0; + const span = base.x1 - base.x0 || height; + const depthOffset = base.depth; + const colCount = Math.max(1, laidOut.height - depthOffset); + const colWidth = width / colCount; + const colorOf = useMemo(() => buildColorScale(base, depthOffset), [base, depthOffset]); + + const rows = base + .descendants() + .filter(d => d.depth > depthOffset) + .map(d => { + const rel = d.depth - depthOffset; + return { + d, + y: ((d.x0 - spanStart) / span) * height, + h: ((d.x1 - d.x0) / span) * height, + x: (rel - 1) * colWidth, + w: colWidth, + }; + }) + .filter(r => r.h > 1.2); + + return ( +
setPointer({ x: e.clientX, y: e.clientY })}> + + {rows.map(({ d, x, y, w, h }) => { + const isMatch = !matches || matches.has(d.data.code); + const passesBasic = !showBasicOnly || d.data.isBasic; + const dimmed = !isMatch || !passesBasic; + const isSelected = d.data.code === selectedCode; + return ( + + setHover(d)} + onMouseLeave={() => setHover(null)} + onClick={() => { + onSelect(d.data.code); + if (d.children) onZoomIn(d.data.code); + }} + /> + {h > 11 && w > 46 && ( + + {d.data.displayName} + + )} + + ); + })} + + +
+ ); +} + +export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode, matches, sized }) { + // 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); + const root = useLayout(treeChildren, sized); + + 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 ( +
+
+ + + +
+ {view === 'sunburst' ? ( + + ) : ( + + )} +

+ {view === 'sunburst' + ? 'Click a segment to select it and zoom in; click the centre or Back to step out one level.' + : 'Click a cell to select it and zoom into that branch; Back steps out one level.'} + {' '}Outlined segments are basic categories. +

+
+ ); +} diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 352b2c68d..0790ab5f9 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -99,6 +99,41 @@ text-decoration: underline; } +.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 { + grid-template-columns: 1fr; + border-top: 1px solid var(--ifm-color-emphasis-200); + margin-top: 8px; +} + +.taxonomy-download-links { + display: flex; + flex-wrap: wrap; + gap: 6px; + justify-content: center; +} + +.taxonomy-download-link { + font-size: 0.75em; + 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; +} + .taxonomy-section-note { font-size: 0.85em; color: var(--ifm-color-emphasis-600); @@ -586,3 +621,186 @@ font-size: 0.85em; font-weight: 600; } + +/* --------------------------------------------------------------------------- + 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: 2; +} + +.taxonomy-browser--viz .taxonomy-browser-right { + flex: 1; + min-width: 260px; +} + +.taxonomy-view-switch { + display: flex; + gap: 4px; + padding: 8px 16px 0; +} + +.taxonomy-view-button { + flex: 1; + 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-view-button:hover { + border-color: var(--ifm-color-primary); +} + +.taxonomy-view-button--active { + background: var(--ifm-color-primary); + border-color: var(--ifm-color-primary); + color: var(--ifm-color-white, #fff); +} + +.taxonomy-browser-viz { + flex: 1; + overflow: auto; + padding: 8px 12px 12px; +} + +.taxonomy-viz { + display: flex; + flex-direction: column; + align-items: center; + gap: 8px; +} + +.taxonomy-viz-controls { + display: flex; + align-items: center; + gap: 12px; + align-self: stretch; + flex-wrap: wrap; +} + +.taxonomy-viz-toggle { + display: flex; + align-items: center; + gap: 6px; + font-size: 0.76em; + color: var(--ifm-color-emphasis-700); + cursor: pointer; +} + +.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; +} + +.taxonomy-viz-nav:hover:not(:disabled) { + border-color: var(--ifm-color-primary); +} + +.taxonomy-viz-nav:disabled { + color: var(--ifm-color-emphasis-400); + cursor: default; +} + +.taxonomy-viz-stage { + position: relative; +} + +.taxonomy-viz-arc { + cursor: pointer; +} + +.taxonomy-viz-arc:hover { + filter: brightness(1.12); +} + +.taxonomy-viz-center { + fill: var(--ifm-background-color); + cursor: pointer; +} + +.taxonomy-viz-center-label { + font-size: 13px; + font-weight: 600; + fill: var(--ifm-font-color-base); + pointer-events: none; +} + +.taxonomy-viz-center-sub { + font-size: 10px; + fill: var(--ifm-color-emphasis-600); + pointer-events: none; +} + +.taxonomy-viz-cell-label { + font-size: 10px; + fill: var(--ifm-font-color-base); + font-family: var(--ifm-font-family-base); +} + +.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); + font-size: 0.85em; +} + +.taxonomy-viz-tooltip { + position: fixed; + z-index: 200; + pointer-events: none; + max-width: 260px; + 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-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; +} + +.taxonomy-viz-basic-chip { + display: inline-block; + margin-right: 6px; + padding: 0 5px; + border: 1px solid currentcolor; + border-radius: 3px; + font-size: 0.9em; +} diff --git a/static/taxonomy/2026-09-16.0/basic_categories.csv b/static/taxonomy/2026-09-16.0/basic_categories.csv new file mode 100644 index 000000000..6758ec9a3 --- /dev/null +++ b/static/taxonomy/2026-09-16.0/basic_categories.csv @@ -0,0 +1,299 @@ +basic_category,display_name,path,level,group,count +arts_and_entertainment,Arts and Entertainment,arts_and_entertainment,0,arts_and_entertainment, +amusement_attraction,Amusement Attraction,arts_and_entertainment > amusement_attraction,1,arts_and_entertainment, +amusement_park,Amusement Park,arts_and_entertainment > amusement_attraction > amusement_park,2,arts_and_entertainment, +animal_attraction,Animal Attraction,arts_and_entertainment > animal_attraction,1,arts_and_entertainment, +aquarium,Aquarium,arts_and_entertainment > animal_attraction > aquarium,2,arts_and_entertainment, +zoo,Zoo,arts_and_entertainment > animal_attraction > zoo,2,arts_and_entertainment, +arts_and_crafts_space,Arts and Crafts Space,arts_and_entertainment > arts_and_crafts_space,1,arts_and_entertainment, +art_gallery,Art Gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,2,arts_and_entertainment, +sculpture_statue,Sculpture Statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,2,arts_and_entertainment, +street_art,Street Art,arts_and_entertainment > arts_and_crafts_space > street_art,2,arts_and_entertainment, +event_venue,Event Venue,arts_and_entertainment > event_venue,1,arts_and_entertainment, +festival_venue,Festival Venue,arts_and_entertainment > festival_venue,1,arts_and_entertainment, +fairgrounds,Fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,2,arts_and_entertainment, +gaming_venue,Gaming Venue,arts_and_entertainment > gaming_venue,1,arts_and_entertainment, +arcade,Arcade,arts_and_entertainment > gaming_venue > arcade,2,arts_and_entertainment, +casino,Casino,arts_and_entertainment > gaming_venue > casino,2,arts_and_entertainment, +movie_theater,Movie Theater,arts_and_entertainment > movie_theater,1,arts_and_entertainment, +museum,Museum,arts_and_entertainment > museum,1,arts_and_entertainment, +nightlife_venue,Nightlife Venue,arts_and_entertainment > nightlife_venue,1,arts_and_entertainment, +adult_entertainment_venue,Adult Entertainment Venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,2,arts_and_entertainment, +dance_club,Dance Club,arts_and_entertainment > nightlife_venue > dance_club,2,arts_and_entertainment, +performing_arts_venue,Performing Arts Venue,arts_and_entertainment > performing_arts_venue,1,arts_and_entertainment, +comedy_club,Comedy Club,arts_and_entertainment > performing_arts_venue > comedy_club,2,arts_and_entertainment, +music_venue,Music Venue,arts_and_entertainment > performing_arts_venue > music_venue,2,arts_and_entertainment, +theatre_venue,Theatre Venue,arts_and_entertainment > performing_arts_venue > theatre_venue,2,arts_and_entertainment, +rural_attraction,Rural Attraction,arts_and_entertainment > rural_attraction,1,arts_and_entertainment, +rodeo,Rodeo,arts_and_entertainment > rural_attraction > rodeo,2,arts_and_entertainment, +science_attraction,Science Attraction,arts_and_entertainment > science_attraction,1,arts_and_entertainment, +makerspace,Makerspace,arts_and_entertainment > science_attraction > makerspace,2,arts_and_entertainment, +planetarium,Planetarium,arts_and_entertainment > science_attraction > planetarium,2,arts_and_entertainment, +social_club,Social Club,arts_and_entertainment > social_club,1,arts_and_entertainment, +country_club,Country Club,arts_and_entertainment > social_club > country_club,2,arts_and_entertainment, +spiritual_advising,Spiritual Advising,arts_and_entertainment > spiritual_advising,1,arts_and_entertainment, +astrological_advising,Astrological Advising,arts_and_entertainment > spiritual_advising > astrological_advising,2,arts_and_entertainment, +psychic_advising,Psychic Advising,arts_and_entertainment > spiritual_advising > psychic_advising,2,arts_and_entertainment, +stadium_arena,Stadium Arena,arts_and_entertainment > stadium_arena,1,arts_and_entertainment, +ticket_office_or_booth,Ticket Office or Booth,arts_and_entertainment > ticket_office_or_booth,1,arts_and_entertainment, +community_and_government,Community and Government,community_and_government,0,community_and_government, +civic_organization,Civic Organization,community_and_government > civic_organization,1,community_and_government, +civic_center,Civic Center,community_and_government > civic_organization > civic_center,2,community_and_government, +labor_union,Labor Union,community_and_government > civic_organization > labor_union,2,community_and_government, +political_organization,Political Organization,community_and_government > civic_organization > political_organization,2,community_and_government, +government_office,Government Office,community_and_government > government_office,1,community_and_government, +courthouse,Courthouse,community_and_government > government_office > courthouse,2,community_and_government, +embassy,Embassy,community_and_government > government_office > embassy,2,community_and_government, +government_department,Government Department,community_and_government > government_office > government_department,2,community_and_government, +military_site,Military Site,community_and_government > military_site,1,community_and_government, +military_base,Military Base,community_and_government > military_site > military_base,2,community_and_government, +military_office,Military Office,community_and_government > military_site > military_office,2,community_and_government, +public_facility,Public Facility,community_and_government > public_facility,1,community_and_government, +public_fountain,Public Fountain,community_and_government > public_facility > public_fountain,2,community_and_government, +public_pathway,Public Pathway,community_and_government > public_facility > public_pathway,2,community_and_government, +public_plaza,Public Plaza,community_and_government > public_facility > public_plaza,2,community_and_government, +public_restroom,Public Restroom,community_and_government > public_facility > public_restroom,2,community_and_government, +public_safety_service,Public Safety Service,community_and_government > public_safety_service,1,community_and_government, +fire_station,Fire Station,community_and_government > public_safety_service > fire_station,2,community_and_government, +jail_or_prison,Jail or Prison,community_and_government > public_safety_service > jail_or_prison,2,community_and_government, +police_station,Police Station,community_and_government > public_safety_service > police_station,2,community_and_government, +public_utility,Public Utility,community_and_government > public_utility,1,community_and_government, +electric_utility_provider,Electric Utility Provider,community_and_government > public_utility > electric_utility_provider,2,community_and_government, +natural_gas_utility_provider,Natural Gas Utility Provider,community_and_government > public_utility > natural_gas_utility_provider,2,community_and_government, +water_utility_provider,Water Utility Provider,community_and_government > public_utility > water_utility_provider,2,community_and_government, +social_or_community_service,Social or Community Service,community_and_government > social_or_community_service,1,community_and_government, +community_center,Community Center,community_and_government > social_or_community_service > community_center,2,community_and_government, +food_bank,Food Bank,community_and_government > social_or_community_service > food_bank,2,community_and_government, +youth_organization,Youth Organization,community_and_government > social_or_community_service > youth_organization,2,community_and_government, +cultural_and_historic,Cultural and Historic,cultural_and_historic,0,cultural_and_historic, +cultural_center,Cultural Center,cultural_and_historic > cultural_center,1,cultural_and_historic, +historic_site,Historic Site,cultural_and_historic > historic_site,1,cultural_and_historic, +castle,Castle,cultural_and_historic > historic_site > castle,2,cultural_and_historic, +fort,Fort,cultural_and_historic > historic_site > fort,2,cultural_and_historic, +lighthouse,Lighthouse,cultural_and_historic > historic_site > lighthouse,2,cultural_and_historic, +memorial_site,Memorial Site,cultural_and_historic > memorial_site,1,cultural_and_historic, +cemetery,Cemetery,cultural_and_historic > memorial_site > cemetery,2,cultural_and_historic, +monument,Monument,cultural_and_historic > memorial_site > monument,2,cultural_and_historic, +place_of_worship,Place of Worship,cultural_and_historic > place_of_worship,1,cultural_and_historic, +buddhist_place_of_worship,Buddhist Place of Worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,2,cultural_and_historic, +christian_place_of_worship,Christian Place of Worship,cultural_and_historic > place_of_worship > christian_place_of_worship,2,cultural_and_historic, +hindu_place_of_worship,Hindu Place of Worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,2,cultural_and_historic, +jewish_place_of_worship,Jewish Place of Worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,2,cultural_and_historic, +muslim_place_of_worship,Muslim Place of Worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,2,cultural_and_historic, +religious_landmark,Religious Landmark,cultural_and_historic > religious_landmark,1,cultural_and_historic, +religious_organization,Religious Organization,cultural_and_historic > religious_organization,1,cultural_and_historic, +religious_retreat_or_center,Religious Retreat or Center,cultural_and_historic > religious_retreat_or_center,1,cultural_and_historic, +education,Education,education,0,education, +education_office,Education Office,education > education_office,1,education, +school_district_office,School District Office,education > education_office > school_district_office,2,education, +educational_facility,Educational Facility,education > educational_facility,1,education, +campus,Campus,education > educational_facility > campus,2,education, +campus_building,Campus Building,education > educational_facility > campus_building,2,education, +educational_service,Educational Service,education > educational_service,1,education, +tutoring_service,Tutoring Service,education > educational_service > tutoring_service,2,education, +library,Library,education > library,1,education, +place_of_learning,Place of Learning,education > place_of_learning,1,education, +academy,Academy,education > place_of_learning > academy,2,education, +class_venue,Class Venue,education > place_of_learning > class_venue,2,education, +college_university,College University,education > place_of_learning > college_university,2,education, +elementary_school,Elementary School,education > place_of_learning > school > elementary_school,3,education, +high_school,High School,education > place_of_learning > school > high_school,3,education, +kindergarten,Kindergarten,education > place_of_learning > school > kindergarten,3,education, +middle_school,Middle School,education > place_of_learning > school > middle_school,3,education, +preschool,Preschool,education > place_of_learning > school > preschool,3,education, +specialty_school,Specialty School,education > place_of_learning > specialty_school,2,education, +research_institute,Research Institute,education > research_institute,1,education, +food_and_drink,Food and Drink,food_and_drink,0,food_and_drink, +alcoholic_beverage_venue,Alcoholic Beverage Venue,food_and_drink > alcoholic_beverage_venue,1,food_and_drink, +bar,Bar,food_and_drink > alcoholic_beverage_venue > bar,2,food_and_drink, +brewery,Brewery,food_and_drink > alcoholic_beverage_venue > brewery,2,food_and_drink, +distillery,Distillery,food_and_drink > alcoholic_beverage_venue > distillery,2,food_and_drink, +lounge,Lounge,food_and_drink > alcoholic_beverage_venue > lounge,2,food_and_drink, +winery,Winery,food_and_drink > alcoholic_beverage_venue > winery,2,food_and_drink, +casual_eatery,Casual Eatery,food_and_drink > casual_eatery,1,food_and_drink, +cafe,Cafe,food_and_drink > casual_eatery > cafe,2,food_and_drink, +fast_food_restaurant,Fast Food Restaurant,food_and_drink > casual_eatery > fast_food_restaurant,2,food_and_drink, +food_court,Food Court,food_and_drink > casual_eatery > food_court,2,food_and_drink, +food_truck_stand,Food Truck or Stand,food_and_drink > casual_eatery > food_truck_stand,2,food_and_drink, +non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,food_and_drink > non_alcoholic_beverage_venue,1,food_and_drink, +coffee_shop,Coffee Shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,2,food_and_drink, +smoothie_juice_bar,Smoothie or Juice Bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,2,food_and_drink, +restaurant,Restaurant,food_and_drink > restaurant,1,food_and_drink, +geographic_entities,Geographic Entities,geographic_entities,0,geographic_entities, +built_feature,Built Feature,geographic_entities > built_feature,1,geographic_entities, +bridge,Bridge,geographic_entities > built_feature > bridge,2,geographic_entities, +building,Building,geographic_entities > built_feature > building,2,geographic_entities, +dam,Dam,geographic_entities > built_feature > dam,2,geographic_entities, +dock,Dock,geographic_entities > built_feature > dock,2,geographic_entities, +garden,Garden,geographic_entities > built_feature > garden,2,geographic_entities, +marina,Marina,geographic_entities > built_feature > marina,2,geographic_entities, +pier,Pier,geographic_entities > built_feature > pier,2,geographic_entities, +land_feature,Land Feature,geographic_entities > land_feature,1,geographic_entities, +beach,Beach,geographic_entities > land_feature > beach,2,geographic_entities, +canyon,Canyon,geographic_entities > land_feature > canyon,2,geographic_entities, +forest,Forest,geographic_entities > land_feature > forest,2,geographic_entities, +hill,Hill,geographic_entities > land_feature > hill,2,geographic_entities, +island,Island,geographic_entities > land_feature > island,2,geographic_entities, +mountain,Mountain,geographic_entities > land_feature > mountain,2,geographic_entities, +nature_reserve,Nature Reserve,geographic_entities > land_feature > nature_reserve,2,geographic_entities, +valley,Valley,geographic_entities > land_feature > valley,2,geographic_entities, +scenic_viewpoint,Scenic Viewpoint,geographic_entities > scenic_viewpoint,1,geographic_entities, +water_feature,Water Feature,geographic_entities > water_feature,1,geographic_entities, +canal,Canal,geographic_entities > water_feature > canal,2,geographic_entities, +hot_springs,Hot Springs,geographic_entities > water_feature > hot_springs,2,geographic_entities, +lake,Lake,geographic_entities > water_feature > lake,2,geographic_entities, +ocean,Ocean,geographic_entities > water_feature > ocean,2,geographic_entities, +river,River,geographic_entities > water_feature > river,2,geographic_entities, +sea,Sea,geographic_entities > water_feature > sea,2,geographic_entities, +waterfall,Waterfall,geographic_entities > water_feature > waterfall,2,geographic_entities, +health_care,Health Care,health_care,0,health_care, +emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,health_care > emergency_or_urgent_care_facility,1,health_care, +emergency_department,Emergency Department,health_care > emergency_or_urgent_care_facility > emergency_department,2,health_care, +urgent_care_clinic,Urgent Care Clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,2,health_care, +walk_in_clinic,Walk-In Clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,2,health_care, +hospital,Hospital,health_care > hospital,1,health_care, +general_hospital,General Hospital,health_care > hospital > general_hospital,2,health_care, +specialty_hospital,Specialty Hospital,health_care > hospital > specialty_hospital,2,health_care, +medical_service,Medical Service,health_care > medical_service,1,health_care, +outpatient_care_facility,Outpatient Care Facility,health_care > outpatient_care_facility,1,health_care, +behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,2,health_care, +complementary_and_alternative_medicine,Complementary and Alternative Medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,2,health_care, +dental_clinic,Dental Clinic,health_care > outpatient_care_facility > dental_clinic,2,health_care, +diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,2,health_care, +pediatric_clinic,Pediatric Clinic,health_care > outpatient_care_facility > pediatric_clinic,2,health_care, +physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,2,health_care, +primary_care_or_general_clinic,Primary Care or General Clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic,2,health_care, +reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,2,health_care, +specialized_health_care,Specialized Health Care,health_care > outpatient_care_facility > specialized_health_care,2,health_care, +vision_or_eye_care_clinic,Vision or Eye Care Clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,2,health_care, +specialized_medical_facility,Specialized Medical Facility,health_care > specialized_medical_facility,1,health_care, +surgery,Surgery,health_care > specialized_medical_facility > surgery,2,health_care, +lifestyle_services,Lifestyle Services,lifestyle_services,0,lifestyle_services, +animal_or_pet_service,Animal or Pet Service,lifestyle_services > animal_or_pet_service,1,lifestyle_services, +food_service,Food Service,lifestyle_services > food_service,1,lifestyle_services, +personal_or_beauty_service,Personal or Beauty Service,lifestyle_services > personal_or_beauty_service,1,lifestyle_services, +wellness_service,Wellness Service,lifestyle_services > wellness_service,1,lifestyle_services, +lodging,Lodging,lodging,0,lodging, +bed_and_breakfast,Bed and Breakfast,lodging > bed_and_breakfast,1,lodging, +campground,Campground,lodging > campground,1,lodging, +hotel,Hotel,lodging > hotel,1,lodging, +inn,Inn,lodging > inn,1,lodging, +private_lodging,Private Lodging,lodging > private_lodging,1,lodging, +resort,Resort,lodging > resort,1,lodging, +rv_park,RV Park,lodging > rv_park,1,lodging, +services_and_business,Services and Business,services_and_business,0,services_and_business, +agricultural_service,Agricultural Service,services_and_business > agricultural_service,1,services_and_business, +farm,Farm,services_and_business > agricultural_service > farm,2,services_and_business, +b2b_service,B2B Service,services_and_business > b2b_service,1,services_and_business, +b2b_energy_and_utility_service,B2B Energy and Utility Service,services_and_business > b2b_service > b2b_energy_and_utility_service,2,services_and_business, +b2b_industrial_and_machine_service,B2B Industrial and Machine Service,services_and_business > b2b_service > b2b_industrial_and_machine_service,2,services_and_business, +b2b_office_and_professional_service,B2B Office and Professional Service,services_and_business > b2b_service > b2b_office_and_professional_service,2,services_and_business, +b2b_science_and_technology_service,B2B Science and Technology Service,services_and_business > b2b_service > b2b_science_and_technology_service,2,services_and_business, +b2b_transportation_and_storage_service,B2B Transportation and Storage Service,services_and_business > b2b_service > b2b_transportation_and_storage_service,2,services_and_business, +manufacturer,Manufacturer,services_and_business > b2b_service > manufacturer,2,services_and_business, +supplier_or_distributor,Supplier or Distributor,services_and_business > b2b_service > supplier_or_distributor,2,services_and_business, +wholesaler,Wholesaler,services_and_business > b2b_service > wholesaler,2,services_and_business, +building_or_construction_service,Building or Construction Service,services_and_business > building_or_construction_service,1,services_and_business, +corporate_or_business_office,Corporate or Business Office,services_and_business > corporate_or_business_office,1,services_and_business, +design_service,Design Service,services_and_business > design_service,1,services_and_business, +environmental_or_ecological_service,Environmental or Ecological Service,services_and_business > environmental_or_ecological_service,1,services_and_business, +event_or_party_service,Event or Party Service,services_and_business > event_or_party_service,1,services_and_business, +family_service,Family Service,services_and_business > family_service,1,services_and_business, +financial_service,Financial Service,services_and_business > financial_service,1,services_and_business, +atm,ATM,services_and_business > financial_service > atm,2,services_and_business, +bank_or_credit_union,Bank or Credit Union,services_and_business > financial_service > bank_or_credit_union,2,services_and_business, +home_service,Home Service,services_and_business > home_service,1,services_and_business, +housing_or_property_service,Housing or Property Service,services_and_business > housing_or_property_service,1,services_and_business, +apartment,Apartment,services_and_business > housing_or_property_service > apartment,2,services_and_business, +condominium,Condominium,services_and_business > housing_or_property_service > condominium,2,services_and_business, +senior_living_facility,Senior Living Facility,services_and_business > housing_or_property_service > senior_living_facility,2,services_and_business, +industrial_facility_or_service,Industrial Facility or Service,services_and_business > industrial_facility_or_service,1,services_and_business, +laundry_service,Laundry Service,services_and_business > laundry_service,1,services_and_business, +legal_service,Legal Service,services_and_business > legal_service,1,services_and_business, +attorney_or_law_firm,Attorney or Law Firm,services_and_business > legal_service > attorney_or_law_firm,2,services_and_business, +media_service,Media Service,services_and_business > media_service,1,services_and_business, +radio_station,Radio Station,services_and_business > media_service > media_news_company > radio_station,3,services_and_business, +television_station,Television Station,services_and_business > media_service > media_news_company > television_station,3,services_and_business, +printing_service,Printing Service,services_and_business > printing_service,1,services_and_business, +professional_service,Professional Service,services_and_business > professional_service,1,services_and_business, +real_estate_service,Real Estate Service,services_and_business > real_estate_service,1,services_and_business, +rental_service,Rental Service,services_and_business > rental_service,1,services_and_business, +security_service,Security Service,services_and_business > security_service,1,services_and_business, +shipping_or_delivery_service,Shipping or Delivery Service,services_and_business > shipping_or_delivery_service,1,services_and_business, +storage_facility,Storage Facility,services_and_business > storage_facility,1,services_and_business, +technical_service,Technical Service,services_and_business > technical_service,1,services_and_business, +telecommunications_service,Telecommunications Service,services_and_business > telecommunications_service,1,services_and_business, +utility_energy_infrastructure,Utility Energy Infrastructure,services_and_business > utility_energy_infrastructure,1,services_and_business, +shopping,Shopping,shopping,0,shopping, +convenience_store,Convenience Store,shopping > convenience_store,1,shopping, +department_store,Department Store,shopping > department_store,1,shopping, +discount_store,Discount Store,shopping > discount_store,1,shopping, +fashion_and_apparel_store,Fashion and Apparel Store,shopping > fashion_and_apparel_store,1,shopping, +food_and_beverage_store,Food and Beverage Store,shopping > food_and_beverage_store,1,shopping, +kiosk,Kiosk,shopping > kiosk,1,shopping, +market,Market,shopping > market,1,shopping, +farmers_market,Farmers Market,shopping > market > farmers_market,2,shopping, +second_hand_store,Second Hand Store,shopping > second_hand_store,1,shopping, +shopping_mall,Shopping Mall,shopping > shopping_mall,1,shopping, +shopping_service,Shopping Service,shopping > shopping_service,1,shopping, +specialty_store,Specialty Store,shopping > specialty_store,1,shopping, +animal_and_pet_store,Animal and Pet Store,shopping > specialty_store > animal_and_pet_store,2,shopping, +arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,shopping > specialty_store > arts_crafts_and_hobby_store,2,shopping, +books_music_and_video_store,Books Music and Video Store,shopping > specialty_store > books_music_and_video_store,2,shopping, +electronics_store,Electronics Store,shopping > specialty_store > electronics_store,2,shopping, +flowers_and_gifts_store,Flowers and Gifts Store,shopping > specialty_store > flowers_and_gifts_store,2,shopping, +hardware_home_and_garden_store,Hardware Home and Garden Store,shopping > specialty_store > hardware_home_and_garden_store,2,shopping, +musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,shopping > specialty_store > musical_instrument_and_pro_audio_store,2,shopping, +office_supply_store,Office Supply Store,shopping > specialty_store > office_supply_store,2,shopping, +personal_care_and_beauty_store,Personal Care and Beauty Store,shopping > specialty_store > personal_care_and_beauty_store,2,shopping, +pharmacy_and_drug_store,Pharmacy and Drug Store,shopping > specialty_store > pharmacy_and_drug_store,2,shopping, +sporting_goods_store,Sporting Goods Store,shopping > specialty_store > sporting_goods_store,2,shopping, +toys_and_games_store,Toys and Games Store,shopping > specialty_store > toys_and_games_store,2,shopping, +vehicle_parts_store,Vehicle Parts Store,shopping > specialty_store > vehicle_parts_store,2,shopping, +superstore,Superstore,shopping > superstore,1,shopping, +vehicle_dealer,Vehicle Dealer,shopping > vehicle_dealer,1,shopping, +auto_dealer,Auto Dealer,shopping > vehicle_dealer > auto_dealer,2,shopping, +warehouse_club_store,Warehouse Club Store,shopping > warehouse_club_store,1,shopping, +sports_and_recreation,Sports and Recreation,sports_and_recreation,0,sports_and_recreation, +park,Park,sports_and_recreation > park,1,sports_and_recreation, +dog_park,Dog Park,sports_and_recreation > park > dog_park,2,sports_and_recreation, +national_park,National Park,sports_and_recreation > park > national_park,2,sports_and_recreation, +playground,Playground,sports_and_recreation > park > playground,2,sports_and_recreation, +recreational_equipment_rental,Recreational Equipment Rental,sports_and_recreation > recreational_equipment_rental,1,sports_and_recreation, +recreational_trail_or_path,Recreational Trail or Path,sports_and_recreation > recreational_trail_or_path,1,sports_and_recreation, +sport_league,Sport League,sports_and_recreation > sport_league,1,sports_and_recreation, +sport_or_fitness_facility,Sport or Fitness Facility,sports_and_recreation > sport_or_fitness_facility,1,sports_and_recreation, +fitness_studio,Fitness Studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio,2,sports_and_recreation, +golf_course,Golf Course,sports_and_recreation > sport_or_fitness_facility > golf_course,2,sports_and_recreation, +gym,Gym,sports_and_recreation > sport_or_fitness_facility > gym,2,sports_and_recreation, +skate_park,Skate Park,sports_and_recreation > sport_or_fitness_facility > skate_park,2,sports_and_recreation, +skating_rink,Skating Rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,2,sports_and_recreation, +sport_court,Sport Court,sports_and_recreation > sport_or_fitness_facility > sport_court,2,sports_and_recreation, +sport_field,Sport Field,sports_and_recreation > sport_or_fitness_facility > sport_field,2,sports_and_recreation, +sports_complex,Sports Complex,sports_and_recreation > sport_or_fitness_facility > sports_complex,2,sports_and_recreation, +swimming_pool,Swimming Pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,2,sports_and_recreation, +sport_or_recreation_club,Sport or Recreation Club,sports_and_recreation > sport_or_recreation_club,1,sports_and_recreation, +sport_team,Sport Team,sports_and_recreation > sport_team,1,sports_and_recreation, +travel_and_transportation,Travel and Transportation,travel_and_transportation,0,travel_and_transportation, +air_transport_facility_or_service,Air Transport Facility or Service,travel_and_transportation > air_transport_facility_or_service,1,travel_and_transportation, +airport,Airport,travel_and_transportation > air_transport_facility_or_service > airport,2,travel_and_transportation, +fueling_station,Fueling Station,travel_and_transportation > fueling_station,1,travel_and_transportation, +ev_charging_station,EV Charging Station,travel_and_transportation > fueling_station > ev_charging_station,2,travel_and_transportation, +gas_station,Gas Station,travel_and_transportation > fueling_station > gas_station,2,travel_and_transportation, +ground_transport_facility_or_service,Ground Transport Facility or Service,travel_and_transportation > ground_transport_facility_or_service,1,travel_and_transportation, +public_transit_facility_or_service,Public Transit Facility or Service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,2,travel_and_transportation, +rail_facility_or_service,Rail Facility or Service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,2,travel_and_transportation, +train_station,Train Station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,3,travel_and_transportation, +rest_stop,Rest Stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,3,travel_and_transportation, +toll_station,Toll Station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,3,travel_and_transportation, +taxi_or_ride_share_service,Taxi or Ride Share Service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,2,travel_and_transportation, +parking,Parking,travel_and_transportation > parking,1,travel_and_transportation, +park_and_ride,Park and Ride,travel_and_transportation > parking > park_and_ride,2,travel_and_transportation, +parking_garage,Parking Garage,travel_and_transportation > parking > parking_garage,2,travel_and_transportation, +parking_lot,Parking Lot,travel_and_transportation > parking > parking_lot,2,travel_and_transportation, +travel_service,Travel Service,travel_and_transportation > travel_service,1,travel_and_transportation, +vehicle_service,Vehicle Service,travel_and_transportation > vehicle_service,1,travel_and_transportation, +automotive_service,Automotive Service,travel_and_transportation > vehicle_service > automotive_service,2,travel_and_transportation, +water_transport_facility_or_service,Water Transport Facility or Service,travel_and_transportation > water_transport_facility_or_service,1,travel_and_transportation, +ferry_service,Ferry Service,travel_and_transportation > water_transport_facility_or_service > ferry_service,2,travel_and_transportation, +water_taxi_service,Water Taxi Service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,2,travel_and_transportation, diff --git a/static/taxonomy/2026-09-16.0/legacy_crosswalk.csv b/static/taxonomy/2026-09-16.0/legacy_crosswalk.csv new file mode 100644 index 000000000..ed401d0d7 --- /dev/null +++ b/static/taxonomy/2026-09-16.0/legacy_crosswalk.csv @@ -0,0 +1,2008 @@ +legacy_primary_category,legacy_primary_hierarchy,taxonomy_primary,taxonomy_path,taxonomy_display_name +arts_and_entertainment,arts_and_entertainment,arts_and_entertainment,arts_and_entertainment,Arts and Entertainment +amusement_park,attractions_and_activities > amusement_park,amusement_park,arts_and_entertainment > amusement_attraction > amusement_park,Amusement Park +carousel,arts_and_entertainment > carousel,carousel,arts_and_entertainment > amusement_attraction > carousel,Carousel +circus,arts_and_entertainment > circus,circus_venue,arts_and_entertainment > amusement_attraction > circus_venue,Circus Venue +haunted_house,attractions_and_activities > haunted_house,haunted_house,arts_and_entertainment > amusement_attraction > haunted_house,Haunted House +aquarium,attractions_and_activities > aquarium,aquarium,arts_and_entertainment > animal_attraction > aquarium,Aquarium +wildlife_sanctuary,arts_and_entertainment > wildlife_sanctuary,wildlife_sanctuary,arts_and_entertainment > animal_attraction > wildlife_sanctuary,Wildlife Sanctuary +zoo,attractions_and_activities > zoo,zoo,arts_and_entertainment > animal_attraction > zoo,Zoo +petting_zoo,attractions_and_activities > zoo > petting_zoo,petting_zoo,arts_and_entertainment > animal_attraction > zoo > petting_zoo,Petting Zoo +chamber_of_handicraft,arts_and_entertainment > chamber_of_handicraft,arts_and_crafts_space,arts_and_entertainment > arts_and_crafts_space,Arts and Crafts Space +art_gallery,attractions_and_activities > art_gallery,art_gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,Art Gallery +glass_blowing,arts_and_entertainment > glass_blowing,glass_blowing_venue,arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,Glass Blowing Venue +paint_and_sip,arts_and_entertainment > paint_and_sip,paint_and_sip_venue,arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,Paint and Sip Venue +paint_your_own_pottery,retail > shopping > arts_and_crafts > 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 +sculpture_statue,attractions_and_activities > sculpture_statue,sculpture_statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,Sculpture Statue +street_art,attractions_and_activities > street_art,street_art,arts_and_entertainment > arts_and_crafts_space > street_art,Street Art +venue_and_event_space,professional_services > event_planning > venue_and_event_space,event_venue,arts_and_entertainment > event_venue,Event Venue +auditorium,arts_and_entertainment > auditorium,auditorium,arts_and_entertainment > event_venue > auditorium,Auditorium +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,Exhibition and Trade Fair Venue +festival,arts_and_entertainment > festival,festival_venue,arts_and_entertainment > festival_venue,Festival Venue +fair,arts_and_entertainment > festival > fair,fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,Fairgrounds +film_festivals_and_organizations,arts_and_entertainment > festival > film_festivals_and_organizations,film_festival_venue,arts_and_entertainment > festival_venue > film_festival_venue,Film Festival Venue +music_festivals_and_organizations,arts_and_entertainment > festival > music_festivals_and_organizations,music_festival_venue,arts_and_entertainment > festival_venue > music_festival_venue,Music Festival Venue +arcade,arts_and_entertainment > arcade,arcade,arts_and_entertainment > gaming_venue > arcade,Arcade +betting_center,arts_and_entertainment > betting_center,betting_center,arts_and_entertainment > gaming_venue > betting_center,Betting Center +bingo_hall,arts_and_entertainment > bingo_hall,bingo_hall,arts_and_entertainment > gaming_venue > bingo_hall,Bingo Hall +casino,arts_and_entertainment > casino,casino,arts_and_entertainment > gaming_venue > casino,Casino +escape_rooms,arts_and_entertainment > escape_rooms,escape_room,arts_and_entertainment > gaming_venue > escape_room,Escape Room +lottery_ticket,professional_services > lottery_ticket,lottery_vendor,arts_and_entertainment > gaming_venue > lottery_vendor,Lottery Vendor +scavenger_hunts_provider,attractions_and_activities > scavenger_hunts_provider,scavenger_hunt,arts_and_entertainment > gaming_venue > scavenger_hunt,Scavenger Hunt +cinema,arts_and_entertainment > cinema,movie_theater,arts_and_entertainment > movie_theater,Movie Theater +drive_in_theater,arts_and_entertainment > cinema > drive_in_theater,drive_in_theater,arts_and_entertainment > movie_theater > drive_in_theater,Drive-In Theater +outdoor_movies,arts_and_entertainment > cinema > outdoor_movies,outdoor_movie_space,arts_and_entertainment > movie_theater > outdoor_movie_space,Outdoor Movie Space +museum,attractions_and_activities > museum,museum,arts_and_entertainment > museum,Museum +art_museum,attractions_and_activities > museum > art_museum,art_museum,arts_and_entertainment > museum > art_museum,Art Museum +asian_art_museum,attractions_and_activities > museum > art_museum > asian_art_museum,asian_art_museum,arts_and_entertainment > museum > art_museum > asian_art_museum,Asian Art Museum +cartooning_museum,attractions_and_activities > museum > art_museum > cartooning_museum,cartooning_museum,arts_and_entertainment > museum > art_museum > cartooning_museum,Cartooning Museum +contemporary_art_museum,attractions_and_activities > museum > art_museum > contemporary_art_museum,contemporary_art_museum,arts_and_entertainment > museum > art_museum > contemporary_art_museum,Contemporary Art Museum +costume_museum,attractions_and_activities > museum > art_museum > costume_museum,costume_museum,arts_and_entertainment > museum > art_museum > costume_museum,Costume Museum +decorative_arts_museum,attractions_and_activities > museum > art_museum > decorative_arts_museum,decorative_arts_museum,arts_and_entertainment > museum > art_museum > decorative_arts_museum,Decorative Arts Museum +design_museum,attractions_and_activities > museum > art_museum > design_museum,design_museum,arts_and_entertainment > museum > art_museum > design_museum,Design Museum +modern_art_museum,attractions_and_activities > museum > art_museum > modern_art_museum,modern_art_museum,arts_and_entertainment > museum > art_museum > modern_art_museum,Modern Art Museum +photography_museum,attractions_and_activities > museum > art_museum > photography_museum,photography_museum,arts_and_entertainment > museum > art_museum > photography_museum,Photography Museum +textile_museum,attractions_and_activities > museum > art_museum > textile_museum,textile_museum,arts_and_entertainment > museum > art_museum > textile_museum,Textile Museum +aviation_museum,attractions_and_activities > museum > aviation_museum,aviation_museum,arts_and_entertainment > museum > aviation_museum,Aviation Museum +childrens_museum,attractions_and_activities > museum > childrens_museum,childrens_museum,arts_and_entertainment > museum > childrens_museum,Children's Museum +history_museum,attractions_and_activities > museum > history_museum,history_museum,arts_and_entertainment > museum > history_museum,History Museum +civilization_museum,attractions_and_activities > museum > history_museum > civilization_museum,civilization_museum,arts_and_entertainment > museum > history_museum > civilization_museum,Civilization Museum +community_museum,attractions_and_activities > museum > history_museum > community_museum,community_museum,arts_and_entertainment > museum > history_museum > community_museum,Community Museum +military_museum,attractions_and_activities > museum > military_museum,military_museum,arts_and_entertainment > museum > military_museum,Military Museum +national_museum,attractions_and_activities > museum > national_museum,national_museum,arts_and_entertainment > museum > national_museum,National Museum +science_museum,attractions_and_activities > museum > science_museum,science_museum,arts_and_entertainment > museum > science_museum,Science Museum +computer_museum,attractions_and_activities > museum > science_museum > computer_museum,computer_museum,arts_and_entertainment > museum > science_museum > computer_museum,Computer Museum +sports_museum,attractions_and_activities > museum > sports_museum,sports_museum,arts_and_entertainment > museum > sports_museum,Sports Museum +state_museum,attractions_and_activities > museum > state_museum,state_museum,arts_and_entertainment > museum > state_museum,State Museum +adult_entertainment,arts_and_entertainment > adult_entertainment,adult_entertainment_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,Adult Entertainment Venue +erotic_massage,arts_and_entertainment > adult_entertainment > erotic_massage,erotic_massage_venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,Erotic Massage Venue +strip_club,arts_and_entertainment > adult_entertainment > strip_club,strip_club,arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,Strip Club +bar_crawl,arts_and_entertainment > bar_crawl,bar_crawl,arts_and_entertainment > nightlife_venue > bar_crawl,Bar Crawl +club_crawl,arts_and_entertainment > club_crawl,club_crawl,arts_and_entertainment > nightlife_venue > club_crawl,Club Crawl +dance_club,arts_and_entertainment > dance_club,dance_club,arts_and_entertainment > nightlife_venue > dance_club,Dance Club +salsa_club,arts_and_entertainment > salsa_club,salsa_club,arts_and_entertainment > nightlife_venue > dance_club > salsa_club,Salsa Club +theaters_and_performance_venues,arts_and_entertainment > theaters_and_performance_venues,performing_arts_venue,arts_and_entertainment > performing_arts_venue,Performing Arts Venue +cabaret,arts_and_entertainment > cabaret,cabaret,arts_and_entertainment > performing_arts_venue > cabaret,Cabaret +comedy_club,arts_and_entertainment > comedy_club,comedy_club,arts_and_entertainment > performing_arts_venue > comedy_club,Comedy Club +music_venue,arts_and_entertainment > music_venue,music_venue,arts_and_entertainment > performing_arts_venue > music_venue,Music Venue +musical_band_orchestras_and_symphonies,arts_and_entertainment > musical_band_orchestras_and_symphonies,band_orchestra_symphony,arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,Band Orchestra Symphony +choir,arts_and_entertainment > choir,choir,arts_and_entertainment > performing_arts_venue > music_venue > choir,Choir +jazz_and_blues,arts_and_entertainment > jazz_and_blues,jazz_and_blues_venue,arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,Jazz and Blues Venue +karaoke,arts_and_entertainment > karaoke,karaoke_venue,arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,Karaoke Venue +opera_and_ballet,arts_and_entertainment > opera_and_ballet,opera_and_ballet,arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,Opera and Ballet +theatre,arts_and_entertainment > theaters_and_performance_venues > theatre,theatre_venue,arts_and_entertainment > performing_arts_venue > theatre_venue,Theatre Venue +dinner_theater,arts_and_entertainment > dinner_theater,dinner_theater,arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,Dinner Theater +attraction_farm,arts_and_entertainment > farm > attraction_farm,attraction_farm,arts_and_entertainment > rural_attraction > attraction_farm,Attraction Farm +country_dance_hall,arts_and_entertainment > country_dance_hall,country_dance_hall,arts_and_entertainment > rural_attraction > country_dance_hall,Country Dance Hall +pumpkin_patch,retail > shopping > home_and_garden > pumpkin_patch,pumpkin_patch,arts_and_entertainment > rural_attraction > pumpkin_patch,Pumpkin Patch +rodeo,arts_and_entertainment > rodeo,rodeo,arts_and_entertainment > rural_attraction > rodeo,Rodeo +makerspace,arts_and_entertainment > makerspace,makerspace,arts_and_entertainment > science_attraction > makerspace,Makerspace +observatory,attractions_and_activities > observatory,observatory,arts_and_entertainment > science_attraction > observatory,Observatory +planetarium,arts_and_entertainment > planetarium,planetarium,arts_and_entertainment > science_attraction > planetarium,Planetarium +virtual_reality_center,arts_and_entertainment > virtual_reality_center,virtual_reality_center,arts_and_entertainment > science_attraction > virtual_reality_center,Virtual Reality Center +social_club,arts_and_entertainment > social_club,social_club,arts_and_entertainment > social_club,Social Club +country_club,arts_and_entertainment > country_club,country_club,arts_and_entertainment > social_club > country_club,Country Club +fraternal_organization,arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,arts_and_entertainment > social_club > fraternal_organization,Fraternal Organization +veterans_organization,arts_and_entertainment > social_club > veterans_organization,veterans_organization,arts_and_entertainment > social_club > veterans_organization,Veterans Organization +mystic,arts_and_entertainment > supernatural_reading > mystic,spiritual_advising,arts_and_entertainment > spiritual_advising,Spiritual Advising +astrologer,arts_and_entertainment > supernatural_reading > astrologer,astrological_advising,arts_and_entertainment > spiritual_advising > astrological_advising,Astrological Advising +fortune_telling_service,professional_services > fortune_telling_service,fortune_telling,arts_and_entertainment > spiritual_advising > fortune_telling,Fortune Telling +psychic,arts_and_entertainment > supernatural_reading > psychic,psychic_advising,arts_and_entertainment > spiritual_advising > psychic_advising,Psychic Advising +stadium_arena,arts_and_entertainment > stadium_arena,stadium_arena,arts_and_entertainment > stadium_arena,Stadium Arena +baseball_stadium,arts_and_entertainment > stadium_arena > baseball_stadium,baseball_stadium,arts_and_entertainment > stadium_arena > stadium > baseball_stadium,Baseball Stadium +basketball_stadium,arts_and_entertainment > stadium_arena > basketball_stadium,basketball_stadium,arts_and_entertainment > stadium_arena > stadium > basketball_stadium,Basketball Stadium +cricket_ground,arts_and_entertainment > stadium_arena > cricket_ground,cricket_ground,arts_and_entertainment > stadium_arena > stadium > cricket_ground,Cricket Ground +football_stadium,arts_and_entertainment > stadium_arena > football_stadium,football_stadium,arts_and_entertainment > stadium_arena > stadium > football_stadium,Football Stadium +hockey_arena,arts_and_entertainment > stadium_arena > hockey_arena,hockey_arena,arts_and_entertainment > stadium_arena > stadium > hockey_arena,Hockey Arena +rugby_stadium,arts_and_entertainment > stadium_arena > rugby_stadium,rugby_stadium,arts_and_entertainment > stadium_arena > stadium > rugby_stadium,Rugby Stadium +soccer_stadium,arts_and_entertainment > stadium_arena > soccer_stadium,soccer_stadium,arts_and_entertainment > stadium_arena > stadium > soccer_stadium,Soccer Stadium +tennis_stadium,arts_and_entertainment > stadium_arena > tennis_stadium,tennis_stadium,arts_and_entertainment > stadium_arena > stadium > tennis_stadium,Tennis Stadium +track_stadium,arts_and_entertainment > stadium_arena > track_stadium,track_stadium,arts_and_entertainment > stadium_arena > stadium > track_stadium,Track Stadium +ticket_sales,arts_and_entertainment > ticket_sales,ticket_office_or_booth,arts_and_entertainment > ticket_office_or_booth,Ticket Office or Booth +public_service_and_government,public_service_and_government,community_and_government,community_and_government,Community and Government +organization,public_service_and_government > organization,civic_organization,community_and_government > civic_organization,Civic Organization +charity_organization,public_service_and_government > organization > social_service_organizations > charity_organization,charity_organization,community_and_government > civic_organization > charity_organization,Charity Organization +civic_center,public_service_and_government > civic_center,civic_center,community_and_government > civic_organization > civic_center,Civic Center +labor_union,public_service_and_government > organization > labor_union,labor_union,community_and_government > civic_organization > labor_union,Labor Union +non_governmental_association,public_service_and_government > organization > non_governmental_association,non_governmental_association,community_and_government > civic_organization > non_governmental_association,Non Governmental Association +political_organization,public_service_and_government > organization > political_organization,political_organization,community_and_government > civic_organization > political_organization,Political Organization +political_party_office,public_service_and_government > political_party_office,political_party_office,community_and_government > civic_organization > political_organization > political_party_office,Political Party Office +central_government_office,public_service_and_government > central_government_office,government_office,community_and_government > government_office,Government Office +chambers_of_commerce,public_service_and_government > chambers_of_commerce,chambers_of_commerce,community_and_government > government_office > chambers_of_commerce,Chambers of Commerce +courthouse,public_service_and_government > courthouse,courthouse,community_and_government > government_office > courthouse,Courthouse +embassy,public_service_and_government > embassy,embassy,community_and_government > government_office > embassy,Embassy +department_of_motor_vehicles,public_service_and_government > 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,public_service_and_government > department_of_social_service,department_of_social_service,community_and_government > government_office > government_department > department_of_social_service,Department of Social Service +health_department,health_and_medical > health_department,health_department,community_and_government > government_office > government_department > health_department,Health Department +immigration_and_naturalization,public_service_and_government > immigration_and_naturalization,immigration_and_naturalization_office,community_and_government > government_office > immigration_and_naturalization_office,Immigration and Naturalization Office +national_security_services,public_service_and_government > national_security_services,national_security_service,community_and_government > government_office > national_security_service,National Security Service +office_of_vital_records,public_service_and_government > office_of_vital_records,office_of_vital_records,community_and_government > government_office > office_of_vital_records,Office of Vital Records +pension,public_service_and_government > pension,pension_office,community_and_government > government_office > pension_office,Pension Office +registry_office,public_service_and_government > registry_office,registry_office,community_and_government > government_office > registry_office,Registry Office +social_security_services,public_service_and_government > government_services > social_security_services,social_security_service,community_and_government > government_office > social_security_service,Social Security Service +tax_office,public_service_and_government > tax_office,tax_office,community_and_government > government_office > tax_office,Tax Office +town_hall,public_service_and_government > town_hall,town_hall,community_and_government > government_office > town_hall,Town Hall +unemployment_office,public_service_and_government > unemployment_office,unemployment_office,community_and_government > government_office > unemployment_office,Unemployment Office +armed_forces_branch,public_service_and_government > armed_forces_branch,military_site,community_and_government > military_site,Military Site +fountain,attractions_and_activities > fountain,public_fountain,community_and_government > public_facility > public_fountain,Public Fountain +drinking_water_dispenser,business_to_business > business_manufacturing_and_supply > drinking_water_dispenser,drinking_fountain,community_and_government > public_facility > public_fountain > drinking_fountain,Drinking Fountain +public_phones,professional_services > utility_service > public_phones,public_phone,community_and_government > public_facility > public_phone,Public Phone +public_plaza,structure_and_geography > public_plaza,public_plaza,community_and_government > public_facility > public_plaza,Public Plaza +public_restrooms,professional_services > utility_service > public_restrooms,public_restroom,community_and_government > public_facility > public_restroom,Public Restroom +fire_department,public_service_and_government > fire_department,fire_station,community_and_government > public_safety_service > fire_station,Fire Station +jail_and_prison,public_service_and_government > jail_and_prison,jail_or_prison,community_and_government > public_safety_service > jail_or_prison,Jail or Prison +juvenile_detention_center,public_service_and_government > jail_and_prison > juvenile_detention_center,juvenile_detention_center,community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,Juvenile Detention Center +police_department,public_service_and_government > police_department,police_station,community_and_government > public_safety_service > police_station,Police Station +public_utility_company,public_service_and_government > public_utility_company,public_utility,community_and_government > public_utility,Public Utility +electric_utility_provider,public_service_and_government > public_utility_company > electric_utility_provider,electric_utility_provider,community_and_government > public_utility > electric_utility_provider,Electric Utility Provider +garbage_collection_service,professional_services > utility_service > garbage_collection_service,garbage_collection_service,community_and_government > public_utility > garbage_collection_service,Garbage Collection Service +natural_gas_supplier,professional_services > utility_service > natural_gas_supplier,natural_gas_utility_provider,community_and_government > public_utility > natural_gas_utility_provider,Natural Gas Utility Provider +septic_services,professional_services > septic_services,septic_service,community_and_government > public_utility > septic_service,Septic Service +water_supplier,professional_services > utility_service > water_supplier,water_utility_provider,community_and_government > public_utility > water_utility_provider,Water Utility Provider +community_services_non_profits,public_service_and_government > community_services,social_or_community_service,community_and_government > social_or_community_service,Social or Community Service +child_protection_service,public_service_and_government > organization > social_service_organizations > child_protection_service,child_protection_service,community_and_government > social_or_community_service > child_protection_service,Child Protection Service +community_center,public_service_and_government > community_center,community_center,community_and_government > social_or_community_service > community_center,Community Center +disability_services_and_support_organization,public_service_and_government > community_services > 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 +food_banks,public_service_and_government > organization > social_service_organizations > food_banks,food_bank,community_and_government > social_or_community_service > food_bank,Food Bank +foster_care_services,public_service_and_government > organization > social_service_organizations > foster_care_services,foster_care_service,community_and_government > social_or_community_service > foster_care_service,Foster Care Service +gay_and_lesbian_services_organization,public_service_and_government > organization > social_service_organizations > 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 +homeless_shelter,public_service_and_government > organization > social_service_organizations > homeless_shelter,homeless_shelter,community_and_government > social_or_community_service > homeless_shelter,Homeless Shelter +housing_authorities,public_service_and_government > organization > social_service_organizations > housing_authorities,housing_authority,community_and_government > social_or_community_service > housing_authority,Housing Authority +scout_hall,public_service_and_government > scout_hall,scout_hall,community_and_government > social_or_community_service > scout_hall,Scout Hall +senior_citizen_services,public_service_and_government > organization > social_service_organizations > senior_citizen_services,senior_citizen_service,community_and_government > social_or_community_service > senior_citizen_service,Senior Citizen Service +social_and_human_services,public_service_and_government > organization > social_service_organizations > social_and_human_services,social_and_human_service,community_and_government > social_or_community_service > social_and_human_service,Social and Human Service +social_welfare_center,public_service_and_government > organization > social_service_organizations > social_welfare_center,social_welfare_center,community_and_government > social_or_community_service > social_welfare_center,Social Welfare Center +volunteer_association,public_service_and_government > organization > social_service_organizations > volunteer_association,volunteer_association,community_and_government > social_or_community_service > volunteer_association,Volunteer Association +youth_organizations,public_service_and_government > organization > social_service_organizations > youth_organizations,youth_organization,community_and_government > social_or_community_service > youth_organization,Youth Organization +cultural_center,attractions_and_activities > cultural_center,cultural_center,cultural_and_historic > cultural_center,Cultural Center +landmark_and_historical_building,attractions_and_activities > landmark_and_historical_building,historic_site,cultural_and_historic > historic_site,Historic Site +castle,attractions_and_activities > castle,castle,cultural_and_historic > historic_site > castle,Castle +fort,attractions_and_activities > fort,fort,cultural_and_historic > historic_site > fort,Fort +mission,religious_organization > mission,historic_mission,cultural_and_historic > historic_site > historic_mission,Historic Mission +tower,structure_and_geography > tower,historic_tower,cultural_and_historic > historic_site > historic_tower,Historic Tower +lighthouse,attractions_and_activities > lighthouse,lighthouse,cultural_and_historic > historic_site > lighthouse,Lighthouse +palace,attractions_and_activities > palace,palace,cultural_and_historic > historic_site > palace,Palace +ruin,attractions_and_activities > ruin,ruin,cultural_and_historic > historic_site > ruin,Ruin +cemeteries,professional_services > cemeteries,cemetery,cultural_and_historic > memorial_site > cemetery,Cemetery +memorial_park,attractions_and_activities > park > memorial_park,memorial_park,cultural_and_historic > memorial_site > memorial_park,Memorial Park +monument,attractions_and_activities > monument,monument,cultural_and_historic > memorial_site > monument,Monument +temple,religious_organization > temple,place_of_worship,cultural_and_historic > place_of_worship,Place of Worship +buddhist_temple,religious_organization > buddhist_temple,buddhist_place_of_worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,Buddhist Place of Worship +church_cathedral,religious_organization > church_cathedral,christian_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship,Christian Place of Worship +evangelical_church,religious_organization > church_cathedral > evangelical_church,protestant_place_of_worship,cultural_and_historic > place_of_worship > christian_place_of_worship > protestant_place_of_worship,Protestant Place of Worship +anglican_church,religious_organization > church_cathedral > 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 +baptist_church,religious_organization > church_cathedral > 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 +pentecostal_church,religious_organization > church_cathedral > 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 +jehovahs_witness_kingdom_hall,religious_organization > church_cathedral > 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 +catholic_church,religious_organization > church_cathedral > 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 +hindu_temple,religious_organization > hindu_temple,hindu_place_of_worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,Hindu Place of Worship +synagogue,religious_organization > synagogue,jewish_place_of_worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,Jewish Place of Worship +mosque,religious_organization > mosque,muslim_place_of_worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,Muslim Place of Worship +sikh_temple,religious_organization > sikh_temple,sikh_place_of_worship,cultural_and_historic > place_of_worship > sikh_place_of_worship,Sikh Place of Worship +shinto_shrines,religious_organization > shinto_shrines,shinto_shrine,cultural_and_historic > religious_landmark > shrine > shinto_shrine,Shinto Shrine +religious_organization,religious_organization,religious_organization,cultural_and_historic > religious_organization,Religious Organization +education,education,education,education,Education +board_of_education_offices,education > board_of_education_offices,board_of_education_office,education > education_office > board_of_education_office,Board of Education Office +school_district_offices,education > school_district_offices,school_district_office,education > education_office > school_district_office,School District Office +campus_building,education > campus_building,campus_building,education > educational_facility > campus_building,Campus Building +student_union,education > student_union,student_union,education > educational_facility > campus_building > student_union,Student Union +educational_camp,education > educational_camp,educational_camp,education > educational_facility > educational_camp,Educational Camp +educational_services,education > educational_services,educational_service,education > educational_service,Educational Service +after_school_program,professional_services > after_school_program,after_school_program,education > educational_service > after_school_program,After School Program +archaeological_services,education > educational_services > archaeological_services,archaeological_service,education > educational_service > archaeological_service,Archaeological Service +college_counseling,education > college_counseling,college_counseling,education > educational_service > college_counseling,College Counseling +test_preparation,education > test_preparation,test_preparation,education > educational_service > test_preparation,Test Preparation +tutoring_center,education > tutoring_center,tutoring_service,education > educational_service > tutoring_service,Tutoring Service +private_tutor,education > private_tutor,private_tutor,education > educational_service > tutoring_service > private_tutor,Private Tutor +library,public_service_and_government > library,library,education > library,Library +civil_examinations_academy,education > tutoring_center > civil_examinations_academy,civil_examinations_academy,education > place_of_learning > academy > civil_examinations_academy,Civil Examinations Academy +adult_education,education > adult_education,adult_education_center,education > place_of_learning > adult_education_center,Adult Education Center +tasting_classes,education > tasting_classes,tasting_class,education > place_of_learning > class_venue > tasting_class,Tasting Class +cheese_tasting_classes,education > tasting_classes > cheese_tasting_classes,cheese_tasting_class,education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,Cheese Tasting Class +wine_tasting_classes,education > tasting_classes > wine_tasting_classes,wine_tasting_class,education > place_of_learning > class_venue > tasting_class > wine_tasting_class,Wine Tasting Class +college_university,education > college_university,college_university,education > place_of_learning > college_university,College University +architecture_schools,education > college_university > architecture_schools,architecture_school,education > place_of_learning > college_university > architecture_school,Architecture School +business_schools,education > college_university > business_schools,business_school,education > place_of_learning > college_university > business_school,Business School +engineering_schools,education > college_university > engineering_schools,engineering_school,education > place_of_learning > college_university > engineering_school,Engineering School +law_schools,education > college_university > law_schools,law_school,education > place_of_learning > college_university > law_school,Law School +medical_sciences_schools,education > college_university > medical_sciences_schools,medical_sciences_school,education > place_of_learning > college_university > medical_sciences_school,Medical Sciences School +dentistry_schools,education > college_university > medical_sciences_schools > dentistry_schools,dentistry_school,education > place_of_learning > college_university > medical_sciences_school > dentistry_school,Dentistry School +pharmacy_schools,education > college_university > medical_sciences_schools > pharmacy_schools,pharmacy_school,education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,Pharmacy School +veterinary_schools,education > college_university > medical_sciences_schools > veterinary_schools,veterinary_school,education > place_of_learning > college_university > medical_sciences_school > veterinary_school,Veterinary School +science_schools,education > college_university > science_schools,science_school,education > place_of_learning > college_university > science_school,Science School +school,education > school,school,education > place_of_learning > school,School +charter_school,education > school > charter_school,charter_school,education > place_of_learning > school > charter_school,Charter School +elementary_school,education > school > elementary_school,elementary_school,education > place_of_learning > school > elementary_school,Elementary School +high_school,education > school > high_school,high_school,education > place_of_learning > school > high_school,High School +middle_school,education > school > middle_school,middle_school,education > place_of_learning > school > middle_school,Middle School +montessori_school,education > school > montessori_school,montessori_school,education > place_of_learning > school > montessori_school,Montessori School +preschool,education > school > preschool,preschool,education > place_of_learning > school > preschool,Preschool +private_school,education > school > private_school,private_school,education > place_of_learning > school > private_school,Private School +public_school,education > school > public_school,public_school,education > place_of_learning > school > public_school,Public School +religious_school,education > school > religious_school,religious_school,education > place_of_learning > school > religious_school,Religious School +waldorf_school,education > school > waldorf_school,waldorf_school,education > place_of_learning > school > waldorf_school,Waldorf School +specialty_school,education > specialty_school,specialty_school,education > place_of_learning > specialty_school,Specialty School +art_school,education > specialty_school > art_school,art_school,education > place_of_learning > specialty_school > art_school,Art School +bartending_school,education > specialty_school > bartending_school,bartending_school,education > place_of_learning > specialty_school > bartending_school,Bartending School +cheerleading,education > specialty_school > cheerleading,cheerleading,education > place_of_learning > specialty_school > cheerleading,Cheerleading +childbirth_education,education > specialty_school > childbirth_education,childbirth_education,education > place_of_learning > specialty_school > childbirth_education,Childbirth Education +circus_school,education > specialty_school > circus_school,circus_school,education > place_of_learning > specialty_school > circus_school,Circus School +computer_coaching,education > specialty_school > computer_coaching,computer_coaching,education > place_of_learning > specialty_school > computer_coaching,Computer Coaching +cooking_school,education > specialty_school > cooking_school,cooking_school,education > place_of_learning > specialty_school > cooking_school,Cooking School +cosmetology_school,education > specialty_school > cosmetology_school,cosmetology_school,education > place_of_learning > specialty_school > cosmetology_school,Cosmetology School +cpr_classes,education > specialty_school > cpr_classes,cpr_class,education > place_of_learning > specialty_school > cpr_class,CPR Class +drama_school,education > specialty_school > drama_school,drama_school,education > place_of_learning > specialty_school > drama_school,Drama School +driving_school,education > specialty_school > driving_school,driving_school,education > place_of_learning > specialty_school > driving_school,Driving School +dui_school,education > specialty_school > dui_school,dui_school,education > place_of_learning > specialty_school > dui_school,DUI School +firearm_training,education > specialty_school > firearm_training,firearm_training,education > place_of_learning > specialty_school > firearm_training,Firearm Training +first_aid_class,education > specialty_school > first_aid_class,first_aid_class,education > place_of_learning > specialty_school > first_aid_class,First Aid Class +flight_school,education > specialty_school > flight_school,flight_school,education > place_of_learning > specialty_school > flight_school,Flight School +food_safety_training,education > specialty_school > food_safety_training,food_safety_training,education > place_of_learning > specialty_school > food_safety_training,Food Safety Training +language_school,education > specialty_school > language_school,language_school,education > place_of_learning > specialty_school > language_school,Language School +massage_school,education > specialty_school > massage_school,massage_school,education > place_of_learning > specialty_school > massage_school,Massage School +medical_school,education > specialty_school > medical_school,medical_school,education > place_of_learning > specialty_school > medical_school,Medical School +music_school,education > specialty_school > music_school,music_school,education > place_of_learning > specialty_school > music_school,Music School +nursing_school,education > specialty_school > nursing_school,nursing_school,education > place_of_learning > specialty_school > nursing_school,Nursing School +parenting_classes,education > specialty_school > parenting_classes,parenting_class,education > place_of_learning > specialty_school > parenting_class,Parenting Class +photography_classes,education > specialty_school > photography_classes,photography_class,education > place_of_learning > specialty_school > photography_class,Photography Class +speech_training,education > specialty_school > speech_training,speech_training,education > place_of_learning > specialty_school > speech_training,Speech Training +sports_school,education > specialty_school > sports_school,sports_school,education > place_of_learning > specialty_school > sports_school,Sports School +traffic_school,education > specialty_school > traffic_school,traffic_school,education > place_of_learning > specialty_school > traffic_school,Traffic School +vocational_and_technical_school,education > specialty_school > vocational_and_technical_school,vocational_and_technical_school,education > place_of_learning > specialty_school > vocational_and_technical_school,Vocational and Technical School +research_institute,business_to_business > b2b_science_and_technology > research_institute,research_institute,education > research_institute,Research Institute +educational_research_institute,education > educational_research_institute,educational_research_institute,education > research_institute > educational_research_institute,Educational Research Institute +medical_research_and_development,business_to_business > b2b_medical_support_services > medical_research_and_development,medical_research_institute,education > research_institute > medical_research_institute,Medical Research Institute +eat_and_drink,eat_and_drink,food_and_drink,food_and_drink,Food and Drink +bar,eat_and_drink > bar,bar,food_and_drink > alcoholic_beverage_venue > bar,Bar +tabac,eat_and_drink > bar > tabac,bar_tabac,food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,Bar Tabac +beach_bar,eat_and_drink > bar > beach_bar,beach_bar,food_and_drink > alcoholic_beverage_venue > bar > beach_bar,Beach Bar +beer_bar,eat_and_drink > bar > beer_bar,beer_bar,food_and_drink > alcoholic_beverage_venue > bar > beer_bar,Beer Bar +champagne_bar,eat_and_drink > bar > champagne_bar,champagne_bar,food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,Champagne Bar +cigar_bar,eat_and_drink > bar > cigar_bar,cigar_bar,food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,Cigar Bar +cocktail_bar,eat_and_drink > bar > cocktail_bar,cocktail_bar,food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,Cocktail Bar +dive_bar,eat_and_drink > bar > dive_bar,dive_bar,food_and_drink > alcoholic_beverage_venue > bar > dive_bar,Dive Bar +drive_thru_bar,eat_and_drink > bar > drive_thru_bar,drive_thru_bar,food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,Drive Thru Bar +gay_bar,eat_and_drink > bar > gay_bar,gay_bar,food_and_drink > alcoholic_beverage_venue > bar > gay_bar,Gay Bar +hookah_bar,eat_and_drink > bar > hookah_bar,hookah_bar,food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,Hookah Bar +hotel_bar,eat_and_drink > bar > hotel_bar,hotel_bar,food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,Hotel Bar +piano_bar,eat_and_drink > bar > piano_bar,piano_bar,food_and_drink > alcoholic_beverage_venue > bar > piano_bar,Piano Bar +pub,eat_and_drink > bar > pub,pub,food_and_drink > alcoholic_beverage_venue > bar > pub,Pub +irish_pub,eat_and_drink > bar > irish_pub,irish_pub,food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,Irish Pub +sake_bar,eat_and_drink > bar > sake_bar,sake_bar,food_and_drink > alcoholic_beverage_venue > bar > sake_bar,Sake Bar +speakeasy,eat_and_drink > bar > speakeasy,speakeasy,food_and_drink > alcoholic_beverage_venue > bar > speakeasy,Speakeasy +sports_bar,eat_and_drink > bar > sports_bar,sports_bar,food_and_drink > alcoholic_beverage_venue > bar > sports_bar,Sports Bar +tiki_bar,eat_and_drink > bar > tiki_bar,tiki_bar,food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,Tiki Bar +vermouth_bar,eat_and_drink > bar > vermouth_bar,vermouth_bar,food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,Vermouth Bar +whiskey_bar,eat_and_drink > bar > whiskey_bar,whiskey_bar,food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,Whiskey Bar +wine_bar,eat_and_drink > bar > wine_bar,wine_bar,food_and_drink > alcoholic_beverage_venue > bar > wine_bar,Wine Bar +beer_garden,eat_and_drink > bar > beer_garden,beer_garden,food_and_drink > alcoholic_beverage_venue > beer_garden,Beer Garden +brewery,eat_and_drink > bar > brewery,brewery,food_and_drink > alcoholic_beverage_venue > brewery,Brewery +cidery,eat_and_drink > bar > cidery,cidery,food_and_drink > alcoholic_beverage_venue > cidery,Cidery +distillery,retail > distillery,distillery,food_and_drink > alcoholic_beverage_venue > distillery,Distillery +lounge,eat_and_drink > bar > lounge,lounge,food_and_drink > alcoholic_beverage_venue > lounge,Lounge +airport_lounge,eat_and_drink > bar > airport_lounge,airport_lounge,food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,Airport Lounge +winery,retail > food > winery,winery,food_and_drink > alcoholic_beverage_venue > winery,Winery +wine_tasting_room,retail > food > winery > wine_tasting_room,wine_tasting_room,food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,Wine Tasting Room +bagel_shop,retail > food > bagel_shop,bagel_shop,food_and_drink > casual_eatery > bagel_shop,Bagel Shop +bakery,retail > food > bakery,bakery,food_and_drink > casual_eatery > bakery,Bakery +baguettes,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > baguettes,baguette_shop,food_and_drink > casual_eatery > bakery > baguette_shop,Baguette Shop +flatbread_restaurant,eat_and_drink > restaurant > flatbread_restaurant,flatbread_shop,food_and_drink > casual_eatery > bakery > flatbread_shop,Flatbread Shop +macarons,retail > food > specialty_foods > macarons,macaron_shop,food_and_drink > casual_eatery > bakery > macaron_shop,Macaron Shop +pretzels,retail > food > pretzels,pretzel_shop,food_and_drink > casual_eatery > bakery > pretzel_shop,Pretzel Shop +bistro,eat_and_drink > restaurant > bistro,bistro,food_and_drink > casual_eatery > bistro,Bistro +cafe,eat_and_drink > cafe,cafe,food_and_drink > casual_eatery > cafe,Cafe +hong_kong_style_cafe,eat_and_drink > restaurant > asian_restaurant > hong_kong_style_cafe,hong_kong_style_cafe,food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,Hong Kong Style Cafe +internet_cafe,arts_and_entertainment > internet_cafe,internet_cafe,food_and_drink > casual_eatery > cafe > internet_cafe,Internet Cafe +candy_store,retail > food > candy_store,candy_store,food_and_drink > casual_eatery > candy_store,Candy Store +chocolatier,retail > food > chocolatier,chocolatier,food_and_drink > casual_eatery > candy_store > chocolatier,Chocolatier +indian_sweets_shop,retail > food > specialty_foods > indian_sweets_shop,indian_sweets_shop,food_and_drink > casual_eatery > candy_store > indian_sweets_shop,Indian Sweets Shop +japanese_confectionery_shop,retail > food > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,Japanese Confectionery Shop +canteen,eat_and_drink > restaurant > canteen,canteen,food_and_drink > casual_eatery > canteen,Canteen +delicatessen,retail > food > specialty_foods > delicatessen,delicatessen,food_and_drink > casual_eatery > delicatessen,Delicatessen +desserts,retail > food > desserts,dessert_shop,food_and_drink > casual_eatery > dessert_shop,Dessert Shop +cupcake_shop,retail > food > patisserie_cake_shop > cupcake_shop,cupcake_shop,food_and_drink > casual_eatery > dessert_shop > cupcake_shop,Cupcake Shop +donuts,retail > food > donuts,donut_shop,food_and_drink > casual_eatery > dessert_shop > donut_shop,Donut Shop +frozen_yoghurt_shop,retail > food > ice_cream_and_frozen_yoghurt > frozen_yoghurt_shop,frozen_yogurt_shop,food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,Frozen Yogurt Shop +gelato,retail > food > ice_cream_and_frozen_yoghurt > gelato,gelato_shop,food_and_drink > casual_eatery > dessert_shop > gelato_shop,Gelato Shop +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,Ice Cream Shop +pie_shop,retail > food > pie_shop,pie_shop,food_and_drink > casual_eatery > dessert_shop > pie_shop,Pie Shop +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,Shaved Ice Shop +diner,eat_and_drink > restaurant > diner,diner,food_and_drink > casual_eatery > diner,Diner +fast_food_restaurant,eat_and_drink > restaurant > fast_food_restaurant,fast_food_restaurant,food_and_drink > casual_eatery > fast_food_restaurant,Fast Food Restaurant +fondue_restaurant,eat_and_drink > restaurant > fondue_restaurant,fondue_restaurant,food_and_drink > casual_eatery > fondue_restaurant,Fondue Restaurant +food_court,eat_and_drink > restaurant > food_court,food_court,food_and_drink > casual_eatery > food_court,Food Court +food_truck,retail > food > food_truck,food_truck_stand,food_and_drink > casual_eatery > food_truck_stand,Food Truck or Stand +friterie,retail > food > friterie,friterie,food_and_drink > casual_eatery > friterie,Friterie +gastropub,eat_and_drink > restaurant > gastropub,gastropub,food_and_drink > casual_eatery > gastropub,Gastropub +popcorn_shop,retail > popcorn_shop,popcorn_shop,food_and_drink > casual_eatery > popcorn_shop,Popcorn Shop +sandwich_shop,retail > food > sandwich_shop,sandwich_shop,food_and_drink > casual_eatery > sandwich_shop,Sandwich Shop +sugar_shack,eat_and_drink > bar > sugar_shack,sugar_shack,food_and_drink > casual_eatery > sugar_shack,Sugar Shack +tapas_bar,eat_and_drink > restaurant > tapas_bar,tapas_bar,food_and_drink > casual_eatery > tapas_bar,Tapas Bar +beverage_store,retail > beverage_store,non_alcoholic_beverage_venue,food_and_drink > non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue +bubble_tea,eat_and_drink > bar > bubble_tea,bubble_tea_shop,food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,Bubble Tea Shop +coffee_shop,eat_and_drink > cafe > coffee_shop,coffee_shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,Coffee Shop +coffee_roastery,eat_and_drink > cafe > coffee_roastery,coffee_roastery,food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,Coffee Roastery +kombucha,eat_and_drink > bar > kombucha,kombucha_bar,food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,Kombucha Bar +milk_bar,eat_and_drink > bar > milk_bar,milk_bar,food_and_drink > non_alcoholic_beverage_venue > milk_bar,Milk Bar +milkshake_bar,eat_and_drink > bar > milkshake_bar,milkshake_bar,food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,Milkshake Bar +smoothie_juice_bar,eat_and_drink > bar > smoothie_juice_bar,smoothie_juice_bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,Smoothie or Juice Bar +tea_room,eat_and_drink > cafe > tea_room,tea_room,food_and_drink > non_alcoholic_beverage_venue > tea_room,Tea Room +restaurant,eat_and_drink > restaurant,restaurant,food_and_drink > restaurant,Restaurant +african_restaurant,eat_and_drink > restaurant > african_restaurant,african_restaurant,food_and_drink > restaurant > african_restaurant,African Restaurant +ethiopian_restaurant,eat_and_drink > restaurant > african_restaurant > ethiopian_restaurant,ethiopian_restaurant,food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,Ethiopian Restaurant +egyptian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > egyptian_restaurant,egyptian_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,Egyptian Restaurant +moroccan_restaurant,eat_and_drink > restaurant > african_restaurant > moroccan_restaurant,moroccan_restaurant,food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,Moroccan Restaurant +south_african_restaurant,eat_and_drink > restaurant > african_restaurant > south_african_restaurant,south_african_restaurant,food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,South African Restaurant +nigerian_restaurant,eat_and_drink > restaurant > african_restaurant > nigerian_restaurant,nigerian_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,Nigerian Restaurant +senegalese_restaurant,eat_and_drink > restaurant > african_restaurant > senegalese_restaurant,senegalese_restaurant,food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,Senegalese Restaurant +asian_restaurant,eat_and_drink > restaurant > asian_restaurant,asian_restaurant,food_and_drink > restaurant > asian_restaurant,Asian Restaurant +afghan_restaurant,eat_and_drink > restaurant > afghan_restaurant,afghani_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,Afghani Restaurant +uzbek_restaurant,eat_and_drink > restaurant > uzbek_restaurant,uzbek_restaurant,food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,Uzbek Restaurant +chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > chinese_restaurant,chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,Chinese Restaurant +baozi_restaurant,eat_and_drink > restaurant > baozi_restaurant,baozi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,Baozi Restaurant +dim_sum_restaurant,eat_and_drink > restaurant > asian_restaurant > dim_sum_restaurant,dim_sum_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,Dim Sum Restaurant +indo_chinese_restaurant,eat_and_drink > restaurant > asian_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,Indo Chinese Restaurant +japanese_restaurant,eat_and_drink > restaurant > asian_restaurant > japanese_restaurant,japanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,Japanese Restaurant +sushi_restaurant,eat_and_drink > restaurant > asian_restaurant > sushi_restaurant,sushi_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,Sushi Restaurant +korean_restaurant,eat_and_drink > restaurant > asian_restaurant > korean_restaurant,korean_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,Korean Restaurant +mongolian_restaurant,eat_and_drink > restaurant > asian_restaurant > mongolian_restaurant,mongolian_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,Mongolian Restaurant +taiwanese_restaurant,eat_and_drink > restaurant > asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,Taiwanese Restaurant +noodles_restaurant,eat_and_drink > restaurant > asian_restaurant > noodles_restaurant,ramen_restaurant,food_and_drink > restaurant > asian_restaurant > ramen_restaurant,Ramen Restaurant +bangladeshi_restaurant,eat_and_drink > restaurant > bangladeshi_restaurant,bangladeshi_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,Bangladeshi Restaurant +himalayan_nepalese_restaurant,eat_and_drink > restaurant > himalayan_nepalese_restaurant,himalayan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,Himalayan Restaurant +indian_restaurant,eat_and_drink > restaurant > indian_restaurant,indian_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,Indian Restaurant +pakistani_restaurant,eat_and_drink > restaurant > pakistani_restaurant,pakistani_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,Pakistani Restaurant +sri_lankan_restaurant,eat_and_drink > restaurant > sri_lankan_restaurant,sri_lankan_restaurant,food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,Sri Lankan Restaurant +burmese_restaurant,eat_and_drink > restaurant > asian_restaurant > burmese_restaurant,burmese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,Burmese Restaurant +cambodian_restaurant,eat_and_drink > restaurant > asian_restaurant > cambodian_restaurant,cambodian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,Cambodian Restaurant +filipino_restaurant,eat_and_drink > restaurant > asian_restaurant > filipino_restaurant,filipino_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,Filipino Restaurant +indonesian_restaurant,eat_and_drink > restaurant > asian_restaurant > indonesian_restaurant,indonesian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,Indonesian Restaurant +laotian_restaurant,eat_and_drink > restaurant > asian_restaurant > laotian_restaurant,laotian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,Laotian Restaurant +malaysian_restaurant,eat_and_drink > restaurant > asian_restaurant > malaysian_restaurant,malaysian_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,Malaysian Restaurant +nasi_restaurant,eat_and_drink > restaurant > nasi_restaurant,nasi_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,Nasi Restaurant +singaporean_restaurant,eat_and_drink > restaurant > asian_restaurant > singaporean_restaurant,singaporean_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,Singaporean Restaurant +thai_restaurant,eat_and_drink > restaurant > asian_restaurant > thai_restaurant,thai_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,Thai Restaurant +vietnamese_restaurant,eat_and_drink > restaurant > asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,Vietnamese Restaurant +wok_restaurant,eat_and_drink > restaurant > wok_restaurant,wok_restaurant,food_and_drink > restaurant > asian_restaurant > wok_restaurant,Wok Restaurant +bar_and_grill_restaurant,eat_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,food_and_drink > restaurant > bar_and_grill_restaurant,Bar and Grill Restaurant +breakfast_and_brunch_restaurant,eat_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant +pancake_house,eat_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,Pancake House +waffle_restaurant,eat_and_drink > restaurant > waffle_restaurant,waffle_restaurant,food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,Waffle Restaurant +buffet_restaurant,eat_and_drink > restaurant > buffet_restaurant,buffet_restaurant,food_and_drink > restaurant > buffet_restaurant,Buffet Restaurant +cafeteria,eat_and_drink > restaurant > cafeteria,cafeteria,food_and_drink > restaurant > cafeteria,Cafeteria +comfort_food_restaurant,eat_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,food_and_drink > restaurant > comfort_food_restaurant,Comfort Food Restaurant +diy_foods_restaurant,eat_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,food_and_drink > restaurant > diy_foods_restaurant,DIY Foods Restaurant +dumpling_restaurant,eat_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,food_and_drink > restaurant > dumpling_restaurant,Dumpling Restaurant +european_restaurant,eat_and_drink > restaurant > european_restaurant,european_restaurant,food_and_drink > restaurant > european_restaurant,European Restaurant +austrian_restaurant,eat_and_drink > restaurant > austrian_restaurant,austrian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,Austrian Restaurant +czech_restaurant,eat_and_drink > restaurant > czech_restaurant,czech_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,Czech Restaurant +german_restaurant,eat_and_drink > restaurant > german_restaurant,german_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,German Restaurant +fischbrotchen_restaurant,eat_and_drink > restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,Fischbrotchen Restaurant +hungarian_restaurant,eat_and_drink > restaurant > hungarian_restaurant,hungarian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,Hungarian Restaurant +polish_restaurant,eat_and_drink > restaurant > polish_restaurant,polish_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,Polish Restaurant +schnitzel_restaurant,eat_and_drink > restaurant > schnitzel_restaurant,schnitzel_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,Schnitzel Restaurant +slovakian_restaurant,eat_and_drink > restaurant > slovakian_restaurant,slovakian_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,Slovakian Restaurant +swiss_restaurant,eat_and_drink > restaurant > swiss_restaurant,swiss_restaurant,food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,Swiss Restaurant +eastern_european_restaurant,eat_and_drink > restaurant > eastern_european_restaurant,eastern_european_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,Eastern European Restaurant +belarusian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,Belarusian Restaurant +bulgarian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,Bulgarian Restaurant +romanian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,Romanian Restaurant +russian_restaurant,eat_and_drink > restaurant > russian_restaurant,russian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,Russian Restaurant +tatar_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > tatar_restaurant,tatar_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,Tatar Restaurant +serbo_croatian_restaurant,eat_and_drink > restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,Serbo-Croatian Restaurant +ukrainian_restaurant,eat_and_drink > restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,Ukrainian Restaurant +iberian_restaurant,eat_and_drink > restaurant > iberian_restaurant,iberian_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant,Iberian Restaurant +portuguese_restaurant,eat_and_drink > restaurant > portuguese_restaurant,portuguese_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,Portuguese Restaurant +spanish_restaurant,eat_and_drink > restaurant > spanish_restaurant,spanish_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,Spanish Restaurant +basque_restaurant,eat_and_drink > restaurant > basque_restaurant,basque_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,Basque Restaurant +catalan_restaurant,eat_and_drink > restaurant > catalan_restaurant,catalan_restaurant,food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,Catalan Restaurant +mediterranean_restaurant,eat_and_drink > restaurant > mediterranean_restaurant,mediterranean_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,Mediterranean Restaurant +greek_restaurant,eat_and_drink > restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,Greek Restaurant +italian_restaurant,eat_and_drink > restaurant > italian_restaurant,italian_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,Italian Restaurant +piadina_restaurant,eat_and_drink > restaurant > piadina_restaurant,piadina_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,Piadina Restaurant +pizza_restaurant,eat_and_drink > restaurant > pizza_restaurant,pizza_restaurant,food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,Pizza Restaurant +scandinavian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant,scandinavian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,Scandinavian Restaurant +danish_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,Danish Restaurant +norwegian_restaurant,eat_and_drink > restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,Norwegian Restaurant +belgian_restaurant,eat_and_drink > restaurant > belgian_restaurant,belgian_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,Belgian Restaurant +british_restaurant,eat_and_drink > restaurant > british_restaurant,british_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,British Restaurant +french_restaurant,eat_and_drink > restaurant > french_restaurant,french_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,French Restaurant +brasserie,eat_and_drink > restaurant > brasserie,brasserie,food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,Brasserie +irish_restaurant,eat_and_drink > restaurant > irish_restaurant,irish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,Irish Restaurant +scottish_restaurant,eat_and_drink > restaurant > scottish_restaurant,scottish_restaurant,food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,Scottish Restaurant +haute_cuisine_restaurant,eat_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,food_and_drink > restaurant > haute_cuisine_restaurant,Haute Cuisine Restaurant +international_restaurant,eat_and_drink > restaurant > international_restaurant,international_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant,International Fusion Restaurant +asian_fusion_restaurant,eat_and_drink > restaurant > asian_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,Asian Fusion Restaurant +pan_asian_restaurant,eat_and_drink > restaurant > asian_restaurant > pan_asian_restaurant,pan_asian_restaurant,food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,Pan Asian Restaurant +latin_american_restaurant,eat_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,food_and_drink > restaurant > latin_american_restaurant,Latin American Restaurant +caribbean_restaurant,eat_and_drink > restaurant > caribbean_restaurant,caribbean_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,Caribbean Restaurant +cuban_restaurant,eat_and_drink > restaurant > latin_american_restaurant > cuban_restaurant,cuban_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,Cuban Restaurant +dominican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,Dominican Restaurant +haitian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,Haitian Restaurant +jamaican_restaurant,eat_and_drink > restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,Jamaican Restaurant +puerto_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,Puerto Rican Restaurant +trinidadian_restaurant,eat_and_drink > restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,Trinidadian Restaurant +belizean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > belizean_restaurant,belizean_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,Belizean Restaurant +costa_rican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,Costa Rican Restaurant +guatemalan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,Guatemalan Restaurant +honduran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > honduran_restaurant,honduran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,Honduran Restaurant +nicaraguan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,Nicaraguan Restaurant +panamanian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > panamanian_restaurant,panamanian_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,Panamanian Restaurant +salvadoran_restaurant,eat_and_drink > restaurant > latin_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,Salvadoran Restaurant +empanadas,eat_and_drink > restaurant > empanadas,empanada_restaurant,food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,Empanada Restaurant +mexican_restaurant,eat_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,Mexican Restaurant +argentine_restaurant,eat_and_drink > restaurant > latin_american_restaurant > argentine_restaurant,argentine_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,Argentine Restaurant +bolivian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > bolivian_restaurant,bolivian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,Bolivian Restaurant +brazilian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > brazilian_restaurant,brazilian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,Brazilian Restaurant +chilean_restaurant,eat_and_drink > restaurant > latin_american_restaurant > chilean_restaurant,chilean_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,Chilean Restaurant +colombian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > colombian_restaurant,colombian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,Colombian Restaurant +ecuadorian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,Ecuadorian Restaurant +paraguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,Paraguayan Restaurant +peruvian_restaurant,eat_and_drink > restaurant > latin_american_restaurant > peruvian_restaurant,peruvian_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,Peruvian Restaurant +uruguayan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,Uruguayan Restaurant +venezuelan_restaurant,eat_and_drink > restaurant > latin_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,Venezuelan Restaurant +taco_restaurant,eat_and_drink > restaurant > taco_restaurant,taco_restaurant,food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,Taco Restaurant +texmex_restaurant,eat_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,Texmex Restaurant +meat_restaurant,eat_and_drink > restaurant > meat_restaurant,meat_restaurant,food_and_drink > restaurant > meat_restaurant,Meat Restaurant +barbecue_restaurant,eat_and_drink > restaurant > barbecue_restaurant,barbecue_restaurant,food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,Barbecue Restaurant +burger_restaurant,eat_and_drink > restaurant > burger_restaurant,burger_restaurant,food_and_drink > restaurant > meat_restaurant > burger_restaurant,Burger Restaurant +cheesesteak_restaurant,eat_and_drink > restaurant > cheesesteak_restaurant,cheesesteak_restaurant,food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,Cheesesteak Restaurant +chicken_restaurant,eat_and_drink > restaurant > chicken_restaurant,chicken_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_restaurant,Chicken Restaurant +chicken_wings_restaurant,eat_and_drink > restaurant > chicken_wings_restaurant,chicken_wings_restaurant,food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,Chicken Wings Restaurant +curry_sausage_restaurant,eat_and_drink > restaurant > curry_sausage_restaurant,curry_sausage_restaurant,food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,Curry Sausage Restaurant +hot_dog_restaurant,eat_and_drink > restaurant > hot_dog_restaurant,hot_dog_restaurant,food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,Hot Dog Restaurant +meatball_restaurant,eat_and_drink > restaurant > meatball_restaurant,meatball_restaurant,food_and_drink > restaurant > meat_restaurant > meatball_restaurant,Meatball Restaurant +rotisserie_chicken_restaurant,eat_and_drink > restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant +steakhouse,eat_and_drink > restaurant > steakhouse,steakhouse,food_and_drink > restaurant > meat_restaurant > steakhouse,Steakhouse +venison_restaurant,eat_and_drink > restaurant > venison_restaurant,venison_restaurant,food_and_drink > restaurant > meat_restaurant > venison_restaurant,Venison Restaurant +wild_game_meats_restaurant,eat_and_drink > restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,Wild Game Meats Restaurant +middle_eastern_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,food_and_drink > restaurant > middle_eastern_restaurant,Middle Eastern Restaurant +arabian_restaurant,eat_and_drink > restaurant > arabian_restaurant,arabian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,Arabian Restaurant +armenian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,Armenian Restaurant +azerbaijani_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,Azerbaijani Restaurant +falafel_restaurant,eat_and_drink > restaurant > falafel_restaurant,falafel_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,Falafel Restaurant +georgian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,Georgian Restaurant +israeli_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,Israeli Restaurant +kofta_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,Kofta Restaurant +kurdish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,Kurdish Restaurant +lebanese_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,Lebanese Restaurant +persian_iranian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > persian_iranian_restaurant,persian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,Persian Restaurant +syrian_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,Syrian Restaurant +turkish_restaurant,eat_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,Turkish Restaurant +doner_kebab,eat_and_drink > restaurant > doner_kebab,doner_kebab_restaurant,food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,Doner Kebab Restaurant +american_restaurant,eat_and_drink > restaurant > american_restaurant,american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant,American Restaurant +cajun_and_creole_restaurant,eat_and_drink > restaurant > 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 +southern_restaurant,eat_and_drink > restaurant > southern_restaurant,southern_american_restaurant,food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,Southern American Restaurant +canadian_restaurant,eat_and_drink > restaurant > canadian_restaurant,canadian_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,Canadian Restaurant +poutinerie_restaurant,eat_and_drink > restaurant > poutinerie_restaurant,poutinerie_restaurant,food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,Poutinerie Restaurant +australian_restaurant,eat_and_drink > restaurant > australian_restaurant,australian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,Australian Restaurant +guamanian_restaurant,eat_and_drink > restaurant > guamanian_restaurant,guamanian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,Guamanian Restaurant +polynesian_restaurant,eat_and_drink > restaurant > polynesian_restaurant,polynesian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,Polynesian Restaurant +hawaiian_restaurant,eat_and_drink > restaurant > hawaiian_restaurant,hawaiian_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,Hawaiian Restaurant +poke_restaurant,eat_and_drink > restaurant > poke_restaurant,poke_restaurant,food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,Poke Restaurant +pop_up_restaurant,eat_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,food_and_drink > restaurant > pop_up_restaurant,Pop Up Restaurant +salad_bar,eat_and_drink > restaurant > salad_bar,salad_bar,food_and_drink > restaurant > salad_bar,Salad Bar +seafood_restaurant,eat_and_drink > restaurant > seafood_restaurant,seafood_restaurant,food_and_drink > restaurant > seafood_restaurant,Seafood Restaurant +fish_and_chips_restaurant,eat_and_drink > restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,Fish and Chips Restaurant +fish_restaurant,eat_and_drink > restaurant > fish_restaurant,fish_restaurant,food_and_drink > restaurant > seafood_restaurant > fish_restaurant,Fish Restaurant +soul_food,eat_and_drink > restaurant > soul_food,soul_food,food_and_drink > restaurant > soul_food,Soul Food +soup_restaurant,eat_and_drink > restaurant > soup_restaurant,soup_restaurant,food_and_drink > restaurant > soup_restaurant,Soup Restaurant +acai_bowls,eat_and_drink > restaurant > acai_bowls,acai_bowls,food_and_drink > restaurant > special_diet_restaurant > acai_bowls,Acai Bowls +gluten_free_restaurant,eat_and_drink > restaurant > gluten_free_restaurant,gluten_free_restaurant,food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,Gluten Free Restaurant +halal_restaurant,eat_and_drink > restaurant > halal_restaurant,halal_restaurant,food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,Halal Restaurant +health_food_restaurant,eat_and_drink > restaurant > health_food_restaurant,health_food_restaurant,food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,Health Food Restaurant +jewish_restaurant,eat_and_drink > restaurant > jewish_restaurant,jewish_restaurant,food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,Jewish Restaurant +kosher_restaurant,eat_and_drink > restaurant > kosher_restaurant,kosher_restaurant,food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,Kosher Restaurant +live_and_raw_food_restaurant,eat_and_drink > restaurant > 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 +molecular_gastronomy_restaurant,eat_and_drink > restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant +vegan_restaurant,eat_and_drink > restaurant > vegan_restaurant,vegan_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,Vegan Restaurant +vegetarian_restaurant,eat_and_drink > restaurant > vegetarian_restaurant,vegetarian_restaurant,food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,Vegetarian Restaurant +supper_club,eat_and_drink > restaurant > supper_club,supper_club,food_and_drink > restaurant > supper_club,Supper Club +theme_restaurant,eat_and_drink > restaurant > theme_restaurant,theme_restaurant,food_and_drink > restaurant > theme_restaurant,Theme Restaurant +wrap_restaurant,eat_and_drink > restaurant > wrap_restaurant,wrap_restaurant,food_and_drink > restaurant > wrap_restaurant,Wrap Restaurant +structure_and_geography,structure_and_geography,geographic_entities,geographic_entities,Geographic Entities +bridge,structure_and_geography > bridge,bridge,geographic_entities > built_feature > bridge,Bridge +skyscraper,structure_and_geography > skyscraper,skyscraper,geographic_entities > built_feature > building > skyscraper,Skyscraper +dam,structure_and_geography > dam,dam,geographic_entities > built_feature > dam,Dam +weir,structure_and_geography > weir,weir,geographic_entities > built_feature > dam > weir,Weir +botanical_garden,attractions_and_activities > botanical_garden,botanical_garden,geographic_entities > built_feature > garden > botanical_garden,Botanical Garden +community_gardens,professional_services > community_gardens,community_garden,geographic_entities > built_feature > garden > community_garden,Community Garden +lookout,attractions_and_activities > lookout,lookout,geographic_entities > built_feature > lookout,Lookout +marina,attractions_and_activities > marina,marina,geographic_entities > built_feature > marina,Marina +pier,structure_and_geography > pier,pier,geographic_entities > built_feature > pier,Pier +quay,structure_and_geography > quay,quay,geographic_entities > built_feature > quay,Quay +beach,attractions_and_activities > beach,beach,geographic_entities > land_feature > beach,Beach +beach_combing_area,attractions_and_activities > beach_combing_area,beach_combing_area,geographic_entities > land_feature > beach > beach_combing_area,Beach Combing Area +canyon,attractions_and_activities > canyon,canyon,geographic_entities > land_feature > canyon,Canyon +cave,attractions_and_activities > cave,cave,geographic_entities > land_feature > cave,Cave +crater,attractions_and_activities > crater,crater,geographic_entities > land_feature > crater,Crater +desert,structure_and_geography > desert,desert,geographic_entities > land_feature > desert,Desert +forest,structure_and_geography > forest,forest,geographic_entities > land_feature > forest,Forest +geologic_formation,structure_and_geography > geologic_formation,geologic_formation,geographic_entities > land_feature > geologic_formation,Geologic Formation +island,structure_and_geography > island,island,geographic_entities > land_feature > island,Island +mountain,structure_and_geography > mountain,mountain,geographic_entities > land_feature > mountain,Mountain +nature_reserve,structure_and_geography > nature_reserve,nature_reserve,geographic_entities > land_feature > nature_reserve,Nature Reserve +sand_dune,attractions_and_activities > sand_dune,sand_dune,geographic_entities > land_feature > sand_dune,Sand Dune +skyline,attractions_and_activities > skyline,skyline,geographic_entities > scenic_viewpoint > skyline,Skyline +stargazing_area,attractions_and_activities > stargazing_area,stargazing_area,geographic_entities > scenic_viewpoint > stargazing_area,Stargazing Area +canal,structure_and_geography > canal,canal,geographic_entities > water_feature > canal,Canal +hot_springs,attractions_and_activities > hot_springs,hot_springs,geographic_entities > water_feature > hot_springs,Hot Springs +lake,attractions_and_activities > lake,lake,geographic_entities > water_feature > lake,Lake +river,structure_and_geography > river,river,geographic_entities > water_feature > river,River +waterfall,attractions_and_activities > waterfall,waterfall,geographic_entities > water_feature > waterfall,Waterfall +health_and_medical,health_and_medical,health_care,health_care,Health Care +emergency_medicine,health_and_medical > doctor > emergency_medicine,emergency_or_urgent_care_facility,health_care > emergency_or_urgent_care_facility,Emergency or Urgent Care Facility +ambulance_and_ems_services,health_and_medical > ambulance_and_ems_services,ambulance_or_ems_service,health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,Ambulance or EMS Service +emergency_room,health_and_medical > emergency_room,emergency_department,health_care > emergency_or_urgent_care_facility > emergency_department,Emergency Department +urgent_care_clinic,health_and_medical > urgent_care_clinic,urgent_care_clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,Urgent Care Clinic +walk_in_clinic,health_and_medical > medical_center > walk_in_clinic,walk_in_clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,Walk-In Clinic +hospital,health_and_medical > hospital,hospital,health_care > hospital,Hospital +childrens_hospital,health_and_medical > childrens_hospital,childrens_hospital,health_care > hospital > specialty_hospital > childrens_hospital,Children's Hospital +blood_and_plasma_donation_center,health_and_medical > blood_and_plasma_donation_center,blood_and_plasma_donation_center,health_care > medical_service > blood_and_plasma_donation_center,Blood and Plasma Donation Center +ems_training,active_life > sports_and_fitness_instruction > ems_training,ems_training,health_care > medical_service > ems_training,EMS Training +health_insurance_office,health_and_medical > health_insurance_office,health_insurance_office,health_care > medical_service > health_insurance_office,Health Insurance Office +home_health_care,health_and_medical > personal_care_service > home_health_care,home_health_care,health_care > medical_service > home_health_care,Home Health Care +hospice,health_and_medical > hospice,hospice,health_care > medical_service > hospice,Hospice +bulk_billing,health_and_medical > medical_center > bulk_billing,medical_billing,health_care > medical_service > medical_billing,Medical Billing +cannabis_clinic,health_and_medical > cannabis_clinic,cannabis_clinic,health_care > medical_service > medical_cannabis > cannabis_clinic,Cannabis Clinic +cannabis_collective,health_and_medical > cannabis_collective,cannabis_collective,health_care > medical_service > medical_cannabis > cannabis_collective,Cannabis Collective +medical_cannabis_referral,health_and_medical > medical_cannabis_referral,medical_cannabis_referral,health_care > medical_service > medical_cannabis > medical_cannabis_referral,Medical Cannabis Referral +medical_service_organizations,health_and_medical > medical_service_organizations,medical_service_organization,health_care > medical_service > medical_service_organization,Medical Service Organization +medical_transportation,health_and_medical > medical_transportation,medical_transportation,health_care > medical_service > medical_transportation,Medical Transportation +sperm_clinic,health_and_medical > sperm_clinic,sperm_clinic,health_care > medical_service > sperm_clinic,Sperm Clinic +medical_center,health_and_medical > medical_center,outpatient_care_facility,health_care > outpatient_care_facility,Outpatient Care Facility +counseling_and_mental_health,health_and_medical > counseling_and_mental_health,behavioral_or_mental_health_clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic +behavior_analyst,health_and_medical > behavior_analyst,behavior_analysis,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > behavior_analysis,Behavior Analysis +crisis_intervention_services,health_and_medical > abuse_and_addiction_treatment > 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 +stress_management_services,health_and_medical > counseling_and_mental_health > 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 +suicide_prevention_services,health_and_medical > counseling_and_mental_health > 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 +family_counselor,health_and_medical > counseling_and_mental_health > family_counselor,family_counseling,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,Family Counseling +marriage_or_relationship_counselor,health_and_medical > counseling_and_mental_health > 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 +sex_therapist,health_and_medical > counseling_and_mental_health > sex_therapist,sex_therapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,Sex Therapy +psychiatrist,health_and_medical > doctor > psychiatrist,psychiatry,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,Psychiatry +child_psychiatrist,health_and_medical > doctor > psychiatrist > child_psychiatrist,child_psychiatry,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,Child Psychiatry +geriatric_psychiatry,health_and_medical > doctor > 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 +psychoanalyst,health_and_medical > counseling_and_mental_health > psychoanalyst,psychoanalysis,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,Psychoanalysis +psychologist,health_and_medical > counseling_and_mental_health > psychologist,psychology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,Psychology +sports_psychologist,health_and_medical > counseling_and_mental_health > sports_psychologist,sports_psychology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,Sports Psychology +psychotherapist,health_and_medical > counseling_and_mental_health > psychotherapist,psychotherapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,Psychotherapy +hypnosis_hypnotherapy,health_and_medical > hypnosis_hypnotherapy,hypnotherapy,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > hypnotherapy,Hypnotherapy +sophrologist,health_and_medical > counseling_and_mental_health > sophrologist,sophrology,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,Sophrology +alternative_medicine,health_and_medical > alternative_medicine,complementary_and_alternative_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,Complementary and Alternative Medicine +acupuncture,health_and_medical > acupuncture,acupuncture,health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,Acupuncture +aromatherapy,beauty_and_spa > aromatherapy,aromatherapy,health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,Aromatherapy +ayurveda,health_and_medical > ayurveda,ayurveda,health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,Ayurveda +chiropractor,health_and_medical > chiropractor,chiropractic,health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,Chiropractic +homeopathic_medicine,health_and_medical > doctor > homeopathic_medicine,homeopathy,health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,Homeopathy +naturopathic_holistic,health_and_medical > doctor > naturopathic_holistic,naturopathic_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,Naturopathic Medicine +reflexology,health_and_medical > reflexology,reflexology,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,Reflexology +reiki,health_and_medical > reiki,reiki,health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,Reiki +traditional_chinese_medicine,health_and_medical > traditional_chinese_medicine,traditional_chinese_medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,Traditional Chinese Medicine +tui_na,health_and_medical > traditional_chinese_medicine > tui_na,tui_na,health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,Tui Na +dentist,health_and_medical > dentist,dental_clinic,health_care > outpatient_care_facility > dental_clinic,Dental Clinic +cosmetic_dentist,health_and_medical > dentist > cosmetic_dentist,cosmetic_dentistry,health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,Cosmetic Dentistry +dental_hygienist,health_and_medical > dental_hygienist,dental_hygiene,health_care > outpatient_care_facility > dental_clinic > dental_hygiene,Dental Hygiene +endodontist,health_and_medical > dentist > endodontist,endodontics,health_care > outpatient_care_facility > dental_clinic > endodontics,Endodontics +general_dentistry,health_and_medical > dentist > general_dentistry,general_dentistry,health_care > outpatient_care_facility > dental_clinic > general_dentistry,General Dentistry +orthodontist,health_and_medical > dentist > orthodontist,orthodontics,health_care > outpatient_care_facility > dental_clinic > orthodontics,Orthodontics +pediatric_dentist,health_and_medical > dentist > pediatric_dentist,pediatric_dentistry,health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,Pediatric Dentistry +periodontist,health_and_medical > dentist > periodontist,periodontics,health_care > outpatient_care_facility > dental_clinic > periodontics,Periodontics +prosthodontist,health_and_medical > prosthodontist,prosthodontics,health_care > outpatient_care_facility > dental_clinic > prosthodontics,Prosthodontics +diagnostic_imaging,health_and_medical > diagnostic_services > diagnostic_imaging,diagnostic_imaging,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,Diagnostic Imaging +ultrasound_imaging_center,health_and_medical > ultrasound_imaging_center,ultrasound_imaging,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,Ultrasound Imaging +diagnostic_services,health_and_medical > diagnostic_services,doctors_office,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,Doctors Office +laboratory_testing,health_and_medical > diagnostic_services > laboratory_testing,laboratory_testing,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,Laboratory Testing +paternity_tests_and_services,health_and_medical > paternity_tests_and_services,paternity_testing,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,Paternity Testing +pathologist,health_and_medical > doctor > pathologist,pathology,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,Pathology +radiologist,health_and_medical > doctor > radiologist,radiology,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,Radiology +pediatrician,health_and_medical > doctor > pediatrician,pediatric_clinic,health_care > outpatient_care_facility > pediatric_clinic,Pediatric Clinic +pediatric_anesthesiology,health_and_medical > doctor > pediatrician > pediatric_anesthesiology,pediatric_anesthesiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,Pediatric Anesthesiology +pediatric_cardiology,health_and_medical > doctor > pediatrician > pediatric_cardiology,pediatric_cardiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,Pediatric Cardiology +pediatric_endocrinology,health_and_medical > doctor > pediatrician > pediatric_endocrinology,pediatric_endocrinology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,Pediatric Endocrinology +pediatric_gastroenterology,health_and_medical > doctor > pediatrician > pediatric_gastroenterology,pediatric_gastroenterology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,Pediatric Gastroenterology +pediatric_infectious_disease,health_and_medical > doctor > pediatrician > pediatric_infectious_disease,pediatric_infectious_disease,health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,Pediatric Infectious Disease +pediatric_nephrology,health_and_medical > doctor > pediatrician > pediatric_nephrology,pediatric_nephrology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,Pediatric Nephrology +pediatric_neurology,health_and_medical > doctor > pediatrician > pediatric_neurology,pediatric_neurology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,Pediatric Neurology +pediatric_oncology,health_and_medical > doctor > pediatrician > pediatric_oncology,pediatric_oncology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,Pediatric Oncology +pediatric_pulmonology,health_and_medical > doctor > pediatrician > pediatric_pulmonology,pediatric_pulmonology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,Pediatric Pulmonology +pediatric_radiology,health_and_medical > doctor > pediatrician > pediatric_radiology,pediatric_radiology,health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,Pediatric Radiology +animal_assisted_therapy,health_and_medical > animal_assisted_therapy,animal_assisted_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,Animal Assisted Therapy +occupational_therapy,health_and_medical > occupational_therapy,occupational_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,Occupational Therapy +orthotics,health_and_medical > orthotics,orthotics,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,Orthotics +physical_therapy,health_and_medical > physical_therapy,physical_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,Physical Therapy +prosthetics,health_and_medical > prosthetics,prosthetics,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,Prosthetics +psychomotor_therapist,health_and_medical > psychomotor_therapist,psychomotor_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,Psychomotor Therapy +rehabilitation_center,health_and_medical > rehabilitation_center,rehabilitation_center,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,Rehabilitation Center +addiction_rehabilitation_center,health_and_medical > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,Addiction Rehabilitation Center +speech_therapist,health_and_medical > speech_therapist,speech_therapy,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,Speech Therapy +community_health_center,health_and_medical > community_health_center,community_health_center,health_care > outpatient_care_facility > primary_care_or_general_clinic > community_health_center,Community Health Center +concierge_medicine,health_and_medical > concierge_medicine,concierge_medicine,health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,Concierge Medicine +family_practice,health_and_medical > doctor > family_practice,family_practice,health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,Family Practice +mobile_clinic,health_and_medical > dental_hygienist > mobile_clinic,mobile_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,Mobile Clinic +public_health_clinic,health_and_medical > public_health_clinic,public_health_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,Public Health Clinic +storefront_clinic,health_and_medical > dental_hygienist > storefront_clinic,storefront_clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,Storefront Clinic +womens_health_clinic,health_and_medical > womens_health_clinic,reproductive_perinatal_and_womens_care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care +doula,health_and_medical > doula,doula_service,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,Doula Service +lactation_services,health_and_medical > lactation_services,lactation_service,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,Lactation Service +maternity_centers,health_and_medical > maternity_centers,maternity_center,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,Maternity Center +midwife,health_and_medical > midwife,midwifery,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,Midwifery +obstetrician_and_gynecologist,health_and_medical > doctor > obstetrician_and_gynecologist,obstetrics_and_gynecology,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,Obstetrics and Gynecology +prenatal_perinatal_care,health_and_medical > 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 +physician_assistant,health_and_medical > doctor > physician_assistant,specialized_health_care,health_care > outpatient_care_facility > specialized_health_care,Specialized Health Care +cardiologist,health_and_medical > doctor > cardiologist,cardiology,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,Cardiology +phlebologist,health_and_medical > doctor > phlebologist,phlebology,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,Phlebology +vascular_medicine,health_and_medical > doctor > vascular_medicine,vascular_medicine,health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,Vascular Medicine +ear_nose_and_throat,health_and_medical > doctor > ear_nose_and_throat,ear_nose_and_throat,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,Ear Nose and Throat +audiologist,health_and_medical > doctor > audiologist,audiology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,Audiology +neurotologist,health_and_medical > doctor > neurotologist,neurotology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,Neurotology +otologist,health_and_medical > doctor > otologist,otology,health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,Otology +endocrinologist,health_and_medical > doctor > endocrinologist,endocrinology,health_care > outpatient_care_facility > specialized_health_care > endocrinology,Endocrinology +gastroenterologist,health_and_medical > doctor > gastroenterologist,gastroenterology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology,Gastroenterology +endoscopist,health_and_medical > doctor > endoscopist,endoscopy,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,Endoscopy +hepatologist,health_and_medical > doctor > hepatologist,hepatology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,Hepatology +proctologist,health_and_medical > doctor > proctologist,proctology,health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,Proctology +geneticist,health_and_medical > doctor > geneticist,genetics,health_care > outpatient_care_facility > specialized_health_care > genetics,Genetics +gerontologist,health_and_medical > doctor > gerontologist,gerontology,health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,Gerontology +geriatric_medicine,health_and_medical > doctor > geriatric_medicine,geriatric_medicine,health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,Geriatric Medicine +internal_medicine,health_and_medical > doctor > internal_medicine,internal_medicine,health_care > outpatient_care_facility > specialized_health_care > internal_medicine,Internal Medicine +allergist,health_and_medical > doctor > allergist,allergy_and_immunology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,Allergy and Immunology +infectious_disease_specialist,health_and_medical > doctor > infectious_disease_specialist,infectious_disease,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,Infectious Disease +tropical_medicine,health_and_medical > doctor > tropical_medicine,tropical_medicine,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,Tropical Medicine +oncologist,health_and_medical > doctor > oncologist,oncology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,Oncology +hematology,health_and_medical > doctor > internal_medicine > hematology,hematology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,Hematology +rheumatologist,health_and_medical > doctor > rheumatologist,rheumatology,health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,Rheumatology +aesthetician,health_and_medical > aesthetician,aesthetic_medicine,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,Aesthetic Medicine +body_contouring,health_and_medical > body_contouring,body_contouring,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,Body Contouring +dermatologist,health_and_medical > doctor > dermatologist,dermatology,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,Dermatology +immunodermatologist,health_and_medical > doctor > immunodermatologist,immunodermatology,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,Immunodermatology +tattoo_removal,health_and_medical > doctor > tattoo_removal,tattoo_removal,health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,Tattoo Removal +orthopedist,health_and_medical > doctor > orthopedist,orthopedics,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,Orthopedics +podiatry,health_and_medical > podiatry,podiatry,health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,Podiatry +nephrologist,health_and_medical > doctor > nephrologist,nephrology,health_care > outpatient_care_facility > specialized_health_care > nephrology,Nephrology +neurologist,health_and_medical > doctor > neurologist,neurology,health_care > outpatient_care_facility > specialized_health_care > neurology,Neurology +neuropathologist,health_and_medical > doctor > neuropathologist,neuropathology,health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,Neuropathology +skilled_nursing,health_and_medical > skilled_nursing,nursing,health_care > outpatient_care_facility > specialized_health_care > nursing,Nursing +osteopath,health_and_medical > medical_center > osteopath,osteopathic_medicine,health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,Osteopathic Medicine +pain_management,health_and_medical > doctor > pain_management,pain_management,health_care > outpatient_care_facility > specialized_health_care > pain_management,Pain Management +anesthesiologist,health_and_medical > doctor > anesthesiologist,anesthesiology,health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,Anesthesiology +preventive_medicine,health_and_medical > doctor > preventive_medicine,preventive_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,Preventive Medicine +environmental_medicine,health_and_medical > environmental_medicine,environmental_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,Environmental Medicine +undersea_hyperbaric_medicine,health_and_medical > doctor > undersea_hyperbaric_medicine,hyperbaric_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,Hyperbaric Medicine +occupational_medicine,health_and_medical > occupational_medicine,occupational_medicine,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,Occupational Medicine +toxicologist,health_and_medical > doctor > toxicologist,toxicology,health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,Toxicology +pulmonologist,health_and_medical > doctor > pulmonologist,pulmonology,health_care > outpatient_care_facility > specialized_health_care > pulmonology,Pulmonology +sleep_specialist,health_and_medical > sleep_specialist,sleep_medicine,health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,Sleep Medicine +sports_medicine,health_and_medical > doctor > sports_medicine,sports_medicine,health_care > outpatient_care_facility > specialized_health_care > sports_medicine,Sports Medicine +urologist,health_and_medical > doctor > urologist,urology,health_care > outpatient_care_facility > specialized_health_care > urology,Urology +eye_care_clinic,health_and_medical > eye_care_clinic,vision_or_eye_care_clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,Vision or Eye Care Clinic +ophthalmologist,health_and_medical > doctor > ophthalmologist,ophthalmology,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,Ophthalmology +laser_eye_surgery_lasik,health_and_medical > 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 +retina_specialist,health_and_medical > doctor > ophthalmologist > retina_specialist,retina_services,health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,Retina Services +optometrist,health_and_medical > optometrist,optometry,health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,Optometry +abortion_clinic,health_and_medical > abortion_clinic,abortion_clinic,health_care > specialized_medical_facility > abortion_clinic,Abortion Clinic +abuse_and_addiction_treatment,health_and_medical > abuse_and_addiction_treatment,abuse_and_addiction_treatment_center,health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center +alcohol_and_drug_treatment_center,health_and_medical > 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 +cancer_treatment_center,health_and_medical > cancer_treatment_center,cancer_treatment_center,health_care > specialized_medical_facility > cancer_treatment_center,Cancer Treatment Center +dialysis_clinic,health_and_medical > dialysis_clinic,dialysis_clinic,health_care > specialized_medical_facility > dialysis_clinic,Dialysis Clinic +eating_disorder_treatment_centers,health_and_medical > abuse_and_addiction_treatment > eating_disorder_treatment_centers,eating_disorder_treatment_center,health_care > specialized_medical_facility > eating_disorder_treatment_center,Eating Disorder Treatment Center +fertility,health_and_medical > doctor > fertility,fertility_clinic,health_care > specialized_medical_facility > fertility_clinic,Fertility Clinic +organ_and_tissue_donor_service,health_and_medical > 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 +surgeon,health_and_medical > doctor > surgeon,surgery,health_care > specialized_medical_facility > surgery,Surgery +cardiovascular_and_thoracic_surgeon,health_and_medical > doctor > surgeon > cardiovascular_and_thoracic_surgeon,cardiothoracic_surgery,health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,Cardiothoracic Surgery +oral_surgeon,health_and_medical > dentist > oral_surgeon,oral_and_maxillofacial_surgery,health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery +pediatric_orthopedic_surgery,health_and_medical > doctor > pediatrician > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery +spine_surgeon,health_and_medical > doctor > spine_surgeon,spine_surgery,health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,Spine Surgery +pediatric_surgery,health_and_medical > doctor > pediatrician > pediatric_surgery,pediatric_surgery,health_care > specialized_medical_facility > surgery > pediatric_surgery,Pediatric Surgery +plastic_surgeon,health_and_medical > doctor > plastic_surgeon,plastic_and_reconstructive_surgery,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery +cosmetic_surgeon,health_and_medical > doctor > cosmetic_surgeon,cosmetic_surgery,health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,Cosmetic Surgery +surgical_center,health_and_medical > surgical_center,surgery_center,health_care > specialized_medical_facility > surgery > surgery_center,Surgery Center +pet_services,pets > pet_services,animal_or_pet_service,lifestyle_services > animal_or_pet_service,Animal or Pet Service +animal_rescue_service,pets > animal_rescue_service,animal_rescue_service,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_rescue_service,Animal Rescue Service +animal_shelter,pets > animal_shelter,animal_shelter,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,Animal Shelter +pet_adoption,pets > pet_adoption,pet_adoption,lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,Pet Adoption +farrier_services,pets > pet_services > farrier_services,farrier_service,lifestyle_services > animal_or_pet_service > equine_service > farrier_service,Farrier Service +horse_boarding,pets > horse_boarding,horse_boarding,lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,Horse Boarding +horse_trainer,pets > pet_services > pet_training > horse_trainer,horse_trainer,lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,Horse Trainer +pet_breeder,pets > pet_services > pet_breeder,pet_breeder,lifestyle_services > animal_or_pet_service > pet_breeder,Pet Breeder +aquarium_services,pets > pet_services > aquarium_services,aquarium_service,lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,Aquarium Service +dog_walkers,pets > pet_services > dog_walkers,dog_walker,lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,Dog Walker +pet_boarding,pets > pet_services > pet_sitting > pet_boarding,pet_boarding,lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,Pet Boarding +pet_groomer,pets > pet_services > pet_groomer,pet_groomer,lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,Pet Groomer +pet_sitting,pets > pet_services > pet_sitting,pet_sitting,lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,Pet Sitting +pet_training,pets > pet_services > pet_training,pet_training,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,Pet Training +dog_trainer,pets > pet_services > pet_training > dog_trainer,dog_trainer,lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,Dog Trainer +pet_transportation,pets > pet_services > pet_transportation,pet_transportation,lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,Pet Transportation +pet_waste_removal,pets > pet_services > pet_waste_removal,pet_waste_removal,lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,Pet Waste Removal +pet_cemetery_and_crematorium_services,pets > pet_services > 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_insurance,pets > pet_services > pet_insurance,pet_insurance,lifestyle_services > animal_or_pet_service > pet_insurance,Pet Insurance +pet_photography,pets > pet_services > pet_photography,pet_photography,lifestyle_services > animal_or_pet_service > pet_photography,Pet Photography +animal_hospital,pets > pet_services > animal_hospital,animal_hospital,lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,Animal Hospital +animal_physical_therapy,pets > pet_services > animal_physical_therapy,animal_physical_therapy,lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,Animal Physical Therapy +emergency_pet_hospital,pets > pet_services > emergency_pet_hospital,emergency_pet_hospital,lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,Emergency Pet Hospital +holistic_animal_care,pets > pet_services > holistic_animal_care,holistic_animal_care,lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,Holistic Animal Care +pet_hospice,pets > pet_services > pet_hospice,pet_hospice,lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,Pet Hospice +veterinarian,pets > veterinarian,veterinarian,lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,Veterinarian +food_consultant,business_to_business > business_to_business_services > consultant_and_general_service > food_consultant,food_consultant,lifestyle_services > food_service > food_consultant,Food Consultant +food_delivery_service,retail > food > food_delivery_service,food_delivery_service,lifestyle_services > food_service > food_delivery_service,Food Delivery Service +pizza_delivery_service,retail > food > food_delivery_service > pizza_delivery_service,pizza_delivery_service,lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,Pizza Delivery Service +personal_care_service,health_and_medical > personal_care_service,personal_or_beauty_service,lifestyle_services > personal_or_beauty_service,Personal or Beauty Service +acne_treatment,beauty_and_spa > acne_treatment,acne_treatment,lifestyle_services > personal_or_beauty_service > acne_treatment,Acne Treatment +barber,beauty_and_spa > barber,barber,lifestyle_services > personal_or_beauty_service > barber,Barber +beauty_salon,beauty_and_spa > beauty_salon,beauty_salon,lifestyle_services > personal_or_beauty_service > beauty_salon,Beauty Salon +tattoo_and_piercing,beauty_and_spa > tattoo_and_piercing,tattoo_and_piercing,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,Tattoo and Piercing +piercing,beauty_and_spa > tattoo_and_piercing > piercing,piercing,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,Piercing +tattoo,beauty_and_spa > tattoo_and_piercing > tattoo,tattoo,lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,Tattoo +eyebrow_service,beauty_and_spa > eyebrow_service,eyebrow_service,lifestyle_services > personal_or_beauty_service > eyebrow_service,Eyebrow Service +eyelash_service,beauty_and_spa > eyelash_service,eyelash_service,lifestyle_services > personal_or_beauty_service > eyelash_service,Eyelash Service +foot_care,beauty_and_spa > foot_care,foot_care,lifestyle_services > personal_or_beauty_service > foot_care,Foot Care +hair_removal,beauty_and_spa > hair_removal,hair_removal,lifestyle_services > personal_or_beauty_service > hair_removal,Hair Removal +laser_hair_removal,beauty_and_spa > hair_removal > laser_hair_removal,laser_hair_removal,lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,Laser Hair Removal +sugaring,beauty_and_spa > hair_removal > sugaring,sugaring,lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,Sugaring +threading_service,beauty_and_spa > hair_removal > threading_service,threading_service,lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,Threading Service +waxing,beauty_and_spa > hair_removal > waxing,waxing,lifestyle_services > personal_or_beauty_service > hair_removal > waxing,Waxing +hair_replacement,beauty_and_spa > hair_replacement,hair_replacement,lifestyle_services > personal_or_beauty_service > hair_replacement,Hair Replacement +hair_extensions,beauty_and_spa > hair_extensions,hair_extensions,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,Hair Extensions +hair_loss_center,beauty_and_spa > hair_loss_center,hair_loss_center,lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,Hair Loss Center +hair_salon,beauty_and_spa > hair_salon,hair_salon,lifestyle_services > personal_or_beauty_service > hair_salon,Hair Salon +blow_dry_blow_out_service,beauty_and_spa > hair_salon > 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 +hair_stylist,beauty_and_spa > hair_salon > hair_stylist,hair_stylist,lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,Hair Stylist +kids_hair_salon,beauty_and_spa > hair_salon > kids_hair_salon,kids_hair_salon,lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,Kids Hair Salon +image_consultant,beauty_and_spa > image_consultant,image_consultant,lifestyle_services > personal_or_beauty_service > image_consultant,Image Consultant +life_coach,professional_services > life_coach,life_coach,lifestyle_services > personal_or_beauty_service > life_coach,Life Coach +matchmaker,professional_services > matchmaker,matchmaker,lifestyle_services > personal_or_beauty_service > matchmaker,Matchmaker +nail_salon,beauty_and_spa > nail_salon,nail_salon,lifestyle_services > personal_or_beauty_service > nail_salon,Nail Salon +shoe_repair,professional_services > shoe_repair,shoe_repair,lifestyle_services > personal_or_beauty_service > shoe_repair,Shoe Repair +shoe_shining_service,professional_services > shoe_shining_service,shoe_shining_service,lifestyle_services > personal_or_beauty_service > shoe_shining_service,Shoe Shining Service +skin_care,beauty_and_spa > skin_care,skin_care_and_makeup,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,Skin Care and Makeup +esthetician,beauty_and_spa > skin_care > esthetician,esthetician,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,Esthetician +makeup_artist,beauty_and_spa > makeup_artist,makeup_artist,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,Makeup Artist +permanent_makeup,beauty_and_spa > permanent_makeup,permanent_makeup,lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,Permanent Makeup +tanning_salon,beauty_and_spa > tanning_salon,tanning_salon,lifestyle_services > personal_or_beauty_service > tanning_salon,Tanning Salon +spray_tanning,beauty_and_spa > tanning_salon > spray_tanning,spray_tanning,lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,Spray Tanning +tanning_bed,beauty_and_spa > tanning_salon > tanning_bed,tanning_bed,lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,Tanning Bed +teeth_whitening,beauty_and_spa > teeth_whitening,teeth_whitening,lifestyle_services > personal_or_beauty_service > teeth_whitening,Teeth Whitening +wellness_program,health_and_medical > wellness_program,wellness_service,lifestyle_services > wellness_service,Wellness Service +colonics,health_and_medical > colonics,colonic_hydrotherapy,lifestyle_services > wellness_service > colonic_hydrotherapy,Colonic Hydrotherapy +cryotherapy,health_and_medical > cryotherapy,cryotherapy,lifestyle_services > wellness_service > cryotherapy,Cryotherapy +halotherapy,health_and_medical > halotherapy,halotherapy,lifestyle_services > wellness_service > halotherapy,Halotherapy +health_and_wellness_club,health_and_medical > health_and_wellness_club,health_and_wellness_club,lifestyle_services > wellness_service > health_and_wellness_club,Health and Wellness Club +health_coach,health_and_medical > health_coach,health_coaching,lifestyle_services > wellness_service > health_coaching,Health Coaching +hydrotherapy,health_and_medical > hydrotherapy,hydrotherapy,lifestyle_services > wellness_service > hydrotherapy,Hydrotherapy +iv_hydration,health_and_medical > iv_hydration,iv_hydration,lifestyle_services > wellness_service > iv_hydration,IV Hydration +massage_therapy,health_and_medical > massage_therapy,massage_therapy,lifestyle_services > wellness_service > massage_therapy,Massage Therapy +meditation_center,active_life > sports_and_fitness_instruction > meditation_center,meditation_center,lifestyle_services > wellness_service > meditation_center,Meditation Center +nutritionist,health_and_medical > nutritionist,nutrition_service,lifestyle_services > wellness_service > nutrition_service,Nutrition Service +oxygen_bar,health_and_medical > oxygen_bar,oxygen_bar,lifestyle_services > wellness_service > oxygen_bar,Oxygen Bar +public_bath_houses,beauty_and_spa > public_bath_houses,public_bath_house,lifestyle_services > wellness_service > public_bath_house,Public Bath House +onsen,beauty_and_spa > onsen,onsen,lifestyle_services > wellness_service > public_bath_house > onsen,Onsen +turkish_baths,beauty_and_spa > turkish_baths,turkish_bath,lifestyle_services > wellness_service > public_bath_house > turkish_bath,Turkish Bath +sauna,health_and_medical > sauna,sauna,lifestyle_services > wellness_service > sauna,Sauna +snuggle_service,professional_services > snuggle_service,snuggle_service,lifestyle_services > wellness_service > snuggle_service,Snuggle Service +spas,beauty_and_spa > spas,spa,lifestyle_services > wellness_service > spa,Spa +day_spa,beauty_and_spa > spas > day_spa,day_spa,lifestyle_services > wellness_service > spa > day_spa,Day Spa +float_spa,health_and_medical > float_spa,float_spa,lifestyle_services > wellness_service > spa > float_spa,Float Spa +health_spa,beauty_and_spa > health_spa,health_spa,lifestyle_services > wellness_service > spa > health_spa,Health Spa +medical_spa,beauty_and_spa > spas > medical_spa,medical_spa,lifestyle_services > wellness_service > spa > medical_spa,Medical Spa +weight_loss_center,health_and_medical > weight_loss_center,weight_loss_center,lifestyle_services > wellness_service > weight_loss_center,Weight Loss Center +accommodation,accommodation,lodging,lodging,Lodging +bed_and_breakfast,accommodation > bed_and_breakfast,bed_and_breakfast,lodging > bed_and_breakfast,Bed and Breakfast +cabin,accommodation > cabin,cabin,lodging > cabin,Cabin +campground,accommodation > campground,campground,lodging > campground,Campground +cottage,accommodation > cottage,cottage,lodging > cottage,Cottage +country_house,travel > country_house,country_house,lodging > country_house,Country House +holiday_park,real_estate > holiday_park,holiday_park,lodging > holiday_park,Holiday Park +hostel,accommodation > hostel,hostel,lodging > hostel,Hostel +hotel,accommodation > hotel,hotel,lodging > hotel,Hotel +motel,accommodation > hotel > motel,motel,lodging > hotel > motel,Motel +houseboat,travel > houseboat,houseboat,lodging > houseboat,Houseboat +inn,accommodation > inn,inn,lodging > inn,Inn +lodge,accommodation > lodge,lodge,lodging > lodge,Lodge +mountain_huts,accommodation > mountain_huts,mountain_hut,lodging > mountain_hut,Mountain Hut +guest_house,accommodation > guest_house,guest_house,lodging > private_lodging > guest_house,Guest House +holiday_rental_home,accommodation > holiday_rental_home,holiday_rental_home,lodging > private_lodging > holiday_rental_home,Holiday Rental Home +resort,accommodation > resort,resort,lodging > resort,Resort +beach_resort,accommodation > resort > beach_resort,beach_resort,lodging > resort > beach_resort,Beach Resort +ski_resort,travel > ski_resort,ski_resort,lodging > resort > ski_resort,Ski Resort +health_retreats,accommodation > health_retreats,health_retreat,lodging > retreat > health_retreat,Health Retreat +rv_park,accommodation > rv_park,rv_park,lodging > rv_park,RV Park +ryokan,travel > ryokan,ryokan,lodging > ryokan,Ryokan +self_catering_accommodation,travel > self_catering_accommodation,self_catering_accommodation,lodging > self_catering_accommodation,Self Catering Accommodation +service_apartments,accommodation > service_apartments,service_apartment,lodging > service_apartment,Service Apartment +agricultural_service,business_to_business > b2b_agriculture_and_food > agricultural_service,agricultural_service,services_and_business > agricultural_service,Agricultural Service +agriculture_association,public_service_and_government > organization > agriculture_association,agriculture_association,services_and_business > agricultural_service > agriculture_association,Agriculture Association +farm,arts_and_entertainment > farm,farm,services_and_business > agricultural_service > farm,Farm +dairy_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > dairy_farm,dairy_farm,services_and_business > agricultural_service > farm > dairy_farm,Dairy Farm +orchard,arts_and_entertainment > farm > orchard,orchard,services_and_business > agricultural_service > farm > orchard,Orchard +pig_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > pig_farm,pig_farm,services_and_business > agricultural_service > farm > pig_farm,Pig Farm +poultry_farm,arts_and_entertainment > farm > poultry_farm,poultry_farm,services_and_business > agricultural_service > farm > poultry_farm,Poultry Farm +ranch,arts_and_entertainment > farm > ranch,ranch,services_and_business > agricultural_service > farm > ranch,Ranch +urban_farm,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms > urban_farm,urban_farm,services_and_business > agricultural_service > farm > urban_farm,Urban Farm +farm_equipment_repair_service,professional_services > farm_equipment_repair_service,farm_equipment_repair_service,services_and_business > agricultural_service > farm_equipment_repair_service,Farm Equipment Repair Service +business_to_business,business_to_business,b2b_service,services_and_business > b2b_service,B2B Service +b2b_agriculture_and_food,business_to_business > b2b_agriculture_and_food,b2b_agriculture_service,services_and_business > b2b_service > b2b_agriculture_service,B2B Agriculture Service +agricultural_cooperatives,business_to_business > b2b_agriculture_and_food > agricultural_cooperatives,agricultural_cooperative,services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,Agricultural Cooperative +agriculture,business_to_business > b2b_agriculture_and_food > agriculture,agriculture,services_and_business > b2b_service > b2b_agriculture_service > agriculture,Agriculture +apiaries_and_beekeepers,business_to_business > b2b_agriculture_and_food > apiaries_and_beekeepers,apiary_beekeeper,services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,Apiary Beekeeper +b2b_dairies,business_to_business > b2b_agriculture_and_food > b2b_dairies,b2b_dairy,services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,B2B Dairy +b2b_farming,business_to_business > b2b_agriculture_and_food > b2b_farming,b2b_farming,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,B2B Farming +b2b_farms,business_to_business > b2b_agriculture_and_food > b2b_farming > b2b_farms,b2b_farm,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,B2B Farm +farm_equipment_and_supply,business_to_business > b2b_agriculture_and_food > b2b_farming > 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 +fertilizer_store,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,Fertilizer Store +grain_elevators,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > grain_elevators,grain_elevator,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,Grain Elevator +greenhouses,business_to_business > b2b_agriculture_and_food > b2b_farming > farm_equipment_and_supply > greenhouses,greenhouse,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,Greenhouse +farming_services,business_to_business > b2b_agriculture_and_food > b2b_farming > farming_services,farming_service,services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,Farming Service +b2b_food_products,business_to_business > b2b_agriculture_and_food > b2b_food_products,b2b_food_products,services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,B2B Food Products +crops_production,business_to_business > b2b_agriculture_and_food > crops_production,crops_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production,Crops Production +grain_production,business_to_business > b2b_agriculture_and_food > crops_production > grain_production,grain_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,Grain Production +orchards_production,business_to_business > b2b_agriculture_and_food > crops_production > orchards_production,orchards_production,services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,Orchards Production +fish_farms_and_hatcheries,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries,fish_farm_hatchery,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,Fish Farm Hatchery +fish_farm,business_to_business > b2b_agriculture_and_food > fish_farms_and_hatcheries > fish_farm,fish_farm,services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,Fish Farm +livestock_breeder,business_to_business > b2b_agriculture_and_food > livestock_breeder,livestock_breeder,services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,Livestock Breeder +livestock_dealers,business_to_business > b2b_agriculture_and_food > livestock_dealers,livestock_dealer,services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,Livestock Dealer +poultry_farming,business_to_business > b2b_agriculture_and_food > poultry_farming,poultry_farming,services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,Poultry Farming +b2b_energy_and_mining,business_to_business > b2b_energy_and_mining,b2b_energy_and_utility_service,services_and_business > b2b_service > b2b_energy_and_utility_service,B2B Energy and Utility Service +mining,business_to_business > b2b_energy_and_mining > mining,b2b_mining,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,B2B Mining +coal_and_coke,business_to_business > b2b_energy_and_mining > mining > 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 +quarries,business_to_business > b2b_energy_and_mining > mining > quarries,b2b_quarry,services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,B2B Quarry +oil_and_gas,business_to_business > b2b_energy_and_mining > 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_field_equipment_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > 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_and_gas_exploration_and_development,business_to_business > b2b_energy_and_mining > 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 +b2b_oil_and_gas_extraction_and_services,business_to_business > b2b_energy_and_mining > oil_and_gas > 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 +oil_refiners,business_to_business > b2b_energy_and_mining > oil_and_gas > 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 +power_plants_and_power_plant_service,business_to_business > b2b_energy_and_mining > 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 +energy_management_and_conservation_consultants,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > energy_management_and_conservation_consultants,energy_management_service,services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,Energy Management Service +wood_and_pulp,business_to_business > business_manufacturing_and_supply > wood_and_pulp,b2b_environmental_service,services_and_business > b2b_service > b2b_environmental_service,B2B Environmental Service +b2b_cleaning_and_waste_management,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > 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 +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,b2b_water_treatment_service,services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,B2B Water Treatment Service +geological_services,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses > geological_services,geological_service,services_and_business > b2b_service > b2b_environmental_service > geological_service,Geological Service +logging_contractor,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_contractor,logging_contractor,services_and_business > b2b_service > b2b_environmental_service > logging_contractor,Logging Contractor +logging_equipment_and_supplies,business_to_business > business_manufacturing_and_supply > wood_and_pulp > 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,business_to_business > business_manufacturing_and_supply > wood_and_pulp > logging_services,logging_service,services_and_business > b2b_service > b2b_environmental_service > logging_service,Logging Service +scrap_metals,business_to_business > business_manufacturing_and_supply > metals > scrap_metals,b2b_industrial_and_machine_service,services_and_business > b2b_service > b2b_industrial_and_machine_service,B2B Industrial and Machine Service +automation_services,business_to_business > commercial_industrial > automation_services,automation_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,Automation Service +b2b_equipment_maintenance_and_repair,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > 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 +casting_molding_and_machining,business_to_business > business_manufacturing_and_supply > casting_molding_and_machining,casting_molding_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,Casting Molding Service +chemical_plant,business_to_business > business_manufacturing_and_supply > chemical_plant,chemical_plant,services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,Chemical Plant +inventory_control_service,business_to_business > commercial_industrial > inventory_control_service,inventory_control_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,Inventory Control Service +laser_cutting_service_provider,business_to_business > business_to_business_services > laser_cutting_service_provider,laser_cutting_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,Laser Cutting Service +manufacturing_and_industrial_consultant,business_to_business > business_to_business_services > consultant_and_general_service > 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 +metal_plating_service,business_to_business > business_manufacturing_and_supply > metals > metal_plating_service,metal_plating_service,services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,Metal Plating Service +occupational_safety,business_to_business > commercial_industrial > occupational_safety,occupational_safety,services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,Occupational Safety +plastic_injection_molding_workshop,business_to_business > business_manufacturing_and_supply > 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 +turnery,business_to_business > business_manufacturing_and_supply > turnery,turnery,services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,Turnery +audio_visual_production_and_design,business_to_business > business_to_business_services > 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 +b2b_medical_support_services,business_to_business > b2b_medical_support_services,b2b_medical_support_service,services_and_business > b2b_service > b2b_medical_support_service,B2B Medical Support Service +clinical_laboratories,business_to_business > b2b_medical_support_services > clinical_laboratories,b2b_clinical_lab,services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,B2B Clinical Lab +dental_laboratories,business_to_business > b2b_medical_support_services > dental_laboratories,b2b_dental_lab,services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,B2B Dental Lab +hospital_equipment_and_supplies,business_to_business > b2b_medical_support_services > 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 +surgical_appliances_and_supplies,business_to_business > b2b_medical_support_services > 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 +business_advertising,business_to_business > 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 +direct_mail_advertising,business_to_business > business_advertising > 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 +marketing_consultant,business_to_business > business_advertising > 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 +newspaper_advertising,business_to_business > business_advertising > 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 +outdoor_advertising,business_to_business > business_advertising > 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 +promotional_products_and_services,business_to_business > business_advertising > 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 +publicity_service,business_to_business > business_advertising > 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 +radio_and_television_commercials,business_to_business > business_advertising > 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 +business_signage,business_to_business > business_advertising > 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 +telemarketing_services,business_to_business > business_advertising > 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 +background_check_services,business_to_business > business_to_business_services > human_resource_services > 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 +business_management_services,business_to_business > business_to_business_services > consultant_and_general_service > 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 +executive_search_consultants,business_to_business > business_to_business_services > consultant_and_general_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 +secretarial_services,business_to_business > business_to_business_services > consultant_and_general_service > 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 +domestic_business_and_trade_organizations,business_to_business > business_to_business_services > 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 +human_resource_services,business_to_business > business_to_business_services > 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 +international_business_and_trade_services,business_to_business > business_to_business_services > 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 +business_records_storage_and_management,business_to_business > business_to_business_services > 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 +restaurant_management,business_to_business > business_to_business_services > restaurant_management,restaurant_management,services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,Restaurant Management +transcription_services,business_to_business > business_to_business_services > transcription_services,transcription_service,services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,Transcription Service +translating_and_interpreting_services,business_to_business > business_to_business_services > 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 +b2b_science_and_technology,business_to_business > 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,business_to_business > b2b_science_and_technology > b2b_scientific_equipment,b2b_scientific_equipment,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,B2B Scientific Equipment +scientific_laboratories,business_to_business > b2b_science_and_technology > scientific_laboratories,b2b_scientific_lab,services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,B2B Scientific Lab +tower_communication_service,business_to_business > business_to_business_services > tower_communication_service,tower_communication_service,services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,Tower Communication Service +business_storage_and_transportation,business_to_business > business_storage_and_transportation,b2b_transportation_and_storage_service,services_and_business > b2b_service > b2b_transportation_and_storage_service,B2B Transportation and Storage Service +b2b_storage_and_warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses,b2b_storage,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,B2B Storage +warehouses,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > warehouses,warehouse,services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,Warehouse +warehouse_rental_services_and_yards,business_to_business > business_storage_and_transportation > b2b_storage_and_warehouses > 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 +freight_and_cargo_service,business_to_business > business_storage_and_transportation > 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 +distribution_services,business_to_business > business_storage_and_transportation > freight_and_cargo_service > distribution_services,distribution_service,services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,Distribution Service +freight_forwarding_agency,business_to_business > business_storage_and_transportation > 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 +motor_freight_trucking,business_to_business > business_storage_and_transportation > motor_freight_trucking,motor_freight_trucking,services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,Motor Freight Trucking +pipeline_transportation,business_to_business > business_storage_and_transportation > pipeline_transportation,pipeline_transportation,services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,Pipeline Transportation +railroad_freight,business_to_business > business_storage_and_transportation > railroad_freight,railroad_freight,services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,Railroad Freight +trucks_and_industrial_vehicles,business_to_business > business_storage_and_transportation > 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 +b2b_tractor_dealers,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > 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,business_to_business > business_storage_and_transportation > trucks_and_industrial_vehicles > 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 +commercial_industrial,business_to_business > commercial_industrial,commercial_industrial,services_and_business > b2b_service > commercial_industrial,Commercial Industrial +business_manufacturing_and_supply,business_to_business > business_manufacturing_and_supply,manufacturer,services_and_business > b2b_service > manufacturer,Manufacturer +b2b_apparel,business_to_business > business_manufacturing_and_supply > b2b_apparel,apparel_manufacturer,services_and_business > b2b_service > manufacturer > apparel_manufacturer,Apparel Manufacturer +shoe_factory,business_to_business > business_manufacturing_and_supply > shoe_factory,shoe_factory_manufacturer,services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,Shoe Factory Manufacturer +appliance_manufacturer,business_to_business > business_manufacturing_and_supply > appliance_manufacturer,appliance_manufacturer,services_and_business > b2b_service > manufacturer > appliance_manufacturer,Appliance Manufacturer +cosmetic_products_manufacturer,business_to_business > business_manufacturing_and_supply > cosmetic_products_manufacturer,cosmetic_products_manufacturer,services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,Cosmetic Products Manufacturer +furniture_manufacturers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_manufacturers,furniture_manufacturer,services_and_business > b2b_service > manufacturer > furniture_manufacturer,Furniture Manufacturer +glass_manufacturer,business_to_business > business_manufacturing_and_supply > glass_manufacturer,glass_manufacturer,services_and_business > b2b_service > manufacturer > glass_manufacturer,Glass Manufacturer +b2b_hardware,business_to_business > business_manufacturing_and_supply > b2b_hardware,hardware_and_fastener_manufacturer,services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer +jewelry_and_watches_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer +jewelry_manufacturer,business_to_business > business_manufacturing_and_supply > jewelry_manufacturer,jewelry_manufacturer,services_and_business > b2b_service > manufacturer > jewelry_manufacturer,Jewelry Manufacturer +leather_products_manufacturer,business_to_business > business_manufacturing_and_supply > leather_products_manufacturer,leather_products_manufacturer,services_and_business > b2b_service > manufacturer > leather_products_manufacturer,Leather Products Manufacturer +lighting_fixture_manufacturers,business_to_business > business_manufacturing_and_supply > lighting_fixture_manufacturers,lighting_fixture_manufacturer,services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,Lighting Fixture Manufacturer +b2b_machinery_and_tools,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools,machinery_and_tool_manufacturer,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,Machinery and Tool Manufacturer +industrial_equipment,business_to_business > business_manufacturing_and_supply > b2b_machinery_and_tools > industrial_equipment,industrial_equipment_manufacturer,services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,Industrial Equipment Manufacturer +mattress_manufacturing,business_to_business > business_manufacturing_and_supply > mattress_manufacturing,mattress_manufacturing,services_and_business > b2b_service > manufacturer > mattress_manufacturing,Mattress Manufacturing +metal_fabricator,business_to_business > business_manufacturing_and_supply > metals > metal_fabricator,metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator,Metal Fabricator +sheet_metal,business_to_business > business_manufacturing_and_supply > metals > sheet_metal,sheet_metal_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,Sheet Metal Fabricator +steel_fabricators,business_to_business > business_manufacturing_and_supply > metals > steel_fabricators,steel_fabricator,services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,Steel Fabricator +mills,business_to_business > business_manufacturing_and_supply > mills,mill,services_and_business > b2b_service > manufacturer > mill,Mill +cotton_mill,business_to_business > business_manufacturing_and_supply > mills > cotton_mill,cotton_mill,services_and_business > b2b_service > manufacturer > mill > cotton_mill,Cotton Mill +flour_mill,business_to_business > business_manufacturing_and_supply > mills > flour_mill,flour_mill,services_and_business > b2b_service > manufacturer > mill > flour_mill,Flour Mill +paper_mill,business_to_business > business_manufacturing_and_supply > mills > paper_mill,paper_mill,services_and_business > b2b_service > manufacturer > mill > paper_mill,Paper Mill +rice_mill,business_to_business > business_manufacturing_and_supply > mills > rice_mill,rice_mill,services_and_business > b2b_service > manufacturer > mill > rice_mill,Rice Mill +saw_mill,business_to_business > business_manufacturing_and_supply > mills > saw_mill,sawmill,services_and_business > b2b_service > manufacturer > mill > sawmill,Sawmill +textile_mill,business_to_business > business_manufacturing_and_supply > mills > textile_mill,textile_mill,services_and_business > b2b_service > manufacturer > mill > textile_mill,Textile Mill +weaving_mill,business_to_business > business_manufacturing_and_supply > mills > weaving_mill,weaving_mill,services_and_business > b2b_service > manufacturer > mill > weaving_mill,Weaving Mill +plastic_manufacturer,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_manufacturer,plastic_manufacturer,services_and_business > b2b_service > manufacturer > plastic_manufacturer,Plastic Manufacturer +b2b_rubber_and_plastics,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics,rubber_and_plastics_manufacturer,services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer +b2b_sporting_and_recreation_goods,business_to_business > business_manufacturing_and_supply > b2b_sporting_and_recreation_goods,sporting_goods_manufacturer,services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,Sporting Goods Manufacturer +b2b_textiles,business_to_business > business_manufacturing_and_supply > b2b_textiles,textile_manufacturer,services_and_business > b2b_service > manufacturer > textile_manufacturer,Textile Manufacturer +b2b_autos_and_vehicles,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles,vehicle_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer,Vehicle Manufacturer +aircraft_manufacturer,business_to_business > business_manufacturing_and_supply > aircraft_manufacturer,aircraft_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,Aircraft Manufacturer +auto_manufacturers_and_distributors,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > auto_manufacturers_and_distributors,auto_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,Auto Manufacturer +boat_builder,business_to_business > business_to_business_services > boat_builder,boat_and_ship_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,Boat and Ship Manufacturer +motorcycle_manufacturer,automotive > motorcycle_manufacturer,motorcycle_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,Motorcycle Manufacturer +b2b_tires,business_to_business > business_manufacturing_and_supply > b2b_autos_and_vehicles > b2b_tires,tires_manufacturer,services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,Tires Manufacturer +business_equipment_and_supply,business_to_business > business_equipment_and_supply,supplier_or_distributor,services_and_business > b2b_service > supplier_or_distributor,Supplier or Distributor +abrasives_supplier,business_to_business > business_manufacturing_and_supply > abrasives_supplier,abrasives_supplier,services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,Abrasives Supplier +aggregate_supplier,business_to_business > business_manufacturing_and_supply > aggregate_supplier,aggregate_supplier,services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,Aggregate Supplier +aluminum_supplier,business_to_business > business_manufacturing_and_supply > aluminum_supplier,aluminum_supplier,services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,Aluminum Supplier +awning_supplier,professional_services > awning_supplier,awning_supplier,services_and_business > b2b_service > supplier_or_distributor > awning_supplier,Awning Supplier +battery_inverter_supplier,business_to_business > business_manufacturing_and_supply > battery_inverter_supplier,battery_inverter_supplier,services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,Battery Inverter Supplier +bearing_supplier,business_to_business > business_manufacturing_and_supply > bearing_supplier,bearing_supplier,services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,Bearing Supplier +beauty_product_supplier,business_to_business > business_equipment_and_supply > beauty_product_supplier,beauty_product_supplier,services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,Beauty Product Supplier +beverage_supplier,business_to_business > business_equipment_and_supply > beverage_supplier,beverage_supplier,services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,Beverage Supplier +box_lunch_supplier,retail > food > box_lunch_supplier,box_lunch_supplier,services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,Box Lunch Supplier +business_office_supplies_and_stationery,business_to_business > business_equipment_and_supply > 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 +cement_supplier,business_to_business > business_manufacturing_and_supply > cement_supplier,cement_supplier,services_and_business > b2b_service > supplier_or_distributor > cement_supplier,Cement Supplier +cleaning_products_supplier,business_to_business > business_manufacturing_and_supply > cleaning_products_supplier,cleaning_products_supplier,services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,Cleaning Products Supplier +corporate_gift_supplier,private_establishments_and_corporates > corporate_gift_supplier,corporate_gift_supplier,services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,Corporate Gift Supplier +b2b_electronic_equipment,business_to_business > business_manufacturing_and_supply > b2b_electronic_equipment,electronic_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,Electronic Equipment Supplier +electronic_parts_supplier,business_to_business > business_equipment_and_supply > electronic_parts_supplier,electronic_parts_supplier,services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,Electronic Parts Supplier +fastener_supplier,business_to_business > business_manufacturing_and_supply > fastener_supplier,fastener_supplier,services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,Fastener Supplier +food_beverage_service_distribution,business_to_business > business > food_beverage_service_distribution,food_beverage_distributor,services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,Food Beverage Distributor +granite_supplier,business_to_business > business_manufacturing_and_supply > granite_supplier,granite_supplier,services_and_business > b2b_service > supplier_or_distributor > granite_supplier,Granite Supplier +hotel_supply_service,business_to_business > business > hotel_supply_service,hotel_supply_service,services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,Hotel Supply Service +hvac_supplier,business_to_business > business_manufacturing_and_supply > hvac_supplier,hvac_supplier,services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,HVAC Supplier +hydraulic_equipment_supplier,business_to_business > business_equipment_and_supply > hydraulic_equipment_supplier,hydraulic_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,Hydraulic Equipment Supplier +ice_supplier,professional_services > ice_supplier,ice_supplier,services_and_business > b2b_service > supplier_or_distributor > ice_supplier,Ice Supplier +importer_and_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter,import_export_service,services_and_business > b2b_service > supplier_or_distributor > import_export_service,Import Export Service +exporters,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters,exporter,services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,Exporter +food_and_beverage_exporter,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > exporters > 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 +importers,business_to_business > business_to_business_services > international_business_and_trade_services > importer_and_exporter > importers,importer,services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,Importer +laboratory_equipment_supplier,business_to_business > business_equipment_and_supply > laboratory_equipment_supplier,laboratory_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,Laboratory Equipment Supplier +metal_supplier,business_to_business > business_manufacturing_and_supply > metals > metal_supplier,metal_supplier,services_and_business > b2b_service > supplier_or_distributor > metal_supplier,Metal Supplier +pipe_supplier,business_to_business > business_manufacturing_and_supply > pipe_supplier,pipe_supplier,services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,Pipe Supplier +playground_equipment_supplier,retail > shopping > home_and_garden > playground_equipment_supplier,playground_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,Playground Equipment Supplier +printing_equipment_and_supply,business_to_business > business_manufacturing_and_supply > printing_equipment_and_supply,printing_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,Printing Equipment Supplier +propane_supplier,professional_services > propane_supplier,propane_supplier,services_and_business > b2b_service > supplier_or_distributor > propane_supplier,Propane Supplier +restaurant_equipment_and_supply,business_to_business > business_equipment_and_supply > restaurant_equipment_and_supply,restaurant_equipment_and_supply,services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,Restaurant Equipment and Supply +retaining_wall_supplier,business_to_business > business_manufacturing_and_supply > retaining_wall_supplier,retaining_wall_supplier,services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,Retaining Wall Supplier +sand_and_gravel_supplier,business_to_business > business_manufacturing_and_supply > sand_and_gravel_supplier,sand_and_gravel_supplier,services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,Sand and Gravel Supplier +scale_supplier,business_to_business > business_manufacturing_and_supply > scale_supplier,scale_supplier,services_and_business > b2b_service > supplier_or_distributor > scale_supplier,Scale Supplier +seal_and_hanko_dealers,business_to_business > business_manufacturing_and_supply > seal_and_hanko_dealers,seal_and_hanko_supplier,services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,Seal and Hanko Supplier +spring_supplier,business_to_business > business_manufacturing_and_supply > spring_supplier,spring_supplier,services_and_business > b2b_service > supplier_or_distributor > spring_supplier,Spring Supplier +stone_supplier,business_to_business > business_manufacturing_and_supply > stone_supplier,stone_supplier,services_and_business > b2b_service > supplier_or_distributor > stone_supplier,Stone Supplier +tableware_supplier,retail > shopping > home_and_garden > tableware_supplier,tableware_supplier,services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,Tableware Supplier +tent_house_supplier,professional_services > tent_house_supplier,tent_house_supplier,services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,Tent House Supplier +thread_supplier,business_to_business > business_equipment_and_supply > thread_supplier,thread_supplier,services_and_business > b2b_service > supplier_or_distributor > thread_supplier,Thread Supplier +vending_machine_supplier,business_to_business > business_equipment_and_supply > vending_machine_supplier,vending_machine_supplier,services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,Vending Machine Supplier +water_softening_equipment_supplier,business_to_business > business_equipment_and_supply > water_softening_equipment_supplier,water_softening_equipment_supplier,services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,Water Softening Equipment Supplier +window_supplier,business_to_business > business_manufacturing_and_supply > window_supplier,window_supplier,services_and_business > b2b_service > supplier_or_distributor > window_supplier,Window Supplier +wholesaler,business_to_business > business_equipment_and_supply > wholesaler,wholesaler,services_and_business > b2b_service > wholesaler,Wholesaler +computer_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > computer_wholesaler,computer_wholesaler,services_and_business > b2b_service > wholesaler > computer_wholesaler,Computer Wholesaler +electrical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > electrical_wholesaler,electrical_wholesaler,services_and_business > b2b_service > wholesaler > electrical_wholesaler,Electrical Wholesaler +fabric_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fabric_wholesaler,fabric_wholesaler,services_and_business > b2b_service > wholesaler > fabric_wholesaler,Fabric Wholesaler +fitness_equipment_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,Fitness Equipment Wholesaler +fmcg_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler,fmcg_wholesaler,services_and_business > b2b_service > wholesaler > fmcg_wholesaler,Fmcg Wholesaler +footwear_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > footwear_wholesaler,footwear_wholesaler,services_and_business > b2b_service > wholesaler > footwear_wholesaler,Footwear Wholesaler +furniture_wholesalers,business_to_business > business_manufacturing_and_supply > b2b_furniture_and_housewares > furniture_wholesalers,furniture_wholesaler,services_and_business > b2b_service > wholesaler > furniture_wholesaler,Furniture Wholesaler +greengrocer,business_to_business > business_equipment_and_supply > wholesaler > greengrocer,greengrocer,services_and_business > b2b_service > wholesaler > greengrocer,Greengrocer +industrial_spares_and_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > 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 +iron_and_steel_store,business_to_business > business_equipment_and_supply > wholesaler > iron_and_steel_store,iron_and_steel_store,services_and_business > b2b_service > wholesaler > iron_and_steel_store,Iron and Steel Store +lingerie_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > lingerie_wholesaler,lingerie_wholesaler,services_and_business > b2b_service > wholesaler > lingerie_wholesaler,Lingerie Wholesaler +meat_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > meat_wholesaler,meat_wholesaler,services_and_business > b2b_service > wholesaler > meat_wholesaler,Meat Wholesaler +optical_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > optical_wholesaler,optical_wholesaler,services_and_business > b2b_service > wholesaler > optical_wholesaler,Optical Wholesaler +pharmaceutical_products_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler +produce_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > produce_wholesaler,produce_wholesaler,services_and_business > b2b_service > wholesaler > produce_wholesaler,Produce Wholesaler +restaurant_wholesale,business_to_business > business_equipment_and_supply > wholesaler > restaurant_wholesale,restaurant_wholesale,services_and_business > b2b_service > wholesaler > restaurant_wholesale,Restaurant Wholesale +seafood_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > seafood_wholesaler,seafood_wholesaler,services_and_business > b2b_service > wholesaler > seafood_wholesaler,Seafood Wholesaler +spices_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > fmcg_wholesaler > spices_wholesaler,spices_wholesaler,services_and_business > b2b_service > wholesaler > spices_wholesaler,Spices Wholesaler +tea_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tea_wholesaler,tea_wholesaler,services_and_business > b2b_service > wholesaler > tea_wholesaler,Tea Wholesaler +threads_and_yarns_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,Threads and Yarns Wholesaler +tools_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > tools_wholesaler,tools_wholesaler,services_and_business > b2b_service > wholesaler > tools_wholesaler,Tools Wholesaler +wholesale_florist,business_to_business > business_equipment_and_supply > wholesaler > wholesale_florist,wholesale_florist,services_and_business > b2b_service > wholesaler > wholesale_florist,Wholesale Florist +wholesale_grocer,business_to_business > business_equipment_and_supply > wholesaler > wholesale_grocer,wholesale_grocer,services_and_business > b2b_service > wholesaler > wholesale_grocer,Wholesale Grocer +wine_wholesaler,business_to_business > business_equipment_and_supply > wholesaler > wine_wholesaler,wine_wholesaler,services_and_business > b2b_service > wholesaler > wine_wholesaler,Wine Wholesaler +construction_services,professional_services > construction_services,building_or_construction_service,services_and_business > building_or_construction_service,Building or Construction Service +blacksmiths,professional_services > construction_services > metal_materials_and_experts > blacksmiths,blacksmith,services_and_business > building_or_construction_service > blacksmith,Blacksmith +blueprinters,professional_services > construction_services > blueprinters,blueprinter,services_and_business > building_or_construction_service > blueprinter,Blueprinter +civil_engineers,professional_services > construction_services > engineering_services > civil_engineers,civil_engineer,services_and_business > building_or_construction_service > civil_engineer,Civil Engineer +construction_management,professional_services > construction_services > construction_management,construction_management,services_and_business > building_or_construction_service > construction_management,Construction Management +crane_services,professional_services > crane_services,crane_service,services_and_business > building_or_construction_service > crane_service,Crane Service +engineering_services,professional_services > construction_services > engineering_services,engineering_service,services_and_business > building_or_construction_service > engineering_service,Engineering Service +gravel_professionals,professional_services > construction_services > stone_and_masonry > gravel_professionals,gravel_professional,services_and_business > building_or_construction_service > gravel_professional,Gravel Professional +inspection_services,professional_services > construction_services > inspection_services,inspection_service,services_and_business > building_or_construction_service > inspection_service,Inspection Service +instrumentation_engineers,professional_services > construction_services > engineering_services > instrumentation_engineers,instrumentation_engineer,services_and_business > building_or_construction_service > instrumentation_engineer,Instrumentation Engineer +ironworkers,professional_services > construction_services > metal_materials_and_experts > ironworkers,ironworker,services_and_business > building_or_construction_service > ironworker,Ironworker +lime_professionals,professional_services > construction_services > stone_and_masonry > lime_professionals,lime_professional,services_and_business > building_or_construction_service > lime_professional,Lime Professional +marble_and_granite_professionals,professional_services > construction_services > stone_and_masonry > marble_and_granite_professionals,marble_and_granite_professional,services_and_business > building_or_construction_service > marble_and_granite_professional,Marble and Granite Professional +masonry_contractors,professional_services > construction_services > stone_and_masonry > masonry_contractors,masonry_contractor,services_and_business > building_or_construction_service > masonry_contractor,Masonry Contractor +mechanical_engineers,professional_services > construction_services > engineering_services > mechanical_engineers,mechanical_engineer,services_and_business > building_or_construction_service > mechanical_engineer,Mechanical Engineer +metal_materials_and_experts,professional_services > construction_services > metal_materials_and_experts,metal_material_expert,services_and_business > building_or_construction_service > metal_material_expert,Metal Material Expert +road_contractor,professional_services > construction_services > road_contractor,road_contractor,services_and_business > building_or_construction_service > road_contractor,Road Contractor +stone_and_masonry,professional_services > construction_services > stone_and_masonry,stone_and_masonry,services_and_business > building_or_construction_service > stone_and_masonry,Stone and Masonry +welders,professional_services > construction_services > metal_materials_and_experts > welders,welder,services_and_business > building_or_construction_service > welder,Welder +corporate_office,private_establishments_and_corporates > corporate_office,corporate_or_business_office,services_and_business > corporate_or_business_office,Corporate or Business Office +auto_company,automotive > auto_company,auto_company,services_and_business > corporate_or_business_office > auto_company,Auto Company +bags_luggage_company,business_to_business > business > bags_luggage_company,bags_luggage_company,services_and_business > corporate_or_business_office > bags_luggage_company,Bags Luggage Company +biotechnology_company,business_to_business > b2b_medical_support_services > biotechnology_company,biotechnology_company,services_and_business > corporate_or_business_office > biotechnology_company,Biotechnology Company +bottled_water_company,business_to_business > business > bottled_water_company,bottled_water_company,services_and_business > corporate_or_business_office > bottled_water_company,Bottled Water Company +clothing_company,business_to_business > business > clothing_company,clothing_company,services_and_business > corporate_or_business_office > clothing_company,Clothing Company +energy_company,public_service_and_government > public_utility_company > energy_company,energy_company,services_and_business > corporate_or_business_office > energy_company,Energy Company +ferry_boat_company,business_to_business > business > ferry_boat_company,ferry_boat_company,services_and_business > corporate_or_business_office > ferry_boat_company,Ferry Boat Company +industrial_company,business_to_business > commercial_industrial > industrial_company,industrial_company,services_and_business > corporate_or_business_office > industrial_company,Industrial Company +information_technology_company,business_to_business > business_to_business_services > information_technology_company,information_technology_company,services_and_business > corporate_or_business_office > information_technology_company,Information Technology Company +pharmaceutical_companies,business_to_business > b2b_medical_support_services > pharmaceutical_companies,pharmaceutical_company,services_and_business > corporate_or_business_office > pharmaceutical_company,Pharmaceutical Company +plastic_company,business_to_business > business_manufacturing_and_supply > b2b_rubber_and_plastics > plastic_company,plastics_company,services_and_business > corporate_or_business_office > plastics_company,Plastics Company +private_association,public_service_and_government > organization > private_association,private_association,services_and_business > corporate_or_business_office > private_association,Private Association +telecommunications_company,business_to_business > business_to_business_services > telecommunications_company,telecommunications_company,services_and_business > corporate_or_business_office > telecommunications_company,Telecommunications Company +tobacco_company,business_to_business > business > tobacco_company,tobacco_company,services_and_business > corporate_or_business_office > tobacco_company,Tobacco Company +travel_company,business_to_business > business > travel_company,travel_company,services_and_business > corporate_or_business_office > travel_company,Travel Company +architect,professional_services > architect,architect,services_and_business > design_service > architect,Architect +architectural_designer,professional_services > architectural_designer,architectural_designer,services_and_business > design_service > architectural_designer,Architectural Designer +graphic_designer,professional_services > graphic_designer,graphic_designer,services_and_business > design_service > graphic_designer,Graphic Designer +product_design,professional_services > product_design,product_design,services_and_business > design_service > product_design,Product Design +sign_making,professional_services > sign_making,sign_making,services_and_business > design_service > sign_making,Sign Making +web_designer,professional_services > web_designer,web_designer,services_and_business > design_service > web_designer,Web Designer +environmental_and_ecological_services_for_businesses,business_to_business > business_to_business_services > environmental_and_ecological_services_for_businesses,environmental_or_ecological_service,services_and_business > environmental_or_ecological_service,Environmental or Ecological Service +environmental_abatement_services,professional_services > environmental_abatement_services,environmental_abatement_service,services_and_business > environmental_or_ecological_service > environmental_abatement_service,Environmental Abatement Service +environmental_conservation_organization,public_service_and_government > organization > environmental_conservation_organization,environmental_conservation_organization,services_and_business > environmental_or_ecological_service > environmental_conservation_organization,Environmental Conservation Organization +environmental_testing,professional_services > environmental_testing,environmental_testing_service,services_and_business > environmental_or_ecological_service > environmental_testing_service,Environmental Testing Service +forestry_service,professional_services > forestry_service,forestry_service,services_and_business > environmental_or_ecological_service > forestry_service,Forestry Service +wildlife_control,professional_services > wildlife_control,wildlife_control,services_and_business > environmental_or_ecological_service > wildlife_control,Wildlife Control +event_planning,professional_services > event_planning,event_or_party_service,services_and_business > event_or_party_service,Event or Party Service +audiovisual_equipment_rental,professional_services > event_planning > party_equipment_rental > audiovisual_equipment_rental,audiovisual_equipment_rental,services_and_business > event_or_party_service > audiovisual_equipment_rental,Audiovisual Equipment Rental +balloon_services,professional_services > event_planning > balloon_services,balloon_service,services_and_business > event_or_party_service > balloon_service,Balloon Service +bartender,professional_services > event_planning > bartender,bartender,services_and_business > event_or_party_service > bartender,Bartender +boat_charter,professional_services > event_planning > boat_charter,boat_charter,services_and_business > event_or_party_service > boat_charter,Boat Charter +bounce_house_rental,professional_services > event_planning > party_equipment_rental > bounce_house_rental,bounce_house_rental,services_and_business > event_or_party_service > bounce_house_rental,Bounce House Rental +caricature,professional_services > event_planning > caricature,caricature,services_and_business > event_or_party_service > caricature,Caricature +caterer,professional_services > event_planning > caterer,caterer,services_and_business > event_or_party_service > caterer,Caterer +clown,professional_services > event_planning > clown,clown,services_and_business > event_or_party_service > clown,Clown +dj_service,professional_services > event_planning > dj_service,dj_service,services_and_business > event_or_party_service > dj_service,DJ Service +event_technology_service,professional_services > event_planning > event_technology_service,event_technology_service,services_and_business > event_or_party_service > event_technology_service,Event Technology Service +face_painting,professional_services > event_planning > face_painting,face_painting,services_and_business > event_or_party_service > face_painting,Face Painting +floral_designer,professional_services > event_planning > floral_designer,floral_designer,services_and_business > event_or_party_service > floral_designer,Floral Designer +game_truck_rental,professional_services > event_planning > game_truck_rental,game_truck_rental,services_and_business > event_or_party_service > game_truck_rental,Game Truck Rental +golf_cart_rental,professional_services > event_planning > golf_cart_rental,golf_cart_rental,services_and_business > event_or_party_service > golf_cart_rental,Golf Cart Rental +henna_artist,professional_services > event_planning > henna_artist,henna_artist,services_and_business > event_or_party_service > henna_artist,Henna Artist +karaoke_rental,professional_services > event_planning > party_equipment_rental > karaoke_rental,karaoke_rental,services_and_business > event_or_party_service > karaoke_rental,Karaoke Rental +kids_recreation_and_party,professional_services > event_planning > kids_recreation_and_party,kids_recreation_and_party,services_and_business > event_or_party_service > kids_recreation_and_party,Kids Recreation and Party +magician,professional_services > event_planning > magician,magician,services_and_business > event_or_party_service > magician,Magician +mohel,professional_services > event_planning > mohel,mohel,services_and_business > event_or_party_service > mohel,Mohel +musician,professional_services > event_planning > musician,musician,services_and_business > event_or_party_service > musician,Musician +officiating_services,professional_services > event_planning > officiating_services,officiating_service,services_and_business > event_or_party_service > officiating_service,Officiating Service +party_and_event_planning,professional_services > event_planning > 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,professional_services > event_planning > party_bike_rental,party_bike_rental,services_and_business > event_or_party_service > party_bike_rental,Party Bike Rental +party_bus_rental,professional_services > event_planning > party_bus_rental,party_bus_rental,services_and_business > event_or_party_service > party_bus_rental,Party Bus Rental +party_character,professional_services > event_planning > party_character,party_character,services_and_business > event_or_party_service > party_character,Party Character +party_equipment_rental,professional_services > event_planning > party_equipment_rental,party_equipment_rental,services_and_business > event_or_party_service > party_equipment_rental,Party Equipment Rental +personal_chef,professional_services > event_planning > personal_chef,personal_chef,services_and_business > event_or_party_service > personal_chef,Personal Chef +photo_booth_rental,professional_services > event_planning > photo_booth_rental,photo_booth_rental,services_and_business > event_or_party_service > photo_booth_rental,Photo Booth Rental +silent_disco,professional_services > event_planning > silent_disco,silent_disco,services_and_business > event_or_party_service > silent_disco,Silent Disco +sommelier_service,professional_services > event_planning > sommelier_service,sommelier_service,services_and_business > event_or_party_service > sommelier_service,Sommelier Service +team_building_activity,professional_services > event_planning > team_building_activity,team_building_activity,services_and_business > event_or_party_service > team_building_activity,Team Building Activity +trivia_host,professional_services > event_planning > trivia_host,trivia_host,services_and_business > event_or_party_service > trivia_host,Trivia Host +valet_service,professional_services > event_planning > valet_service,valet_service,services_and_business > event_or_party_service > valet_service,Valet Service +videographer,professional_services > event_planning > videographer,videographer,services_and_business > event_or_party_service > videographer,Videographer +wedding_chapel,professional_services > event_planning > wedding_chapel,wedding_chapel,services_and_business > event_or_party_service > wedding_chapel,Wedding Chapel +wedding_planning,professional_services > event_planning > wedding_planning,wedding_planning,services_and_business > event_or_party_service > wedding_planning,Wedding Planning +adoption_services,professional_services > adoption_services,adoption_service,services_and_business > family_service > adoption_service,Adoption Service +child_care_and_day_care,professional_services > 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 +day_care_preschool,professional_services > child_care_and_day_care > day_care_preschool,day_care_preschool,services_and_business > family_service > child_care_and_day_care > day_care_preschool,Day Care Preschool +elder_care_planning,professional_services > elder_care_planning,elder_care_planning,services_and_business > family_service > elder_care_planning,Elder Care Planning +family_service_center,public_service_and_government > family_service_center,family_service_center,services_and_business > family_service > family_service_center,Family Service Center +funeral_services_and_cemeteries,professional_services > funeral_services_and_cemeteries,funeral_service,services_and_business > family_service > funeral_service,Funeral Service +cremation_services,professional_services > funeral_services_and_cemeteries > cremation_services,cremation_service,services_and_business > family_service > funeral_service > cremation_service,Cremation Service +mortuary_services,professional_services > funeral_services_and_cemeteries > mortuary_services,mortuary_service,services_and_business > family_service > funeral_service > mortuary_service,Mortuary Service +genealogists,professional_services > genealogists,genealogist,services_and_business > family_service > genealogist,Genealogist +mobility_equipment_services,professional_services > mobility_equipment_services,mobility_equipment_service,services_and_business > family_service > mobility_equipment_service,Mobility Equipment Service +nanny_services,professional_services > nanny_services,nanny_service,services_and_business > family_service > nanny_service,Nanny Service +financial_service,financial_service,financial_service,services_and_business > financial_service,Financial Service +accountant,financial_service > accountant,accountant,services_and_business > financial_service > accountant,Accountant +appraisal_services,professional_services > appraisal_services,appraisal_service,services_and_business > financial_service > appraisal_service,Appraisal Service +atms,financial_service > atms,atm,services_and_business > financial_service > atm,ATM +bank_credit_union,financial_service > bank_credit_union,bank_or_credit_union,services_and_business > financial_service > bank_or_credit_union,Bank or Credit Union +banks,financial_service > bank_credit_union > banks,bank,services_and_business > financial_service > bank_or_credit_union > bank,Bank +credit_union,financial_service > bank_credit_union > credit_union,credit_union,services_and_business > financial_service > bank_or_credit_union > credit_union,Credit Union +brokers,financial_service > brokers,broker,services_and_business > financial_service > broker,Broker +business_brokers,financial_service > brokers > business_brokers,business_broker,services_and_business > financial_service > broker > business_broker,Business Broker +stock_and_bond_brokers,financial_service > brokers > stock_and_bond_brokers,stock_and_bond_broker,services_and_business > financial_service > broker > stock_and_bond_broker,Stock and Bond Broker +business_banking_service,financial_service > business_banking_service,business_banking_service,services_and_business > financial_service > business_banking_service,Business Banking Service +business_financing,financial_service > business_financing,business_financing,services_and_business > financial_service > business_financing,Business Financing +check_cashing_payday_loans,financial_service > check_cashing_payday_loans,check_cashing_payday_loans,services_and_business > financial_service > check_cashing_payday_loans,Check Cashing Payday Loans +coin_dealers,financial_service > coin_dealers,coin_dealer,services_and_business > financial_service > coin_dealer,Coin Dealer +collection_agencies,financial_service > collection_agencies,collection_agency,services_and_business > financial_service > collection_agency,Collection Agency +credit_and_debt_counseling,financial_service > credit_and_debt_counseling,credit_and_debt_counseling,services_and_business > financial_service > credit_and_debt_counseling,Credit and Debt Counseling +currency_exchange,financial_service > currency_exchange,currency_exchange,services_and_business > financial_service > currency_exchange,Currency Exchange +customs_broker,professional_services > customs_broker,customs_broker,services_and_business > financial_service > customs_broker,Customs Broker +debt_relief_services,financial_service > debt_relief_services,debt_relief_service,services_and_business > financial_service > debt_relief_service,Debt Relief Service +financial_advising,financial_service > financial_advising,financial_advising,services_and_business > financial_service > financial_advising,Financial Advising +gold_buyer,retail > shopping > gold_buyer,gold_buyer,services_and_business > financial_service > gold_buyer,Gold Buyer +holding_companies,financial_service > holding_companies,holding_company,services_and_business > financial_service > holding_company,Holding Company +installment_loans,financial_service > installment_loans,installment_loans,services_and_business > financial_service > installment_loans,Installment Loans +auto_loan_provider,financial_service > installment_loans > auto_loan_provider,auto_loan_provider,services_and_business > financial_service > installment_loans > auto_loan_provider,Auto Loan Provider +mortgage_lender,financial_service > installment_loans > mortgage_lender,mortgage_lender,services_and_business > financial_service > installment_loans > mortgage_lender,Mortgage Lender +insurance_agency,financial_service > insurance_agency,insurance_agency,services_and_business > financial_service > insurance_agency,Insurance Agency +auto_insurance,financial_service > insurance_agency > auto_insurance,auto_insurance,services_and_business > financial_service > insurance_agency > auto_insurance,Auto Insurance +farm_insurance,financial_service > insurance_agency > farm_insurance,farm_insurance,services_and_business > financial_service > insurance_agency > farm_insurance,Farm Insurance +fidelity_and_surety_bonds,financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,Fidelity and Surety Bonds +home_and_rental_insurance,financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,services_and_business > financial_service > insurance_agency > home_and_rental_insurance,Home and Rental Insurance +life_insurance,financial_service > insurance_agency > life_insurance,life_insurance,services_and_business > financial_service > insurance_agency > life_insurance,Life Insurance +investing,financial_service > investing,investing,services_and_business > financial_service > investing,Investing +investment_management_company,financial_service > investment_management_company,investment_management_company,services_and_business > financial_service > investment_management_company,Investment Management Company +money_transfer_services,financial_service > money_transfer_services,money_transfer_service,services_and_business > financial_service > money_transfer_service,Money Transfer Service +mortgage_broker,real_estate > mortgage_broker,mortgage_broker,services_and_business > financial_service > mortgage_broker,Mortgage Broker +private_equity_firm,private_establishments_and_corporates > private_equity_firm,private_equity_firm,services_and_business > financial_service > private_equity_firm,Private Equity Firm +public_adjuster,professional_services > public_adjuster,public_adjuster,services_and_business > financial_service > public_adjuster,Public Adjuster +real_estate_investment,real_estate > real_estate_investment,real_estate_investment,services_and_business > financial_service > real_estate_investment,Real Estate Investment +tax_services,financial_service > tax_services,tax_service,services_and_business > financial_service > tax_service,Tax Service +trusts,financial_service > trusts,trusts,services_and_business > financial_service > trusts,Trusts +home_service,home_service,home_service,services_and_business > home_service,Home Service +air_duct_cleaning_service,professional_services > air_duct_cleaning_service,air_duct_cleaning_service,services_and_business > home_service > air_duct_cleaning_service,Air Duct Cleaning Service +antenna_service,professional_services > antenna_service,antenna_service,services_and_business > home_service > antenna_service,Antenna Service +appliance_repair_service,professional_services > appliance_repair_service,appliance_repair_service,services_and_business > home_service > appliance_repair_service,Appliance Repair Service +artificial_turf,home_service > artificial_turf,artificial_turf,services_and_business > home_service > artificial_turf,Artificial Turf +bathroom_remodeling,home_service > bathroom_remodeling,bathroom_remodeling,services_and_business > home_service > bathroom_remodeling,Bathroom Remodeling +bathtub_and_sink_repairs,home_service > bathtub_and_sink_repairs,bathtub_and_sink_repair,services_and_business > home_service > bathtub_and_sink_repair,Bathtub and Sink Repair +cabinet_sales_service,home_service > cabinet_sales_service,cabinet_sales_service,services_and_business > home_service > cabinet_sales_service,Cabinet Sales Service +carpenter,home_service > carpenter,carpenter,services_and_business > home_service > carpenter,Carpenter +carpet_cleaning,home_service > carpet_cleaning,carpet_cleaning,services_and_business > home_service > carpet_cleaning,Carpet Cleaning +carpet_dyeing,professional_services > carpet_dyeing,carpet_dyeing,services_and_business > home_service > carpet_dyeing,Carpet Dyeing +carpet_installation,home_service > carpet_installation,carpet_installation,services_and_business > home_service > carpet_installation,Carpet Installation +ceiling_and_roofing_repair_and_service,home_service > 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,home_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 +roofing,home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,Roofing +childproofing,home_service > childproofing,childproofing,services_and_business > home_service > childproofing,Childproofing +chimney_service,home_service > chimney_service,chimney_service,services_and_business > home_service > chimney_service,Chimney Service +chimney_sweep,home_service > chimney_service > chimney_sweep,chimney_sweep,services_and_business > home_service > chimney_service > chimney_sweep,Chimney Sweep +clock_repair_service,professional_services > clock_repair_service,clock_repair_service,services_and_business > home_service > clock_repair_service,Clock Repair Service +closet_remodeling,home_service > closet_remodeling,closet_remodeling,services_and_business > home_service > closet_remodeling,Closet Remodeling +community_book_boxes,professional_services > community_book_boxes,community_book_box,services_and_business > home_service > community_book_box,Community Book Box +contractor,home_service > contractor,contractor,services_and_business > home_service > contractor,Contractor +altering_and_remodeling_contractor,home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,services_and_business > home_service > contractor > altering_and_remodeling_contractor,Altering and Remodeling Contractor +building_contractor,home_service > contractor > building_contractor,building_contractor,services_and_business > home_service > contractor > building_contractor,Building Contractor +flooring_contractors,home_service > contractor > flooring_contractors,flooring_contractor,services_and_business > home_service > contractor > flooring_contractor,Flooring Contractor +paving_contractor,home_service > contractor > paving_contractor,paving_contractor,services_and_business > home_service > contractor > paving_contractor,Paving Contractor +countertop_installation,home_service > countertop_installation,countertop_installation,services_and_business > home_service > countertop_installation,Countertop Installation +damage_restoration,home_service > damage_restoration,damage_restoration,services_and_business > home_service > damage_restoration,Damage Restoration +fire_and_water_damage_restoration,home_service > damage_restoration > 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 +deck_and_railing_sales_service,home_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 +demolition_service,home_service > demolition_service,demolition_service,services_and_business > home_service > demolition_service,Demolition Service +donation_center,professional_services > donation_center,donation_center,services_and_business > home_service > donation_center,Donation Center +door_sales_service,home_service > door_sales_service,door_sales_service,services_and_business > home_service > door_sales_service,Door Sales Service +drywall_services,home_service > drywall_services,drywall_service,services_and_business > home_service > drywall_service,Drywall Service +electrician,home_service > electrician,electrician,services_and_business > home_service > electrician,Electrician +excavation_service,home_service > excavation_service,excavation_service,services_and_business > home_service > excavation_service,Excavation Service +exterior_design,home_service > exterior_design,exterior_design,services_and_business > home_service > exterior_design,Exterior Design +fence_and_gate_sales_service,home_service > 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 +feng_shui,professional_services > feng_shui,feng_shui,services_and_business > home_service > feng_shui,Feng Shui +fire_protection_service,home_service > fire_protection_service,fire_protection_service,services_and_business > home_service > fire_protection_service,Fire Protection Service +fireplace_service,home_service > fireplace_service,fireplace_service,services_and_business > home_service > fireplace_service,Fireplace Service +firewood,home_service > firewood,firewood,services_and_business > home_service > firewood,Firewood +foundation_repair,home_service > foundation_repair,foundation_repair,services_and_business > home_service > foundation_repair,Foundation Repair +furniture_assembly,home_service > furniture_assembly,furniture_assembly,services_and_business > home_service > furniture_assembly,Furniture Assembly +furniture_rental_service,professional_services > furniture_rental_service,furniture_rental_service,services_and_business > home_service > furniture_rental_service,Furniture Rental Service +furniture_repair,professional_services > furniture_repair,furniture_repair,services_and_business > home_service > furniture_repair,Furniture Repair +furniture_reupholstery,professional_services > furniture_reupholstery,furniture_reupholstery,services_and_business > home_service > furniture_reupholstery,Furniture Reupholstery +garage_door_service,home_service > garage_door_service,garage_door_service,services_and_business > home_service > garage_door_service,Garage Door Service +glass_and_mirror_sales_service,home_service > 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 +grout_service,home_service > grout_service,grout_service,services_and_business > home_service > grout_service,Grout Service +gutter_service,home_service > gutter_service,gutter_service,services_and_business > home_service > gutter_service,Gutter Service +handyman,home_service > handyman,handyman,services_and_business > home_service > handyman,Handyman +holiday_decorating,home_service > holiday_decorating,holiday_decorating_service,services_and_business > home_service > holiday_decorating_service,Holiday Decorating Service +home_automation,home_service > home_automation,home_automation,services_and_business > home_service > home_automation,Home Automation +home_cleaning,home_service > home_cleaning,home_cleaning,services_and_business > home_service > home_cleaning,Home Cleaning +home_energy_auditor,home_service > home_energy_auditor,home_energy_auditor,services_and_business > home_service > home_energy_auditor,Home Energy Auditor +home_inspector,home_service > home_inspector,home_inspector,services_and_business > home_service > home_inspector,Home Inspector +home_network_installation,home_service > home_network_installation,home_network_installation,services_and_business > home_service > home_network_installation,Home Network Installation +home_security,home_service > home_security,home_security,services_and_business > home_service > home_security,Home Security +home_window_tinting,home_service > home_window_tinting,home_window_tinting,services_and_business > home_service > home_window_tinting,Home Window Tinting +house_sitting,home_service > house_sitting,house_sitting,services_and_business > home_service > house_sitting,House Sitting +hvac_services,home_service > hvac_services,hvac_service,services_and_business > home_service > hvac_service,HVAC Service +hydro_jetting,professional_services > hydro_jetting,hydro_jetting,services_and_business > home_service > hydro_jetting,Hydro Jetting +indoor_landscaping,professional_services > indoor_landscaping,indoor_landscaping,services_and_business > home_service > indoor_landscaping,Indoor Landscaping +insulation_installation,home_service > insulation_installation,insulation_installation,services_and_business > home_service > insulation_installation,Insulation Installation +interior_design,home_service > interior_design,interior_design,services_and_business > home_service > interior_design,Interior Design +irrigation,home_service > irrigation,irrigation_service,services_and_business > home_service > irrigation_service,Irrigation Service +junk_removal_and_hauling,professional_services > junk_removal_and_hauling,junk_removal_and_hauling,services_and_business > home_service > junk_removal_and_hauling,Junk Removal and Hauling +key_and_locksmith,home_service > key_and_locksmith,key_and_locksmith,services_and_business > home_service > key_and_locksmith,Key and Locksmith +kitchen_remodeling,home_service > kitchen_remodeling,kitchen_remodeling,services_and_business > home_service > kitchen_remodeling,Kitchen Remodeling +knife_sharpening,professional_services > knife_sharpening,knife_sharpening,services_and_business > home_service > knife_sharpening,Knife Sharpening +landscaping,home_service > landscaping,landscaping,services_and_business > home_service > landscaping,Landscaping +gardener,home_service > landscaping > gardener,gardener,services_and_business > home_service > landscaping > gardener,Gardener +landscape_architect,home_service > landscaping > landscape_architect,landscape_architect,services_and_business > home_service > landscaping > landscape_architect,Landscape Architect +lawn_service,home_service > landscaping > lawn_service,lawn_service,services_and_business > home_service > landscaping > lawn_service,Lawn Service +tree_services,home_service > landscaping > tree_services,tree_service,services_and_business > home_service > landscaping > tree_service,Tree Service +lawn_mower_repair_service,professional_services > lawn_mower_repair_service,lawn_mower_repair_service,services_and_business > home_service > lawn_mower_repair_service,Lawn Mower Repair Service +lighting_fixtures_and_equipment,home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,services_and_business > home_service > lighting_fixtures_and_equipment,Lighting Fixtures and Equipment +masonry_concrete,home_service > masonry_concrete,masonry_concrete,services_and_business > home_service > masonry_concrete,Masonry Concrete +misting_system_services,professional_services > misting_system_services,misting_system_service,services_and_business > home_service > misting_system_service,Misting System Service +mobile_home_repair,home_service > mobile_home_repair,mobile_home_repair,services_and_business > home_service > mobile_home_repair,Mobile Home Repair +movers,home_service > movers,mover,services_and_business > home_service > mover,Mover +packing_services,home_service > packing_services,packing_service,services_and_business > home_service > packing_service,Packing Service +painting,home_service > painting,painting,services_and_business > home_service > painting,Painting +patio_covers,home_service > patio_covers,patio_covers,services_and_business > home_service > patio_covers,Patio Covers +personal_assistant,professional_services > personal_assistant,personal_assistant,services_and_business > home_service > personal_assistant,Personal Assistant +pest_control_service,professional_services > pest_control_service,pest_control_service,services_and_business > home_service > pest_control_service,Pest Control Service +plasterer,home_service > plasterer,plasterer,services_and_business > home_service > plasterer,Plasterer +plumbing,home_service > plumbing,plumbing,services_and_business > home_service > plumbing,Plumbing +backflow_services,home_service > plumbing > backflow_services,backflow_service,services_and_business > home_service > plumbing > backflow_service,Backflow Service +pool_and_hot_tub_services,home_service > 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_cleaning,home_service > pool_cleaning,pool_cleaning,services_and_business > home_service > pool_cleaning,Pool Cleaning +pressure_washing,home_service > pressure_washing,pressure_washing,services_and_business > home_service > pressure_washing,Pressure Washing +recycling_center,professional_services > recycling_center,recycling_center,services_and_business > home_service > recycling_center,Recycling Center +refinishing_services,home_service > refinishing_services,refinishing_service,services_and_business > home_service > refinishing_service,Refinishing Service +security_systems,home_service > security_systems,security_systems,services_and_business > home_service > security_systems,Security Systems +sewing_and_alterations,professional_services > sewing_and_alterations,sewing_and_alterations,services_and_business > home_service > sewing_and_alterations,Sewing and Alterations +gents_tailor,professional_services > sewing_and_alterations > gents_tailor,tailor,services_and_business > home_service > sewing_and_alterations > tailor,Tailor +shades_and_blinds,home_service > shades_and_blinds,shades_and_blinds,services_and_business > home_service > shades_and_blinds,Shades and Blinds +shutters,home_service > shutters,shutters,services_and_business > home_service > shutters,Shutters +siding,home_service > siding,siding,services_and_business > home_service > siding,Siding +snow_removal_service,professional_services > snow_removal_service,snow_removal_service,services_and_business > home_service > snow_removal_service,Snow Removal Service +solar_installation,home_service > solar_installation,solar_installation,services_and_business > home_service > solar_installation,Solar Installation +solar_panel_cleaning,home_service > solar_panel_cleaning,solar_panel_cleaning,services_and_business > home_service > solar_panel_cleaning,Solar Panel Cleaning +structural_engineer,home_service > structural_engineer,structural_engineer,services_and_business > home_service > structural_engineer,Structural Engineer +stucco_services,home_service > stucco_services,stucco_service,services_and_business > home_service > stucco_service,Stucco Service +television_service_providers,home_service > television_service_providers,television_service_provider,services_and_business > home_service > television_service_provider,Television Service Provider +tiling,home_service > tiling,tiling,services_and_business > home_service > tiling,Tiling +tv_mounting,professional_services > tv_mounting,tv_mounting,services_and_business > home_service > tv_mounting,TV Mounting +wallpaper_installers,home_service > wallpaper_installers,wallpaper_installer,services_and_business > home_service > wallpaper_installer,Wallpaper Installer +washer_and_dryer_repair_service,home_service > 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 +water_delivery,professional_services > water_delivery,water_delivery,services_and_business > home_service > water_delivery,Water Delivery +water_heater_installation_repair,home_service > water_heater_installation_repair,water_heater_installation_repair,services_and_business > home_service > water_heater_installation_repair,Water Heater Installation Repair +water_purification_services,home_service > water_purification_services,water_purification_service,services_and_business > home_service > water_purification_service,Water Purification Service +waterproofing,home_service > waterproofing,waterproofing,services_and_business > home_service > waterproofing,Waterproofing +well_drilling,professional_services > well_drilling,well_drilling,services_and_business > home_service > well_drilling,Well Drilling +window_washing,home_service > window_washing,window_washing,services_and_business > home_service > window_washing,Window Washing +windows_installation,home_service > windows_installation,windows_installation,services_and_business > home_service > windows_installation,Windows Installation +skylight_installation,home_service > windows_installation > skylight_installation,skylight_installation,services_and_business > home_service > windows_installation > skylight_installation,Skylight Installation +apartments,real_estate > apartments,apartment,services_and_business > housing_or_property_service > apartment,Apartment +condominium,real_estate > condominium,condominium,services_and_business > housing_or_property_service > condominium,Condominium +halfway_house,health_and_medical > halfway_house,halfway_house,services_and_business > housing_or_property_service > halfway_house,Halfway House +low_income_housing,public_service_and_government > low_income_housing,low_income_housing,services_and_business > housing_or_property_service > low_income_housing,Low Income Housing +mobile_home_park,real_estate > mobile_home_park,mobile_home_park,services_and_business > housing_or_property_service > mobile_home_park,Mobile Home Park +assisted_living_facility,health_and_medical > assisted_living_facility,assisted_living_facility,services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,Assisted Living Facility +memory_care,health_and_medical > memory_care,memory_care_facility,services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,Memory Care Facility +retirement_home,public_service_and_government > retirement_home,retirement_home,services_and_business > housing_or_property_service > senior_living_facility > retirement_home,Retirement Home +university_housing,real_estate > university_housing,university_housing,services_and_business > housing_or_property_service > university_housing,University Housing +hazardous_waste_disposal,professional_services > hazardous_waste_disposal,hazardous_waste_disposal,services_and_business > industrial_facility_or_service > hazardous_waste_disposal,Hazardous Waste Disposal +powder_coating_service,professional_services > powder_coating_service,powder_coating_service,services_and_business > industrial_facility_or_service > powder_coating_service,Powder Coating Service +sandblasting_service,professional_services > sandblasting_service,sandblasting_service,services_and_business > industrial_facility_or_service > sandblasting_service,Sandblasting Service +laundry_services,professional_services > laundry_services,laundry_service,services_and_business > laundry_service,Laundry Service +dry_cleaning,professional_services > laundry_services > dry_cleaning,dry_cleaning,services_and_business > laundry_service > dry_cleaning,Dry Cleaning +laundromat,professional_services > laundry_services > laundromat,laundromat,services_and_business > laundry_service > laundromat,Laundromat +legal_services,professional_services > legal_services,legal_service,services_and_business > legal_service,Legal Service +lawyer,professional_services > lawyer,attorney_or_law_firm,services_and_business > legal_service > attorney_or_law_firm,Attorney or Law Firm +appellate_practice_lawyers,professional_services > lawyer > appellate_practice_lawyers,appellate_practice_lawyer,services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,Appellate Practice Lawyer +bankruptcy_law,professional_services > lawyer > bankruptcy_law,bankruptcy_law,services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,Bankruptcy Law +business_law,professional_services > lawyer > business_law,business_law,services_and_business > legal_service > attorney_or_law_firm > business_law,Business Law +civil_rights_lawyers,professional_services > lawyer > civil_rights_lawyers,civil_rights_lawyer,services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,Civil Rights Lawyer +contract_law,professional_services > lawyer > contract_law,contract_law,services_and_business > legal_service > attorney_or_law_firm > contract_law,Contract Law +criminal_defense_law,professional_services > lawyer > criminal_defense_law,criminal_defense_law,services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,Criminal Defense Law +disability_law,professional_services > lawyer > disability_law,disability_law,services_and_business > legal_service > attorney_or_law_firm > disability_law,Disability Law +divorce_and_family_law,professional_services > lawyer > 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 +dui_law,professional_services > lawyer > dui_law,dui_law,services_and_business > legal_service > attorney_or_law_firm > dui_law,DUI Law +employment_law,professional_services > lawyer > employment_law,employment_law,services_and_business > legal_service > attorney_or_law_firm > employment_law,Employment Law +entertainment_law,professional_services > lawyer > entertainment_law,entertainment_law,services_and_business > legal_service > attorney_or_law_firm > entertainment_law,Entertainment Law +estate_planning_law,professional_services > lawyer > estate_planning_law,estate_planning_law,services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,Estate Planning Law +general_litigation,professional_services > lawyer > general_litigation,general_litigation,services_and_business > legal_service > attorney_or_law_firm > general_litigation,General Litigation +immigration_law,professional_services > lawyer > immigration_law,immigration_law,services_and_business > legal_service > attorney_or_law_firm > immigration_law,Immigration Law +ip_and_internet_law,professional_services > lawyer > 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 +medical_law,professional_services > lawyer > medical_law,medical_law,services_and_business > legal_service > attorney_or_law_firm > medical_law,Medical Law +paralegal_services,professional_services > lawyer > paralegal_services,paralegal_service,services_and_business > legal_service > attorney_or_law_firm > paralegal_service,Paralegal Service +personal_injury_law,professional_services > lawyer > personal_injury_law,personal_injury_law,services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,Personal Injury Law +real_estate_law,professional_services > lawyer > real_estate_law,real_estate_law,services_and_business > legal_service > attorney_or_law_firm > real_estate_law,Real Estate Law +social_security_law,professional_services > lawyer > social_security_law,social_security_law,services_and_business > legal_service > attorney_or_law_firm > social_security_law,Social Security Law +tax_law,professional_services > lawyer > tax_law,tax_law,services_and_business > legal_service > attorney_or_law_firm > tax_law,Tax Law +traffic_ticketing_law,professional_services > lawyer > traffic_ticketing_law,traffic_ticketing_law,services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,Traffic Ticketing Law +wills_trusts_and_probate,professional_services > lawyer > estate_planning_law > 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 +workers_compensation_law,professional_services > lawyer > workers_compensation_law,workers_compensation_law,services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,Workers Compensation Law +bail_bonds_service,professional_services > bail_bonds_service,bail_bonds_service,services_and_business > legal_service > bail_bonds_service,Bail Bonds Service +court_reporter,professional_services > legal_services > court_reporter,court_reporter,services_and_business > legal_service > court_reporter,Court Reporter +mediator,professional_services > mediator,mediator,services_and_business > legal_service > mediator,Mediator +notary_public,professional_services > notary_public,notary_public,services_and_business > legal_service > notary_public,Notary Public +patent_law,professional_services > patent_law,patent_law,services_and_business > legal_service > patent_law,Patent Law +private_investigation,professional_services > private_investigation,private_investigation,services_and_business > legal_service > private_investigation,Private Investigation +process_servers,professional_services > legal_services > process_servers,process_server,services_and_business > legal_service > process_server,Process Server +tenant_and_eviction_law,professional_services > tenant_and_eviction_law,tenant_and_eviction_law,services_and_business > legal_service > tenant_and_eviction_law,Tenant and Eviction Law +mass_media,mass_media,media_service,services_and_business > media_service,Media Service +art_restoration_service,professional_services > art_restoration_service,art_restoration_service,services_and_business > media_service > art_restoration_service,Art Restoration Service +bookbinding,professional_services > bookbinding,bookbinding,services_and_business > media_service > bookbinding,Bookbinding +calligraphy,professional_services > calligraphy,calligraphy,services_and_business > media_service > calligraphy,Calligraphy +commissioned_artist,professional_services > commissioned_artist,commissioned_artist,services_and_business > media_service > commissioned_artist,Commissioned Artist +corporate_entertainment_services,private_establishments_and_corporates > corporate_entertainment_services,corporate_entertainment_service,services_and_business > media_service > corporate_entertainment_service,Corporate Entertainment Service +digitizing_services,professional_services > digitizing_services,digitizing_service,services_and_business > media_service > digitizing_service,Digitizing Service +engraving,professional_services > engraving,engraving,services_and_business > media_service > engraving,Engraving +media_critic,mass_media > media_critic,media_critic,services_and_business > media_service > media_critic,Media Critic +movie_critic,mass_media > media_critic > movie_critic,movie_critic,services_and_business > media_service > media_critic > movie_critic,Movie Critic +music_critic,mass_media > media_critic > music_critic,music_critic,services_and_business > media_service > media_critic > music_critic,Music Critic +video_game_critic,mass_media > media_critic > video_game_critic,video_game_critic,services_and_business > media_service > media_critic > video_game_critic,Video Game Critic +media_news_company,mass_media > media_news_company,media_news_company,services_and_business > media_service > media_news_company,Media News Company +animation_studio,mass_media > media_news_company > animation_studio,animation_studio,services_and_business > media_service > media_news_company > animation_studio,Animation Studio +book_magazine_distribution,mass_media > media_news_company > book_magazine_distribution,book_magazine_distribution,services_and_business > media_service > media_news_company > book_magazine_distribution,Book Magazine Distribution +broadcasting_media_production,mass_media > media_news_company > broadcasting_media_production,broadcasting_media_production,services_and_business > media_service > media_news_company > broadcasting_media_production,Broadcasting Media Production +game_publisher,mass_media > media_news_company > game_publisher,game_publisher,services_and_business > media_service > media_news_company > game_publisher,Game Publisher +media_agency,mass_media > media_news_company > media_agency,media_agency,services_and_business > media_service > media_news_company > media_agency,Media Agency +movie_television_studio,mass_media > media_news_company > movie_television_studio,movie_television_studio,services_and_business > media_service > media_news_company > movie_television_studio,Movie Television Studio +music_production,mass_media > media_news_company > music_production,music_production,services_and_business > media_service > media_news_company > music_production,Music Production +topic_publisher,mass_media > media_news_company > topic_publisher,publisher,services_and_business > media_service > media_news_company > publisher,Publisher +radio_station,mass_media > media_news_company > radio_station,radio_station,services_and_business > media_service > media_news_company > radio_station,Radio Station +social_media_company,mass_media > media_news_company > social_media_company,social_media_company,services_and_business > media_service > media_news_company > social_media_company,Social Media Company +television_station,mass_media > media_news_company > television_station,television_station,services_and_business > media_service > media_news_company > television_station,Television Station +weather_forecast_services,mass_media > media_news_company > weather_forecast_services,weather_forecast_service,services_and_business > media_service > media_news_company > weather_forecast_service,Weather Forecast Service +media_news_website,mass_media > media_news_website,media_news_website,services_and_business > media_service > media_news_website,Media News Website +media_restoration_service,mass_media > media_restoration_service,media_restoration_service,services_and_business > media_service > media_restoration_service,Media Restoration Service +music_production_services,professional_services > music_production_services,music_production_service,services_and_business > media_service > music_production_service,Music Production Service +musical_instrument_services,professional_services > musical_instrument_services,musical_instrument_service,services_and_business > media_service > musical_instrument_service,Musical Instrument Service +piano_services,professional_services > musical_instrument_services > piano_services,piano_service,services_and_business > media_service > musical_instrument_service > piano_service,Piano Service +vocal_coach,professional_services > musical_instrument_services > vocal_coach,vocal_coach,services_and_business > media_service > musical_instrument_service > vocal_coach,Vocal Coach +photographer,professional_services > event_planning > photographer,photography_service,services_and_business > media_service > photography_service,Photography Service +boudoir_photography,professional_services > event_planning > photographer > boudoir_photography,boudoir_photography_service,services_and_business > media_service > photography_service > boudoir_photography_service,Boudoir Photography Service +event_photography,professional_services > event_planning > photographer > event_photography,event_photography_service,services_and_business > media_service > photography_service > event_photography_service,Event Photography Service +session_photography,professional_services > event_planning > photographer > session_photography,session_photography_service,services_and_business > media_service > photography_service > session_photography_service,Session Photography Service +print_media,mass_media > print_media,print_media,services_and_business > media_service > print_media,Print Media +record_label,professional_services > record_label,record_label,services_and_business > media_service > record_label,Record Label +recording_and_rehearsal_studio,professional_services > recording_and_rehearsal_studio,recording_and_rehearsal_studio,services_and_business > media_service > recording_and_rehearsal_studio,Recording and Rehearsal Studio +studio_taping,arts_and_entertainment > studio_taping,studio_taping,services_and_business > media_service > studio_taping,Studio Taping +theatrical_productions,mass_media > theatrical_productions,theatrical_production,services_and_business > media_service > theatrical_production,Theatrical Production +video_film_production,professional_services > video_film_production,video_film_production,services_and_business > media_service > video_film_production,Video Film Production +weather_station,public_service_and_government > weather_station,weather_station,services_and_business > media_service > weather_station,Weather Station +printing_services,professional_services > printing_services,printing_service,services_and_business > printing_service,Printing Service +3d_printing_service,professional_services > 3d_printing_service,3d_printing_service,services_and_business > printing_service > 3d_printing_service,3d Printing Service +commercial_printer,professional_services > commercial_printer,commercial_printer,services_and_business > printing_service > commercial_printer,Commercial Printer +duplication_services,professional_services > duplication_services,duplication_service,services_and_business > printing_service > duplication_service,Duplication Service +screen_printing_t_shirt_printing,professional_services > 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 +professional_services,professional_services,professional_service,services_and_business > professional_service,Professional Service +advertising_agency,professional_services > advertising_agency,advertising_agency,services_and_business > professional_service > advertising_agency,Advertising Agency +bank_equipment_service,professional_services > bank_equipment_service,bank_equipment_service,services_and_business > professional_service > bank_equipment_service,Bank Equipment Service +billing_services,professional_services > billing_services,billing_service,services_and_business > professional_service > billing_service,Billing Service +bookkeeper,professional_services > bookkeeper,bookkeeper,services_and_business > professional_service > bookkeeper,Bookkeeper +business_consulting,professional_services > business_consulting,business_consulting,services_and_business > professional_service > business_consulting,Business Consulting +career_counseling,professional_services > career_counseling,career_counseling,services_and_business > professional_service > career_counseling,Career Counseling +certification_agency,professional_services > certification_agency,certification_agency,services_and_business > professional_service > certification_agency,Certification Agency +cleaning_services,professional_services > cleaning_services,cleaning_service,services_and_business > professional_service > cleaning_service,Cleaning Service +industrial_cleaning_services,professional_services > cleaning_services > industrial_cleaning_services,industrial_cleaning_service,services_and_business > professional_service > cleaning_service > industrial_cleaning_service,Industrial Cleaning Service +janitorial_services,professional_services > cleaning_services > janitorial_services,janitorial_service,services_and_business > professional_service > cleaning_service > janitorial_service,Janitorial Service +office_cleaning,professional_services > cleaning_services > office_cleaning,office_cleaning,services_and_business > professional_service > cleaning_service > office_cleaning,Office Cleaning +copywriting_service,professional_services > copywriting_service,copywriting_service,services_and_business > professional_service > copywriting_service,Copywriting Service +coworking_space,business_to_business > business_to_business_services > coworking_space,coworking_space,services_and_business > professional_service > coworking_space,Coworking Space +e_commerce_service,professional_services > e_commerce_service,e_commerce_service,services_and_business > professional_service > e_commerce_service,E-commerce Service +editorial_services,professional_services > editorial_services,editorial_service,services_and_business > professional_service > editorial_service,Editorial Service +employment_agencies,professional_services > employment_agencies,employment_agency,services_and_business > professional_service > employment_agency,Employment Agency +temp_agency,professional_services > employment_agencies > temp_agency,temp_agency,services_and_business > professional_service > employment_agency > temp_agency,Temp Agency +food_and_beverage_consultant,professional_services > food_and_beverage_consultant,food_and_beverage_consultant,services_and_business > professional_service > food_and_beverage_consultant,Food and Beverage Consultant +immigration_assistance_services,professional_services > immigration_assistance_services,immigration_assistance_service,services_and_business > professional_service > immigration_assistance_service,Immigration Assistance Service +internet_marketing_service,professional_services > internet_marketing_service,internet_marketing_service,services_and_business > professional_service > internet_marketing_service,Internet Marketing Service +marketing_agency,professional_services > marketing_agency,marketing_agency,services_and_business > professional_service > marketing_agency,Marketing Agency +merchandising_service,professional_services > merchandising_service,merchandising_service,services_and_business > professional_service > merchandising_service,Merchandising Service +payroll_services,professional_services > payroll_services,payroll_service,services_and_business > professional_service > payroll_service,Payroll Service +public_relations,professional_services > public_relations,public_relations,services_and_business > professional_service > public_relations,Public Relations +shredding_services,professional_services > shredding_services,shredding_service,services_and_business > professional_service > shredding_service,Shredding Service +social_media_agency,professional_services > social_media_agency,social_media_agency,services_and_business > professional_service > social_media_agency,Social Media Agency +talent_agency,professional_services > talent_agency,talent_agency,services_and_business > professional_service > talent_agency,Talent Agency +translation_services,professional_services > translation_services,translation_service,services_and_business > professional_service > translation_service,Translation Service +typing_services,professional_services > typing_services,typing_service,services_and_business > professional_service > typing_service,Typing Service +writing_service,professional_services > writing_service,writing_service,services_and_business > professional_service > writing_service,Writing Service +real_estate_service,real_estate > real_estate_service,real_estate_service,services_and_business > real_estate_service,Real Estate Service +builders,real_estate > builders,builder,services_and_business > real_estate_service > builder,Builder +home_developer,real_estate > builders > home_developer,home_developer,services_and_business > real_estate_service > builder > home_developer,Home Developer +commercial_real_estate,real_estate > commercial_real_estate,commercial_real_estate,services_and_business > real_estate_service > commercial_real_estate,Commercial Real Estate +display_home_center,real_estate > display_home_center,display_home_center,services_and_business > real_estate_service > display_home_center,Display Home Center +escrow_services,real_estate > real_estate_service > escrow_services,escrow_service,services_and_business > real_estate_service > escrow_service,Escrow Service +estate_liquidation,real_estate > estate_liquidation,estate_liquidation,services_and_business > real_estate_service > estate_liquidation,Estate Liquidation +home_organization,public_service_and_government > organization > home_organization,home_organization,services_and_business > real_estate_service > home_organization,Home Organization +home_staging,real_estate > home_staging,home_staging,services_and_business > real_estate_service > home_staging,Home Staging +homeowner_association,real_estate > homeowner_association,homeowner_association,services_and_business > real_estate_service > homeowner_association,Homeowner Association +housing_cooperative,real_estate > housing_cooperative,housing_cooperative,services_and_business > real_estate_service > housing_cooperative,Housing Cooperative +kitchen_incubator,real_estate > kitchen_incubator,kitchen_incubator,services_and_business > real_estate_service > kitchen_incubator,Kitchen Incubator +land_surveying,real_estate > real_estate_service > land_surveying,land_surveying,services_and_business > real_estate_service > land_surveying,Land Surveying +mobile_home_dealer,real_estate > mobile_home_dealer,mobile_home_dealer,services_and_business > real_estate_service > mobile_home_dealer,Mobile Home Dealer +property_management,real_estate > property_management,property_management,services_and_business > real_estate_service > property_management,Property Management +real_estate_agent,real_estate > real_estate_agent,real_estate_agent,services_and_business > real_estate_service > real_estate_agent,Real Estate Agent +apartment_agent,real_estate > real_estate_agent > apartment_agent,apartment_agent,services_and_business > real_estate_service > real_estate_agent > apartment_agent,Apartment Agent +real_estate_photography,real_estate > real_estate_service > real_estate_photography,real_estate_photography,services_and_business > real_estate_service > real_estate_photography,Real Estate Photography +shared_office_space,real_estate > shared_office_space,shared_office_space,services_and_business > real_estate_service > shared_office_space,Shared Office Space +rental_service,travel > rental_service,rental_service,services_and_business > rental_service,Rental Service +art_space_rental,real_estate > art_space_rental,art_space_rental,services_and_business > rental_service > art_space_rental,Art Space Rental +bus_rentals,professional_services > bus_rentals,bus_rental,services_and_business > rental_service > bus_rental,Bus Rental +clothing_rental,retail > shopping > fashion > clothing_store > clothing_rental,clothing_rental,services_and_business > rental_service > clothing_rental,Clothing Rental +dumpster_rentals,professional_services > junk_removal_and_hauling > dumpster_rentals,dumpster_rental,services_and_business > rental_service > dumpster_rental,Dumpster Rental +machine_and_tool_rentals,professional_services > machine_and_tool_rentals,machine_and_tool_rental,services_and_business > rental_service > machine_and_tool_rental,Machine and Tool Rental +rental_kiosks,retail > shopping > rental_kiosks,rental_kiosk,services_and_business > rental_service > rental_kiosk,Rental Kiosk +car_rental_agency,travel > rental_service > car_rental_agency,car_rental_service,services_and_business > rental_service > vehicle_rental_service > car_rental_service,Car Rental Service +motorcycle_rentals,travel > rental_service > motorcycle_rentals,motorcycle_rental_service,services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,Motorcycle Rental Service +rv_rentals,travel > rental_service > rv_rentals,rv_rental_service,services_and_business > rental_service > vehicle_rental_service > rv_rental_service,RV Rental Service +trailer_rentals,travel > rental_service > trailer_rentals,trailer_rental_service,services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,Trailer Rental Service +truck_rentals,travel > rental_service > truck_rentals,truck_rental_service,services_and_business > rental_service > vehicle_rental_service > truck_rental_service,Truck Rental Service +security_services,professional_services > security_services,security_service,services_and_business > security_service,Security Service +fingerprinting_service,professional_services > fingerprinting_service,fingerprinting_service,services_and_business > security_service > fingerprinting_service,Fingerprinting Service +courier_and_delivery_services,professional_services > courier_and_delivery_services,courier_and_delivery_service,services_and_business > shipping_or_delivery_service > courier_and_delivery_service,Courier and Delivery Service +mailbox_center,professional_services > mailbox_center,mailbox_center,services_and_business > shipping_or_delivery_service > mailbox_center,Mailbox Center +packaging_contractors_and_service,professional_services > packaging_contractors_and_service,packaging_contractors_and_service,services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,Packaging Contractors and Service +post_office,public_service_and_government > post_office,post_office,services_and_business > shipping_or_delivery_service > post_office,Post Office +shipping_center,professional_services > shipping_center,shipping_center,services_and_business > shipping_or_delivery_service > shipping_center,Shipping Center +shipping_collection_services,public_service_and_government > post_office > shipping_collection_services,shipping_collection_service,services_and_business > shipping_or_delivery_service > shipping_collection_service,Shipping Collection Service +vehicle_shipping,automotive > automotive_services_and_repair > vehicle_shipping,vehicle_shipping,services_and_business > shipping_or_delivery_service > vehicle_shipping,Vehicle Shipping +storage_facility,professional_services > storage_facility,storage_facility,services_and_business > storage_facility,Storage Facility +automotive_storage_facility,automotive > automotive_services_and_repair > automotive_storage_facility,automotive_storage_facility,services_and_business > storage_facility > automotive_storage_facility,Automotive Storage Facility +boat_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > boat_storage_facility,boat_storage_facility,services_and_business > storage_facility > boat_storage_facility,Boat Storage Facility +package_locker,professional_services > package_locker,package_locker,services_and_business > storage_facility > package_locker,Package Locker +rv_storage_facility,professional_services > storage_facility > rv_and_boat_storage_facility > rv_storage_facility,rv_storage_facility,services_and_business > storage_facility > rv_storage_facility,RV Storage Facility +self_storage_facility,professional_services > storage_facility > self_storage_facility,self_storage_facility,services_and_business > storage_facility > self_storage_facility,Self Storage Facility +acoustical_consultant,professional_services > acoustical_consultant,acoustical_consultant,services_and_business > technical_service > acoustical_consultant,Acoustical Consultant +bike_repair_maintenance,professional_services > bike_repair_maintenance,bike_repair_maintenance,services_and_business > technical_service > bike_repair_maintenance,Bike Repair Maintenance +commercial_refrigeration,professional_services > commercial_refrigeration,commercial_refrigeration,services_and_business > technical_service > commercial_refrigeration,Commercial Refrigeration +computer_hardware_company,professional_services > computer_hardware_company,computer_hardware_company,services_and_business > technical_service > computer_hardware_company,Computer Hardware Company +electronics_repair_shop,professional_services > electronics_repair_shop,electronics_repair_shop,services_and_business > technical_service > electronics_repair_shop,Electronics Repair Shop +elevator_service,professional_services > elevator_service,elevator_service,services_and_business > technical_service > elevator_service,Elevator Service +generator_installation_repair,professional_services > generator_installation_repair,generator_installation_repair,services_and_business > technical_service > generator_installation_repair,Generator Installation Repair +hydraulic_repair_service,professional_services > hydraulic_repair_service,hydraulic_repair_service,services_and_business > technical_service > hydraulic_repair_service,Hydraulic Repair Service +internet_service_provider,professional_services > internet_service_provider,internet_service_provider,services_and_business > technical_service > internet_service_provider,Internet Service Provider +web_hosting_service,professional_services > internet_service_provider > web_hosting_service,web_hosting_service,services_and_business > technical_service > internet_service_provider > web_hosting_service,Web Hosting Service +it_service_and_computer_repair,professional_services > 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_consultant,professional_services > it_service_and_computer_repair > it_consultant,it_consultant,services_and_business > technical_service > it_service_and_computer_repair > it_consultant,IT Consultant +mobile_phone_repair,professional_services > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,Mobile Phone Repair +jewelry_repair_service,professional_services > jewelry_repair_service,jewelry_repair_service,services_and_business > technical_service > jewelry_repair_service,Jewelry Repair Service +laboratory,professional_services > laboratory,laboratory,services_and_business > technical_service > laboratory,Laboratory +machine_shop,professional_services > machine_shop,machine_shop,services_and_business > technical_service > machine_shop,Machine Shop +metal_detector_services,professional_services > metal_detector_services,metal_detector_service,services_and_business > technical_service > metal_detector_service,Metal Detector Service +software_development,professional_services > software_development,software_development,services_and_business > technical_service > software_development,Software Development +taxidermist,professional_services > taxidermist,taxidermist,services_and_business > technical_service > taxidermist,Taxidermist +telephone_services,professional_services > telephone_services,telephone_service,services_and_business > technical_service > telephone_service,Telephone Service +watch_repair_service,professional_services > watch_repair_service,watch_repair_service,services_and_business > technical_service > watch_repair_service,Watch Repair Service +telecommunications,professional_services > it_service_and_computer_repair > telecommunications,telecommunications_service,services_and_business > telecommunications_service,Telecommunications Service +wind_energy,professional_services > construction_services > wind_energy,wind_energy,services_and_business > utility_energy_infrastructure > wind_energy,Wind Energy +shopping,retail > shopping,shopping,shopping,Shopping +convenience_store,retail > shopping > convenience_store,convenience_store,shopping > convenience_store,Convenience Store +department_store,retail > shopping > department_store,department_store,shopping > department_store,Department Store +discount_store,retail > shopping > discount_store,discount_store,shopping > discount_store,Discount Store +fashion,retail > shopping > fashion,fashion_and_apparel_store,shopping > fashion_and_apparel_store,Fashion and Apparel Store +baby_gear_and_furniture,retail > shopping > baby_gear_and_furniture,baby_gear_and_nursery_store,shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,Baby Gear and Nursery Store +clothing_store,retail > shopping > fashion > clothing_store,clothing_store,shopping > fashion_and_apparel_store > clothing_store,Clothing Store +bridal_shop,retail > shopping > bridal_shop,bridal_shop,shopping > fashion_and_apparel_store > clothing_store > bridal_shop,Bridal Shop +childrens_clothing_store,retail > shopping > fashion > clothing_store > childrens_clothing_store,childrens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,Children's Clothing Store +custom_clothing,retail > shopping > custom_clothing,custom_clothing_store,shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,Custom Clothing Store +denim_wear_store,retail > shopping > fashion > clothing_store > denim_wear_store,denim_wear_store,shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,Denim Wear Store +designer_clothing,retail > shopping > fashion > clothing_store > designer_clothing,designer_clothing,shopping > fashion_and_apparel_store > clothing_store > designer_clothing,Designer Clothing +formal_wear_store,retail > shopping > fashion > clothing_store > formal_wear_store,formal_wear_store,shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,Formal Wear Store +fur_clothing,retail > shopping > fashion > clothing_store > fur_clothing,fur_clothing,shopping > fashion_and_apparel_store > clothing_store > fur_clothing,Fur Clothing +lingerie_store,retail > shopping > fashion > clothing_store > lingerie_store,lingerie_store,shopping > fashion_and_apparel_store > clothing_store > lingerie_store,Lingerie Store +maternity_wear,retail > shopping > fashion > clothing_store > maternity_wear,maternity_wear,shopping > fashion_and_apparel_store > clothing_store > maternity_wear,Maternity Wear +mens_clothing_store,retail > shopping > fashion > clothing_store > mens_clothing_store,mens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,Men's Clothing Store +plus_size_clothing,retail > shopping > fashion > plus_size_clothing,plus_size_clothing_store,shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,Plus Size Clothing Store +sleepwear,retail > shopping > fashion > sleepwear,sleepwear,shopping > fashion_and_apparel_store > clothing_store > sleepwear,Sleepwear +t_shirt_store,retail > shopping > fashion > clothing_store > t_shirt_store,t_shirt_store,shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,T-shirt Store +custom_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,Custom T-shirt Store +traditional_clothing,retail > shopping > fashion > clothing_store > traditional_clothing,traditional_clothing,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,Traditional Clothing +saree_shop,retail > shopping > fashion > saree_shop,saree_shop,shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,Saree Shop +uniform_store,retail > shopping > uniform_store,uniform_store,shopping > fashion_and_apparel_store > clothing_store > uniform_store,Uniform Store +womens_clothing_store,retail > shopping > fashion > clothing_store > womens_clothing_store,womens_clothing_store,shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,Women's Clothing Store +eyewear_and_optician,retail > shopping > eyewear_and_optician,eyewear_store,shopping > fashion_and_apparel_store > eyewear_store,Eyewear Store +sunglasses_store,retail > shopping > eyewear_and_optician > sunglasses_store,sunglasses_store,shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,Sunglasses Store +fashion_accessories_store,retail > shopping > fashion > fashion_accessories_store,fashion_accessories_store,shopping > fashion_and_apparel_store > fashion_accessories_store,Fashion Accessories Store +handbag_stores,retail > shopping > fashion > fashion_accessories_store > handbag_stores,handbag_store,shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,Handbag Store +hat_shop,retail > shopping > fashion > hat_shop,hat_store,shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,Hat Store +boutique,retail > shopping > boutique,fashion_boutique,shopping > fashion_and_apparel_store > fashion_boutique,Fashion Boutique +jewelry_store,retail > shopping > jewelry_store,jewelry_store,shopping > fashion_and_apparel_store > jewelry_store,Jewelry Store +diamond_dealer,professional_services > diamond_dealer,diamond_dealer,shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,Diamond Dealer +goldsmith,professional_services > goldsmith,goldsmith,shopping > fashion_and_apparel_store > jewelry_store > goldsmith,Goldsmith +watch_store,retail > shopping > watch_store,watch_store,shopping > fashion_and_apparel_store > jewelry_store > watch_store,Watch Store +leather_goods,retail > shopping > fashion > leather_goods,leather_goods_store,shopping > fashion_and_apparel_store > leather_goods_store,Leather Goods Store +luggage_store,retail > shopping > luggage_store,luggage_store,shopping > fashion_and_apparel_store > luggage_store,Luggage Store +shoe_store,retail > shopping > fashion > shoe_store,shoe_store,shopping > fashion_and_apparel_store > shoe_store,Shoe Store +orthopedic_shoe_store,retail > shopping > fashion > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,Orthopedic Shoe Store +food,retail > food,food_and_beverage_store,shopping > food_and_beverage_store,Food and 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,Beer Wine Spirits Store +brewing_supply_store,retail > shopping > brewing_supply_store,brewing_supply_store,shopping > food_and_beverage_store > brewing_supply_store,Brewing Supply Store +butcher_shop,retail > food > butcher_shop,butcher_shop,shopping > food_and_beverage_store > butcher_shop,Butcher Shop +cheese_shop,retail > food > cheese_shop,cheese_shop,shopping > food_and_beverage_store > cheese_shop,Cheese Shop +coffee_and_tea_supplies,retail > food > coffee_and_tea_supplies,coffee_and_tea_supplies,shopping > food_and_beverage_store > coffee_and_tea_supplies,Coffee and Tea Supplies +csa_farm,retail > food > csa_farm,csa_farm,shopping > food_and_beverage_store > csa_farm,Csa Farm +fishmonger,retail > food > fishmonger,fishmonger,shopping > food_and_beverage_store > fishmonger,Fishmonger +grocery_store,retail > shopping > grocery_store,grocery_store,shopping > food_and_beverage_store > grocery_store,Grocery Store +asian_grocery_store,retail > shopping > grocery_store > asian_grocery_store,asian_grocery_store,shopping > food_and_beverage_store > grocery_store > asian_grocery_store,Asian Grocery Store +ethical_grocery,retail > shopping > grocery_store > ethical_grocery,ethical_grocery_store,shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,Ethical Grocery Store +indian_grocery_store,retail > shopping > grocery_store > indian_grocery_store,indian_grocery_store,shopping > food_and_beverage_store > grocery_store > indian_grocery_store,Indian Grocery Store +international_grocery_store,retail > shopping > international_grocery_store,international_grocery_store,shopping > food_and_beverage_store > grocery_store > international_grocery_store,International Grocery Store +japanese_grocery_store,retail > shopping > grocery_store > japanese_grocery_store,japanese_grocery_store,shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,Japanese Grocery Store +korean_grocery_store,retail > shopping > grocery_store > korean_grocery_store,korean_grocery_store,shopping > food_and_beverage_store > grocery_store > korean_grocery_store,Korean Grocery Store +kosher_grocery_store,retail > shopping > grocery_store > kosher_grocery_store,kosher_grocery_store,shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,Kosher Grocery Store +mexican_grocery_store,retail > shopping > grocery_store > mexican_grocery_store,mexican_grocery_store,shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,Mexican Grocery Store +organic_grocery_store,retail > shopping > grocery_store > organic_grocery_store,organic_grocery_store,shopping > food_and_beverage_store > grocery_store > organic_grocery_store,Organic Grocery Store +russian_grocery_store,retail > shopping > grocery_store > russian_grocery_store,russian_grocery_store,shopping > food_and_beverage_store > grocery_store > russian_grocery_store,Russian Grocery Store +health_food_store,retail > food > health_food_store,health_food_store,shopping > food_and_beverage_store > health_food_store,Health Food Store +herb_and_spice_shop,retail > herb_and_spice_shop,herb_and_spice_store,shopping > food_and_beverage_store > herb_and_spice_store,Herb and Spice Store +honey_farm_shop,retail > honey_farm_shop,honey_farm_shop,shopping > food_and_beverage_store > honey_farm_shop,Honey Farm Shop +imported_food,retail > food > imported_food,imported_food_store,shopping > food_and_beverage_store > imported_food_store,Imported Food Store +liquor_store,retail > food > liquor_store,liquor_store,shopping > food_and_beverage_store > liquor_store,Liquor Store +olive_oil,retail > olive_oil,olive_oil_store,shopping > food_and_beverage_store > olive_oil_store,Olive Oil Store +patisserie_cake_shop,retail > food > patisserie_cake_shop,patisserie_cake_shop,shopping > food_and_beverage_store > patisserie_cake_shop,Patisserie Cake Shop +custom_cakes_shop,retail > food > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,Custom Cakes Shop +pick_your_own_farm,arts_and_entertainment > farm > pick_your_own_farm,pick_your_own_farm,shopping > food_and_beverage_store > pick_your_own_farm,Pick Your Own Farm +seafood_market,retail > seafood_market,seafood_market,shopping > food_and_beverage_store > seafood_market,Seafood Market +smokehouse,retail > food > smokehouse,smokehouse,shopping > food_and_beverage_store > smokehouse,Smokehouse +specialty_foods,retail > food > specialty_foods,specialty_foods_store,shopping > food_and_beverage_store > specialty_foods_store,Specialty Foods Store +dairy_stores,retail > shopping > grocery_store > dairy_stores,dairy_store,shopping > food_and_beverage_store > specialty_foods_store > dairy_store,Dairy Store +frozen_foods,retail > food > specialty_foods > frozen_foods,frozen_foods_store,shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,Frozen Foods Store +pasta_shop,retail > food > specialty_foods > pasta_shop,pasta_store,shopping > food_and_beverage_store > specialty_foods_store > pasta_store,Pasta Store +fruits_and_vegetables,retail > food > fruits_and_vegetables,produce_store,shopping > food_and_beverage_store > specialty_foods_store > produce_store,Produce Store +rice_shop,retail > shopping > grocery_store > rice_shop,rice_store,shopping > food_and_beverage_store > specialty_foods_store > rice_store,Rice Store +tobacco_shop,retail > shopping > tobacco_shop,tobacco_shop,shopping > food_and_beverage_store > tobacco_shop,Tobacco Shop +vitamins_and_supplements,retail > shopping > vitamins_and_supplements,vitamin_and_supplement_store,shopping > food_and_beverage_store > vitamin_and_supplement_store,Vitamin and Supplement Store +water_store,retail > water_store,water_store,shopping > food_and_beverage_store > water_store,Water Store +kiosk,retail > food > kiosk,kiosk,shopping > kiosk,Kiosk +bazaars,retail > shopping > bazaars,bazaar,shopping > market > bazaar,Bazaar +farmers_market,retail > shopping > farmers_market,farmers_market,shopping > market > farmers_market,Farmers Market +health_market,retail > health_market,health_market,shopping > market > health_market,Health Market +holiday_market,arts_and_entertainment > festival > holiday_market,holiday_market,shopping > market > holiday_market,Holiday Market +market_stall,retail > shopping > market_stall,market_stall,shopping > market > market_stall,Market Stall +night_market,retail > shopping > night_market,night_market,shopping > market > night_market,Night Market +public_market,retail > shopping > public_market,public_market,shopping > market > public_market,Public Market +shopping_passage,retail > shopping > shopping_passage,shopping_passage,shopping > market > shopping_passage,Shopping Passage +street_vendor,retail > food > street_vendor,street_vendor,shopping > market > street_vendor,Street Vendor +thrift_store,retail > shopping > thrift_store,second_hand_store,shopping > second_hand_store,Second Hand Store +antique_store,retail > shopping > antique_store,antique_store,shopping > second_hand_store > antique_store,Antique Store +flea_market,retail > shopping > flea_market,flea_market,shopping > second_hand_store > flea_market,Flea Market +junkyard,professional_services > junkyard,junkyard,shopping > second_hand_store > junkyard,Junkyard +pawn_shop,retail > shopping > pawn_shop,pawn_shop,shopping > second_hand_store > pawn_shop,Pawn Shop +used_vintage_and_consignment,retail > shopping > fashion > used_vintage_and_consignment,second_hand_clothing_store,shopping > second_hand_store > second_hand_clothing_store,Second Hand Clothing Store +shopping_center,retail > shopping > shopping_center,shopping_mall,shopping > shopping_mall,Shopping Mall +personal_shopper,retail > shopping > personal_shopper,personal_shopper,shopping > shopping_service > personal_shopper,Personal Shopper +props,retail > shopping > props,specialty_store,shopping > specialty_store,Specialty Store +adult_store,retail > shopping > adult_store,adult_store,shopping > specialty_store > adult_store,Adult Store +horse_equipment_shop,retail > shopping > horse_equipment_shop,horse_equipment_shop,shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,Horse Equipment Shop +livestock_feed_and_supply_store,retail > shopping > 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 +pet_store,retail > shopping > pet_store,pet_store,shopping > specialty_store > animal_and_pet_store > pet_store,Pet Store +aquatic_pet_store,retail > shopping > pet_store > aquatic_pet_store,aquatic_pet_store,shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,Aquatic Pet Store +bird_shop,retail > shopping > pet_store > bird_shop,bird_store,shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,Bird Store +reptile_shop,retail > shopping > pet_store > reptile_shop,reptile_store,shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,Reptile Store +arts_and_crafts,retail > shopping > arts_and_crafts,arts_crafts_and_hobby_store,shopping > specialty_store > arts_crafts_and_hobby_store,Arts Crafts and Hobby Store +art_supply_store,retail > shopping > arts_and_crafts > art_supply_store,art_supply_store,shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,Art Supply Store +atelier,retail > shopping > arts_and_crafts > atelier,atelier,shopping > specialty_store > arts_crafts_and_hobby_store > atelier,Atelier +cooking_classes,retail > shopping > arts_and_crafts > cooking_classes,cooking_classes,shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,Cooking Classes +costume_store,retail > shopping > arts_and_crafts > costume_store,costume_store,shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,Costume Store +craft_shop,retail > shopping > arts_and_crafts > craft_shop,craft_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,Craft Store +embroidery_and_crochet,retail > shopping > arts_and_crafts > 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 +knitting_supply,retail > shopping > knitting_supply,knitting_supply_store,shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,Knitting Supply Store +fabric_store,retail > shopping > arts_and_crafts > fabric_store,fabric_store,shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,Fabric Store +framing_store,retail > shopping > arts_and_crafts > framing_store,framing_store,shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,Framing Store +hobby_shop,retail > shopping > hobby_shop,hobby_shop,shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,Hobby Shop +auction_house,retail > shopping > auction_house,auction_house,shopping > specialty_store > auction_house,Auction House +car_auction,retail > shopping > auction_house > car_auction,car_auction,shopping > specialty_store > auction_house > car_auction,Car Auction +books_mags_music_and_video,retail > shopping > books_mags_music_and_video,books_music_and_video_store,shopping > specialty_store > books_music_and_video_store,Books Music and Video Store +bookstore,retail > shopping > books_mags_music_and_video > bookstore,bookstore,shopping > specialty_store > books_music_and_video_store > bookstore,Bookstore +academic_bookstore,retail > shopping > books_mags_music_and_video > academic_bookstore,academic_bookstore,shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,Academic Bookstore +comic_books_store,retail > shopping > books_mags_music_and_video > comic_books_store,comic_books_store,shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,Comic Books Store +used_bookstore,retail > shopping > used_bookstore,used_bookstore,shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,Used Bookstore +music_and_dvd_store,retail > shopping > books_mags_music_and_video > music_and_dvd_store,music_and_dvd_store,shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,Music and DVD Store +newspaper_and_magazines_store,retail > shopping > books_mags_music_and_video > newspaper_and_magazines_store,newspaper_and_magazines_store,shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,Newspaper and Magazines Store +video_and_video_game_rentals,retail > shopping > books_mags_music_and_video > 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_game_store,retail > shopping > books_mags_music_and_video > video_game_store,video_game_store,shopping > specialty_store > books_music_and_video_store > video_game_store,Video Game Store +vinyl_record_store,retail > shopping > books_mags_music_and_video > vinyl_record_store,vinyl_record_store,shopping > specialty_store > books_music_and_video_store > vinyl_record_store,Vinyl Record Store +cards_and_stationery_store,retail > shopping > cards_and_stationery_store,cards_and_stationery_store,shopping > specialty_store > cards_and_stationery_store,Cards and Stationery Store +customized_merchandise,retail > shopping > customized_merchandise,customized_merchandise_store,shopping > specialty_store > customized_merchandise_store,Customized Merchandise Store +duty_free_shop,retail > shopping > duty_free_shop,duty_free_store,shopping > specialty_store > duty_free_store,Duty Free Store +educational_supply_store,retail > shopping > educational_supply_store,educational_supply_store,shopping > specialty_store > educational_supply_store,Educational Supply Store +electronics,retail > shopping > electronics,electronics_store,shopping > specialty_store > electronics_store,Electronics Store +audio_visual_equipment_store,retail > shopping > audio_visual_equipment_store,audio_visual_equipment_store,shopping > specialty_store > electronics_store > audio_visual_equipment_store,Audio Visual Equipment Store +battery_store,retail > shopping > battery_store,battery_store,shopping > specialty_store > electronics_store > battery_store,Battery Store +photography_store_and_services,retail > shopping > photography_store_and_services,camera_and_photography_store,shopping > specialty_store > electronics_store > camera_and_photography_store,Camera and Photography Store +car_stereo_store,automotive > automotive_parts_and_accessories > car_stereo_store,car_stereo_store,shopping > specialty_store > electronics_store > car_stereo_store,Car Stereo Store +computer_store,retail > shopping > computer_store,computer_store,shopping > specialty_store > electronics_store > computer_store,Computer Store +drone_store,retail > shopping > drone_store,drone_store,shopping > specialty_store > electronics_store > drone_store,Drone Store +home_theater_systems_stores,retail > shopping > home_theater_systems_stores,home_theater_systems_stores,shopping > specialty_store > electronics_store > home_theater_systems_stores,Home Theater Systems Stores +mobile_phone_accessories,retail > shopping > mobile_phone_accessories,mobile_phone_accessory_store,shopping > specialty_store > electronics_store > mobile_phone_accessory_store,Mobile Phone Accessory Store +mobile_phone_store,retail > shopping > mobile_phone_store,mobile_phone_store,shopping > specialty_store > electronics_store > mobile_phone_store,Mobile Phone Store +agricultural_seed_store,retail > shopping > agricultural_seed_store,agricultural_seed_store,shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,Agricultural Seed Store +farming_equipment_store,retail > shopping > farming_equipment_store,farming_equipment_store,shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,Farming Equipment Store +firework_retailer,retail > shopping > firework_retailer,fireworks_store,shopping > specialty_store > fireworks_store,Fireworks Store +flowers_and_gifts_shop,retail > shopping > flowers_and_gifts_shop,flowers_and_gifts_store,shopping > specialty_store > flowers_and_gifts_store,Flowers and Gifts Store +florist,retail > shopping > flowers_and_gifts_shop > florist,florist,shopping > specialty_store > flowers_and_gifts_store > florist,Florist +flower_markets,retail > shopping > flower_markets,flower_market,shopping > specialty_store > flowers_and_gifts_store > flower_market,Flower Market +gift_shop,retail > shopping > flowers_and_gifts_shop > gift_shop,gift_shop,shopping > specialty_store > flowers_and_gifts_store > gift_shop,Gift Shop +gemstone_and_mineral,retail > shopping > gemstone_and_mineral,gemstone_and_mineral_store,shopping > specialty_store > gemstone_and_mineral_store,Gemstone and Mineral Store +gun_and_ammo,retail > shopping > gun_and_ammo,gun_and_ammo_store,shopping > specialty_store > gun_and_ammo_store,Gun and Ammo Store +gunsmith,professional_services > gunsmith,gunsmith,shopping > specialty_store > gun_and_ammo_store > gunsmith,Gunsmith +home_and_garden,retail > shopping > home_and_garden,hardware_home_and_garden_store,shopping > specialty_store > hardware_home_and_garden_store,Hardware Home and Garden Store +appliance_store,retail > shopping > home_and_garden > appliance_store,appliance_store,shopping > specialty_store > hardware_home_and_garden_store > appliance_store,Appliance Store +bedding_and_bath_stores,retail > shopping > home_and_garden > bedding_and_bath_stores,bedding_and_bath_store,shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,Bedding and Bath Store +building_supply_store,retail > shopping > building_supply_store,building_supply_store,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,Building Supply Store +lumber_store,retail > shopping > building_supply_store > lumber_store,lumber_store,shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,Lumber Store +candle_store,retail > shopping > home_and_garden > candle_store,candle_store,shopping > specialty_store > hardware_home_and_garden_store > candle_store,Candle Store +carpet_store,retail > carpet_store,carpet_store,shopping > specialty_store > hardware_home_and_garden_store > carpet_store,Carpet Store +christmas_trees,retail > shopping > home_and_garden > christmas_trees,christmas_tree_store,shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,Christmas Tree Store +do_it_yourself_store,retail > shopping > do_it_yourself_store,do_it_yourself_store,shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,Do IT Yourself Store +electrical_supply_store,retail > shopping > home_and_garden > electrical_supply_store,electrical_supply_store,shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,Electrical Supply Store +flooring_store,retail > flooring_store,flooring_store,shopping > specialty_store > hardware_home_and_garden_store > flooring_store,Flooring Store +furniture_accessory_store,retail > shopping > home_and_garden > furniture_accessory_store,furniture_accessory_store,shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,Furniture Accessory Store +furniture_store,retail > shopping > home_and_garden > furniture_store,furniture_store,shopping > specialty_store > hardware_home_and_garden_store > furniture_store,Furniture Store +grilling_equipment,retail > shopping > home_and_garden > grilling_equipment,grilling_equipment_store,shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,Grilling Equipment Store +hardware_store,retail > shopping > home_and_garden > hardware_store,hardware_store,shopping > specialty_store > hardware_home_and_garden_store > hardware_store,Hardware Store +welding_supply_store,retail > shopping > home_and_garden > hardware_store > welding_supply_store,welding_supply_store,shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,Welding Supply Store +holiday_decor,retail > shopping > home_and_garden > holiday_decor,holiday_decor_store,shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,Holiday Decor Store +home_decor,retail > shopping > home_and_garden > home_decor,home_decor_store,shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,Home Decor Store +home_goods_store,retail > shopping > home_and_garden > home_goods_store,home_goods_store,shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,Home Goods Store +home_improvement_store,retail > shopping > home_and_garden > home_improvement_store,home_improvement_store,shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,Home Improvement Store +hot_tubs_and_pools,retail > shopping > home_and_garden > 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 +kitchen_and_bath,retail > shopping > home_and_garden > kitchen_and_bath,kitchen_and_bath_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,Kitchen and Bath Store +bathroom_fixture_stores,retail > shopping > home_and_garden > kitchen_and_bath > bathroom_fixture_stores,bathroom_fixture_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,Bathroom Fixture Store +kitchen_supply_store,retail > shopping > home_and_garden > kitchen_and_bath > kitchen_supply_store,kitchen_supply_store,shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,Kitchen Supply Store +lawn_mower_store,retail > shopping > home_and_garden > lawn_mower_store,lawn_mower_store,shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,Lawn Mower Store +lighting_store,retail > shopping > home_and_garden > lighting_store,lighting_store,shopping > specialty_store > hardware_home_and_garden_store > lighting_store,Lighting Store +linen,retail > shopping > home_and_garden > linen,linen_store,shopping > specialty_store > hardware_home_and_garden_store > linen_store,Linen Store +mattress_store,retail > shopping > home_and_garden > mattress_store,mattress_store,shopping > specialty_store > hardware_home_and_garden_store > mattress_store,Mattress Store +nursery_and_gardening,retail > shopping > home_and_garden > nursery_and_gardening,nursery_and_gardening_store,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,Nursery and Gardening Store +hydroponic_gardening,retail > shopping > home_and_garden > nursery_and_gardening > hydroponic_gardening,hydroponic_gardening_store,shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,Hydroponic Gardening Store +outdoor_furniture_store,retail > shopping > home_and_garden > outdoor_furniture_store,outdoor_furniture_store,shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,Outdoor Furniture Store +paint_store,retail > shopping > home_and_garden > paint_store,paint_store,shopping > specialty_store > hardware_home_and_garden_store > paint_store,Paint Store +rug_store,retail > shopping > home_and_garden > rug_store,rug_store,shopping > specialty_store > hardware_home_and_garden_store > rug_store,Rug Store +tile_store,retail > shopping > home_and_garden > tile_store,tile_store,shopping > specialty_store > hardware_home_and_garden_store > tile_store,Tile Store +wallpaper_store,retail > shopping > home_and_garden > wallpaper_store,wallpaper_store,shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,Wallpaper Store +window_treatment_store,retail > shopping > home_and_garden > window_treatment_store,window_treatment_store,shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,Window Treatment Store +woodworking_supply_store,retail > shopping > home_and_garden > woodworking_supply_store,woodworking_supply_store,shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,Woodworking Supply Store +medical_supply,retail > shopping > medical_supply,medical_supply_store,shopping > specialty_store > medical_supply_store,Medical Supply Store +dental_supply_store,retail > shopping > medical_supply > dental_supply_store,dental_supply_store,shopping > specialty_store > medical_supply_store > dental_supply_store,Dental Supply Store +hearing_aid_provider,retail > hearing_aid_provider,hearing_aid_store,shopping > specialty_store > medical_supply_store > hearing_aid_store,Hearing Aid Store +musical_instrument_store,retail > shopping > musical_instrument_store,musical_instrument_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store,Musical Instrument Store +guitar_store,retail > shopping > guitar_store,guitar_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,Guitar Store +piano_store,retail > shopping > piano_store,piano_store,shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,Piano Store +office_equipment,retail > shopping > office_equipment,office_supply_store,shopping > specialty_store > office_supply_store,Office Supply Store +packing_supply,retail > shopping > packing_supply,packing_supply_store,shopping > specialty_store > office_supply_store > packing_supply_store,Packing Supply Store +pen_store,retail > shopping > pen_store,pen_store,shopping > specialty_store > office_supply_store > pen_store,Pen Store +outlet_store,retail > shopping > outlet_store,outlet_store,shopping > specialty_store > outlet_store,Outlet Store +party_supply,retail > party_supply,party_supply_store,shopping > specialty_store > party_supply_store,Party Supply Store +cosmetic_and_beauty_supplies,retail > shopping > cosmetic_and_beauty_supplies,beauty_supply_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,Beauty Supply Store +perfume_store,retail > shopping > 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 +hair_supply_stores,retail > shopping > cosmetic_and_beauty_supplies > hair_supply_stores,hair_supply_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,Hair Supply Store +wig_store,retail > shopping > wig_store,wig_store,shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,Wig Store +drugstore,retail > drugstore,drugstore,shopping > specialty_store > pharmacy_and_drug_store > drugstore,Drugstore +pharmacy,retail > pharmacy,pharmacy,shopping > specialty_store > pharmacy_and_drug_store > pharmacy,Pharmacy +pop_up_shop,retail > shopping > pop_up_shop,pop_up_store,shopping > specialty_store > pop_up_store,Pop Up Store +religious_items,retail > shopping > religious_items,religious_and_spiritual_goods_store,shopping > specialty_store > religious_and_spiritual_goods_store,Religious and Spiritual Goods Store +safe_store,retail > shopping > safe_store,safe_store,shopping > specialty_store > safe_store,Safe Store +safety_equipment,retail > shopping > safety_equipment,safety_equipment_store,shopping > specialty_store > safety_equipment_store,Safety Equipment Store +e_cigarette_store,retail > shopping > e_cigarette_store,smoke_and_vape_store,shopping > specialty_store > smoke_and_vape_store,Smoke and Vape Store +cannabis_dispensary,retail > shopping > cannabis_dispensary,cannabis_dispensary,shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,Cannabis Dispensary +souvenir_shop,retail > shopping > souvenir_shop,souvenir_store,shopping > specialty_store > souvenir_store,Souvenir Store +sporting_goods,retail > shopping > sporting_goods,sporting_goods_store,shopping > specialty_store > sporting_goods_store,Sporting Goods Store +archery_shop,retail > shopping > sporting_goods > archery_shop,archery_store,shopping > specialty_store > sporting_goods_store > archery_store,Archery Store +bicycle_shop,retail > shopping > sporting_goods > bicycle_shop,bike_store,shopping > specialty_store > sporting_goods_store > bike_store,Bike Store +dive_shop,retail > shopping > sporting_goods > dive_shop,dive_store,shopping > specialty_store > sporting_goods_store > dive_store,Dive Store +fitness_exercise_equipment,retail > shopping > fitness_exercise_equipment,fitness_exercise_store,shopping > specialty_store > sporting_goods_store > fitness_exercise_store,Fitness Exercise Store +golf_equipment,retail > shopping > sporting_goods > golf_equipment,golf_equipment_store,shopping > specialty_store > sporting_goods_store > golf_equipment_store,Golf Equipment Store +hockey_equipment,retail > shopping > sporting_goods > hockey_equipment,hockey_equipment_store,shopping > specialty_store > sporting_goods_store > hockey_equipment_store,Hockey Equipment Store +hunting_and_fishing_supplies,retail > shopping > sporting_goods > hunting_and_fishing_supplies,hunting_and_fishing_store,shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,Hunting and Fishing Store +outdoor_gear,retail > shopping > sporting_goods > outdoor_gear,outdoor_store,shopping > specialty_store > sporting_goods_store > outdoor_store,Outdoor Store +pool_and_billiards,retail > shopping > pool_and_billiards,pool_and_billiards_store,shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,Pool and Billiards Store +skate_shop,retail > shopping > sporting_goods > skate_shop,skate_store,shopping > specialty_store > sporting_goods_store > skate_store,Skate Store +ski_and_snowboard_shop,retail > shopping > sporting_goods > ski_and_snowboard_shop,ski_and_snowboard_store,shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,Ski and Snowboard Store +sports_wear,retail > shopping > sporting_goods > sports_wear,sportswear_store,shopping > specialty_store > sporting_goods_store > sportswear_store,Sportswear Store +dance_wear,retail > shopping > sporting_goods > sports_wear > dance_wear,dancewear_store,shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,Dancewear Store +surf_shop,retail > shopping > sporting_goods > surf_shop,surf_store,shopping > specialty_store > sporting_goods_store > surf_store,Surf Store +swimwear_store,retail > shopping > sporting_goods > swimwear_store,swimwear_store,shopping > specialty_store > sporting_goods_store > swimwear_store,Swimwear Store +army_and_navy_store,retail > shopping > army_and_navy_store,army_and_navy_store,shopping > specialty_store > tactical_supply_store > army_and_navy_store,Army and Navy Store +military_surplus_store,retail > shopping > military_surplus_store,military_surplus_store,shopping > specialty_store > tactical_supply_store > military_surplus_store,Military Surplus Store +tabletop_games,retail > shopping > tabletop_games,tabletop_games_store,shopping > specialty_store > toys_and_games_store > tabletop_games_store,Tabletop Games Store +toy_store,retail > shopping > toy_store,toy_store,shopping > specialty_store > toys_and_games_store > toy_store,Toy Store +trophy_shop,retail > shopping > trophy_shop,trophy_store,shopping > specialty_store > trophy_store,Trophy Store +auto_parts_and_supply_store,retail > auto_parts_and_supply_store,auto_parts_store,shopping > specialty_store > vehicle_parts_store > auto_parts_store,Auto Parts Store +boat_parts_and_supply_store,retail > boat_parts_and_supply_store,boat_parts_store,shopping > specialty_store > vehicle_parts_store > boat_parts_store,Boat Parts Store +motorcycle_gear,automotive > automotive_parts_and_accessories > motorcycle_gear,motorcycle_parts_store,shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,Motorcycle Parts Store +motorsports_store,automotive > automotive_parts_and_accessories > motorsports_store,motorsports_store,shopping > specialty_store > vehicle_parts_store > motorsports_store,Motorsports Store +recreational_vehicle_parts_and_accessories,automotive > automotive_parts_and_accessories > recreational_vehicle_parts_and_accessories,rv_parts_store,shopping > specialty_store > vehicle_parts_store > rv_parts_store,RV Parts Store +superstore,retail > shopping > superstore,superstore,shopping > superstore,Superstore +automotive_dealer,automotive > automotive_dealer,vehicle_dealer,shopping > vehicle_dealer,Vehicle Dealer +aircraft_dealer,automotive > aircraft_dealer,aircraft_dealer,shopping > vehicle_dealer > aircraft_dealer,Aircraft Dealer +car_dealer,automotive > automotive_dealer > car_dealer,auto_dealer,shopping > vehicle_dealer > auto_dealer,Auto Dealer +car_broker,professional_services > car_broker,auto_broker,shopping > vehicle_dealer > auto_dealer > auto_broker,Auto Broker +automobile_leasing,automotive > automobile_leasing,auto_leasing,shopping > vehicle_dealer > auto_dealer > auto_leasing,Auto Leasing +used_car_dealer,automotive > automotive_dealer > used_car_dealer,used_auto_dealer,shopping > vehicle_dealer > auto_dealer > used_auto_dealer,Used Auto Dealer +boat_dealer,automotive > boat_dealer,boat_dealer,shopping > vehicle_dealer > boat_dealer,Boat Dealer +commercial_vehicle_dealer,automotive > automotive_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,shopping > vehicle_dealer > commercial_vehicle_dealer,Commercial Vehicle Dealer +forklift_dealer,retail > shopping > farming_equipment_store > forklift_dealer,forklift_dealer,shopping > vehicle_dealer > forklift_dealer,Forklift Dealer +golf_cart_dealer,automotive > automotive_dealer > golf_cart_dealer,golf_cart_dealer,shopping > vehicle_dealer > golf_cart_dealer,Golf Cart Dealer +motorcycle_dealer,automotive > automotive_dealer > motorcycle_dealer,motorcycle_dealer,shopping > vehicle_dealer > motorcycle_dealer,Motorcycle Dealer +motorsport_vehicle_dealer,automotive > automotive_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,shopping > vehicle_dealer > motorsport_vehicle_dealer,Motorsport Vehicle Dealer +recreational_vehicle_dealer,automotive > automotive_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,shopping > vehicle_dealer > recreational_vehicle_dealer,Recreational Vehicle Dealer +scooter_dealers,automotive > automotive_dealer > scooter_dealers,scooter_dealer,shopping > vehicle_dealer > scooter_dealer,Scooter Dealer +trailer_dealer,automotive > automotive_dealer > trailer_dealer,trailer_dealer,shopping > vehicle_dealer > trailer_dealer,Trailer Dealer +truck_dealer,automotive > automotive_dealer > truck_dealer,truck_dealer,shopping > vehicle_dealer > truck_dealer,Truck Dealer +wholesale_store,retail > shopping > wholesale_store,warehouse_club_store,shopping > warehouse_club_store,Warehouse Club Store +active_life,active_life,sports_and_recreation,sports_and_recreation,Sports and Recreation +park,attractions_and_activities > park,park,sports_and_recreation > park,Park +dog_park,attractions_and_activities > park > dog_park,dog_park,sports_and_recreation > park > dog_park,Dog Park +mountain_bike_parks,attractions_and_activities > mountain_bike_parks,mountain_bike_park,sports_and_recreation > park > mountain_bike_park,Mountain Bike Park +national_park,attractions_and_activities > park > national_park,national_park,sports_and_recreation > park > national_park,National Park +playground,active_life > sports_and_recreation_venue > playground,playground,sports_and_recreation > park > playground,Playground +state_park,attractions_and_activities > park > state_park,state_park,sports_and_recreation > park > state_park,State Park +water_park,arts_and_entertainment > water_park,water_park,sports_and_recreation > park > water_park,Water Park +sports_and_recreation_rental_and_services,active_life > sports_and_recreation_rental_and_services,recreational_equipment_rental,sports_and_recreation > recreational_equipment_rental,Recreational Equipment Rental +atv_rentals_and_tours,attractions_and_activities > atv_rentals_and_tours,atv_rental_tour,sports_and_recreation > recreational_equipment_rental > atv_rental_tour,ATV Rental Tour +beach_equipment_rentals,active_life > sports_and_recreation_rental_and_services > beach_equipment_rentals,beach_equipment_rental,sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,Beach Equipment Rental +bike_rentals,active_life > sports_and_recreation_rental_and_services > bike_rentals,bike_rental,sports_and_recreation > recreational_equipment_rental > bike_rental,Bike Rental +boat_rental_and_training,attractions_and_activities > boat_rental_and_training,boat_rental_and_training,sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,Boat Rental and Training +canoe_and_kayak_hire_service,active_life > sports_and_recreation_rental_and_services > boat_hire_service > 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 +jet_skis_rental,attractions_and_activities > jet_skis_rental,jet_skis_rental,sports_and_recreation > recreational_equipment_rental > jet_skis_rental,Jet Skis Rental +paddleboard_rental,attractions_and_activities > paddleboard_rental,paddleboard_rental,sports_and_recreation > recreational_equipment_rental > paddleboard_rental,Paddleboard Rental +scooter_rental,active_life > sports_and_recreation_rental_and_services > scooter_rental,scooter_rental,sports_and_recreation > recreational_equipment_rental > scooter_rental,Scooter Rental +sledding_rental,attractions_and_activities > sledding_rental,sledding_rental,sports_and_recreation > recreational_equipment_rental > sledding_rental,Sledding Rental +snorkeling_equipment_rental,attractions_and_activities > snorkeling_equipment_rental,snorkeling_equipment_rental,sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,Snorkeling Equipment Rental +sport_equipment_rentals,active_life > sports_and_recreation_rental_and_services > sport_equipment_rentals,sport_equipment_rental,sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,Sport Equipment Rental +surfboard_rental,attractions_and_activities > surfing > surfboard_rental,surfboard_rental,sports_and_recreation > recreational_equipment_rental > surfboard_rental,Surfboard Rental +trail,attractions_and_activities > trail,recreational_trail_or_path,sports_and_recreation > recreational_trail_or_path,Recreational Trail or Path +backpacking_area,attractions_and_activities > backpacking_area,backpacking_area,sports_and_recreation > recreational_trail_or_path > backpacking_area,Backpacking Area +bicycle_path,active_life > sports_and_recreation_venue > bicycle_path,bike_path,sports_and_recreation > recreational_trail_or_path > bike_path,Bike Path +hiking_trail,attractions_and_activities > trail > hiking_trail,hiking_trail,sports_and_recreation > recreational_trail_or_path > hiking_trail,Hiking Trail +mountain_bike_trails,attractions_and_activities > trail > mountain_bike_trails,mountain_bike_trail,sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,Mountain Bike Trail +amateur_sports_league,active_life > sports_club_and_league > amateur_sports_league,amateur_sport_league,sports_and_recreation > sport_league > amateur_sport_league,Amateur Sport League +esports_league,active_life > sports_club_and_league > esports_league,esports_league,sports_and_recreation > sport_league > esports_league,Esports League +professional_sports_league,active_life > sports_club_and_league > professional_sports_league,professional_sport_league,sports_and_recreation > sport_league > professional_sport_league,Professional Sport League +school_sports_league,active_life > sports_club_and_league > school_sports_league,school_sport_league,sports_and_recreation > sport_league > school_sport_league,School Sport League +sports_and_recreation_venue,active_life > sports_and_recreation_venue,sport_or_fitness_facility,sports_and_recreation > sport_or_fitness_facility,Sport or Fitness Facility +axe_throwing,attractions_and_activities > axe_throwing,axe_throwing,sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,Axe Throwing +bungee_jumping_center,attractions_and_activities > bungee_jumping_center,bungee_jumping_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,Bungee Jumping Center +challenge_courses_center,attractions_and_activities > challenge_courses_center,challenge_courses_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,Challenge Courses Center +cliff_jumping_center,attractions_and_activities > cliff_jumping_center,cliff_jumping_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,Cliff Jumping Center +climbing_service,attractions_and_activities > climbing_service,climbing_service,sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,Climbing Service +high_gliding_center,attractions_and_activities > high_gliding_center,high_gliding_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,High Gliding Center +rock_climbing_spot,attractions_and_activities > rock_climbing_spot,rock_climbing_spot,sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,Rock Climbing Spot +ziplining_center,attractions_and_activities > ziplining_center,ziplining_center,sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,Ziplining Center +adventure_sports_center,active_life > sports_and_recreation_venue > adventure_sports_center,adventure_sports_center,sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,Adventure Sports Center +atv_recreation_park,active_life > sports_and_recreation_venue > atv_recreation_park,atv_recreation_park,sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,ATV Recreation Park +batting_cage,active_life > sports_and_recreation_venue > batting_cage,batting_cage,sports_and_recreation > sport_or_fitness_facility > batting_cage,Batting Cage +bowling_alley,active_life > sports_and_recreation_venue > bowling_alley,bowling_alley,sports_and_recreation > sport_or_fitness_facility > bowling_alley,Bowling Alley +boxing_class,active_life > sports_and_fitness_instruction > boxing_class,boxing_class,sports_and_recreation > sport_or_fitness_facility > boxing_class,Boxing Class +boxing_gym,active_life > sports_and_fitness_instruction > boxing_gym,boxing_gym,sports_and_recreation > sport_or_fitness_facility > boxing_gym,Boxing Gym +cardio_classes,active_life > sports_and_fitness_instruction > cardio_classes,cardio_class,sports_and_recreation > sport_or_fitness_facility > cardio_class,Cardio Class +climbing_class,active_life > sports_and_fitness_instruction > climbing_class,climbing_class,sports_and_recreation > sport_or_fitness_facility > climbing_class,Climbing Class +cycling_classes,active_life > sports_and_fitness_instruction > cycling_classes,cycling_class,sports_and_recreation > sport_or_fitness_facility > cycling_class,Cycling Class +dance_school,active_life > sports_and_fitness_instruction > dance_school,dance_studio,sports_and_recreation > sport_or_fitness_facility > dance_studio,Dance Studio +diving_center,active_life > sports_and_recreation_venue > diving_center,diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center,Diving Center +free_diving_center,active_life > sports_and_recreation_venue > diving_center > free_diving_center,free_diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,Free Diving Center +scuba_diving_center,active_life > sports_and_recreation_venue > diving_center > scuba_diving_center,scuba_diving_center,sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,Scuba Diving Center +free_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > free_diving_instruction,free_diving_instruction,sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,Free Diving Instruction +scuba_diving_instruction,active_life > sports_and_fitness_instruction > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,Scuba Diving Instruction +aerial_fitness_center,active_life > sports_and_fitness_instruction > aerial_fitness_center,aerial_fitness_center,sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,Aerial Fitness Center +barre_classes,active_life > sports_and_fitness_instruction > barre_classes,barre_class,sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,Barre Class +boot_camp,active_life > sports_and_fitness_instruction > boot_camp,boot_camp,sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,Boot Camp +pilates_studio,active_life > sports_and_fitness_instruction > pilates_studio,pilates_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,Pilates Studio +qi_gong_studio,active_life > sports_and_fitness_instruction > qi_gong_studio,qi_gong_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,Qi Gong Studio +tai_chi_studio,active_life > sports_and_fitness_instruction > tai_chi_studio,tai_chi_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,Tai Chi Studio +yoga_studio,active_life > sports_and_fitness_instruction > yoga_studio,yoga_studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,Yoga Studio +fitness_trainer,active_life > sports_and_fitness_instruction > fitness_trainer,fitness_trainer,sports_and_recreation > sport_or_fitness_facility > fitness_trainer,Fitness Trainer +flyboarding_center,active_life > sports_and_recreation_venue > flyboarding_center,flyboarding_center,sports_and_recreation > sport_or_fitness_facility > flyboarding_center,Flyboarding Center +flyboarding_rental,attractions_and_activities > flyboarding_rental,flyboarding_rental,sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,Flyboarding Rental +golf_course,active_life > sports_and_recreation_venue > golf_course,golf_course,sports_and_recreation > sport_or_fitness_facility > golf_course,Golf Course +driving_range,active_life > sports_and_recreation_venue > golf_course > driving_range,driving_range,sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,Driving Range +golf_instructor,active_life > sports_and_fitness_instruction > golf_instructor,golf_instructor,sports_and_recreation > sport_or_fitness_facility > golf_instructor,Golf Instructor +gym,active_life > sports_and_recreation_venue > gym,gym,sports_and_recreation > sport_or_fitness_facility > gym,Gym +gymnastics_center,active_life > sports_and_recreation_venue > gymnastics_center,gymnastics_center,sports_and_recreation > sport_or_fitness_facility > gymnastics_center,Gymnastics Center +hang_gliding_center,active_life > sports_and_recreation_venue > hang_gliding_center,hang_gliding_center,sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,Hang Gliding Center +horse_riding,active_life > sports_and_recreation_venue > horse_riding,horse_riding,sports_and_recreation > sport_or_fitness_facility > horse_riding,Horse Riding +equestrian_facility,active_life > sports_and_recreation_venue > horse_riding > equestrian_facility,equestrian_facility,sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,Equestrian Facility +horseback_riding_service,attractions_and_activities > horseback_riding_service,horseback_riding_service,sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,Horseback Riding Service +indoor_playcenter,arts_and_entertainment > indoor_playcenter,indoor_playcenter,sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,Indoor Playcenter +kiteboarding,active_life > sports_and_recreation_venue > kiteboarding,kiteboarding,sports_and_recreation > sport_or_fitness_facility > kiteboarding,Kiteboarding +kiteboarding_instruction,attractions_and_activities > kiteboarding_instruction,kiteboarding_instruction,sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,Kiteboarding Instruction +laser_tag,arts_and_entertainment > laser_tag,laser_tag,sports_and_recreation > sport_or_fitness_facility > laser_tag,Laser Tag +miniature_golf_course,active_life > sports_and_recreation_venue > miniature_golf_course,miniature_golf_course,sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,Miniature Golf Course +paddleboarding_center,active_life > sports_and_recreation_venue > paddleboarding_center,paddleboarding_center,sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,Paddleboarding Center +paddleboarding_lessons,active_life > sports_and_fitness_instruction > paddleboarding_lessons,paddleboarding_lessons,sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,Paddleboarding Lessons +paintball,arts_and_entertainment > paintball,paintball,sports_and_recreation > sport_or_fitness_facility > paintball,Paintball +parasailing_ride_service,attractions_and_activities > parasailing_ride_service,parasailing_ride_service,sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,Parasailing Ride Service +pool_billiards,active_life > sports_and_recreation_venue > pool_billiards,pool_billiards,sports_and_recreation > sport_or_fitness_facility > pool_billiards,Pool Billiards +pool_hall,active_life > sports_and_recreation_venue > pool_billiards > pool_hall,pool_hall,sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,Pool Hall +race_track,active_life > sports_and_recreation_venue > race_track,race_track,sports_and_recreation > sport_or_fitness_facility > race_track,Race Track +go_kart_track,attractions_and_activities > go_kart_track,go_kart_track,sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,Go Kart Track +horse_racing_track,active_life > sports_and_recreation_venue > horse_riding > horse_racing_track,horse_racing_track,sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,Horse Racing Track +racing_experience,active_life > sports_and_fitness_instruction > racing_experience,racing_experience,sports_and_recreation > sport_or_fitness_facility > racing_experience,Racing Experience +rock_climbing_gym,active_life > sports_and_recreation_venue > rock_climbing_gym,rock_climbing_gym,sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,Rock Climbing Gym +rock_climbing_instructor,active_life > sports_and_fitness_instruction > rock_climbing_instructor,rock_climbing_instructor,sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,Rock Climbing Instructor +self_defense_classes,active_life > sports_and_fitness_instruction > self_defense_classes,self_defense_class,sports_and_recreation > sport_or_fitness_facility > self_defense_class,Self Defense Class +shooting_range,active_life > sports_and_recreation_venue > shooting_range,shooting_range,sports_and_recreation > sport_or_fitness_facility > shooting_range,Shooting Range +archery_range,active_life > sports_and_recreation_venue > archery_range,archery_range,sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,Archery Range +skate_park,active_life > sports_and_recreation_venue > skate_park,skate_park,sports_and_recreation > sport_or_fitness_facility > skate_park,Skate Park +skating_rink,active_life > sports_and_recreation_venue > skating_rink,skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,Skating Rink +ice_skating_rink,active_life > sports_and_recreation_venue > skating_rink > ice_skating_rink,ice_skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,Ice Skating Rink +roller_skating_rink,active_life > sports_and_recreation_venue > skating_rink > roller_skating_rink,roller_skating_rink,sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,Roller Skating Rink +ski_and_snowboard_school,active_life > sports_and_fitness_instruction > ski_and_snowboard_school,ski_and_snowboard_school,sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,Ski and Snowboard School +sky_diving,active_life > sports_and_recreation_venue > sky_diving,sky_diving,sports_and_recreation > sport_or_fitness_facility > sky_diving,Sky Diving +bobsledding_field,attractions_and_activities > bobsledding_field,bobsledding_field,sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,Bobsledding Field +ski_area,attractions_and_activities > ski_area,ski_area,sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,Ski Area +snowboarding_center,attractions_and_activities > snowboarding_center,snowboarding_center,sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,Snowboarding Center +badminton_court,active_life > sports_and_recreation_venue > badminton_court,badminton_court,sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,Badminton Court +basketball_court,active_life > sports_and_recreation_venue > basketball_court,basketball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,Basketball Court +beach_volleyball_court,active_life > sports_and_recreation_venue > beach_volleyball_court,beach_volleyball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,Beach Volleyball Court +bocce_ball_court,active_life > sports_and_recreation_venue > bocce_ball_court,bocce_ball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,Bocce Ball Court +handball_court,active_life > sports_and_recreation_venue > handball_court,handball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,Handball Court +racquetball_court,active_life > sports_and_recreation_venue > racquetball_court,racquetball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,Racquetball Court +squash_court,active_life > sports_and_recreation_venue > squash_court,squash_court,sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,Squash Court +tennis_court,active_life > sports_and_recreation_venue > tennis_court,tennis_court,sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,Tennis Court +volleyball_court,active_life > sports_and_recreation_venue > volleyball_court,volleyball_court,sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,Volleyball Court +airsoft_fields,active_life > sports_and_recreation_venue > airsoft_fields,airsoft_field,sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,Airsoft Field +american_football_field,active_life > sports_and_recreation_venue > american_football_field,american_football_field,sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,American Football Field +baseball_field,active_life > sports_and_recreation_venue > baseball_field,baseball_field,sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,Baseball Field +disc_golf_course,active_life > sports_and_recreation_venue > disc_golf_course,disc_golf_course,sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,Disc Golf Course +futsal_field,active_life > sports_and_recreation_venue > futsal_field,futsal_field,sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,Futsal Field +hockey_field,active_life > sports_and_recreation_venue > hockey_field,hockey_field,sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,Hockey Field +rugby_pitch,active_life > sports_and_recreation_venue > rugby_pitch,rugby_pitch,sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,Rugby Pitch +soccer_field,active_life > sports_and_recreation_venue > soccer_field,soccer_field,sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,Soccer Field +surfing_school,active_life > sports_and_fitness_instruction > surfing_school,surfing_school,sports_and_recreation > sport_or_fitness_facility > surfing_school,Surfing School +swimming_pool,active_life > sports_and_recreation_venue > swimming_pool,swimming_pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,Swimming Pool +swimming_instructor,active_life > sports_and_fitness_instruction > swimming_instructor,swimming_instructor,sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,Swimming Instructor +trampoline_park,active_life > sports_and_recreation_venue > trampoline_park,trampoline_park,sports_and_recreation > sport_or_fitness_facility > trampoline_park,Trampoline Park +tubing_provider,active_life > sports_and_recreation_venue > tubing_provider,tubing_provider,sports_and_recreation > sport_or_fitness_facility > tubing_provider,Tubing Provider +boating_places,attractions_and_activities > boating_places,boating_place,sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,Boating Place +fishing_charter,attractions_and_activities > fishing_charter,fishing_charter,sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,Fishing Charter +rafting_kayaking_area,attractions_and_activities > rafting_kayaking_area,rafting_kayaking_area,sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,Rafting Kayaking Area +sailing_area,attractions_and_activities > sailing_area,sailing_area,sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,Sailing Area +snorkeling,attractions_and_activities > snorkeling,snorkeling,sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,Snorkeling +surfing,attractions_and_activities > surfing,surfing,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,Surfing +windsurfing_center,attractions_and_activities > surfing > windsurfing_center,windsurfing_center,sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,Windsurfing Center +wildlife_hunting_range,active_life > sports_and_recreation_venue > wildlife_hunting_range,wildlife_hunting_range,sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,Wildlife Hunting Range +sports_club_and_league,active_life > sports_club_and_league,sport_or_recreation_club,sports_and_recreation > sport_or_recreation_club,Sport or Recreation Club +beach_volleyball_club,active_life > sports_club_and_league > beach_volleyball_club,beach_volleyball_club,sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,Beach Volleyball Club +fencing_club,active_life > sports_club_and_league > fencing_club,fencing_club,sports_and_recreation > sport_or_recreation_club > fencing_club,Fencing Club +fishing_club,active_life > sports_club_and_league > fishing_club,fishing_club,sports_and_recreation > sport_or_recreation_club > fishing_club,Fishing Club +football_club,active_life > sports_club_and_league > football_club,football_club,sports_and_recreation > sport_or_recreation_club > football_club,Football Club +go_kart_club,active_life > sports_club_and_league > go_kart_club,go_kart_club,sports_and_recreation > sport_or_recreation_club > go_kart_club,Go Kart Club +golf_club,active_life > sports_club_and_league > golf_club,golf_club,sports_and_recreation > sport_or_recreation_club > golf_club,Golf Club +indoor_golf_center,active_life > sports_club_and_league > golf_club > indoor_golf_center,indoor_golf_center,sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,Indoor Golf Center +gymnastics_club,active_life > sports_club_and_league > gymnastics_club,gymnastics_club,sports_and_recreation > sport_or_recreation_club > gymnastics_club,Gymnastics Club +lawn_bowling_club,active_life > sports_club_and_league > lawn_bowling_club,lawn_bowling_club,sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,Lawn Bowling Club +martial_arts_club,active_life > sports_club_and_league > martial_arts_club,martial_arts_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club,Martial Arts Club +brazilian_jiu_jitsu_club,active_life > sports_club_and_league > martial_arts_club > 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 +chinese_martial_arts_club,active_life > sports_club_and_league > martial_arts_club > 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 +karate_club,active_life > sports_club_and_league > martial_arts_club > karate_club,karate_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,Karate Club +kickboxing_club,active_life > sports_club_and_league > martial_arts_club > kickboxing_club,kickboxing_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,Kickboxing Club +muay_thai_club,active_life > sports_club_and_league > martial_arts_club > muay_thai_club,muay_thai_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,Muay Thai Club +taekwondo_club,active_life > sports_club_and_league > martial_arts_club > taekwondo_club,taekwondo_club,sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,Taekwondo Club +nudist_clubs,active_life > sports_club_and_league > nudist_clubs,naturist_club,sports_and_recreation > sport_or_recreation_club > naturist_club,Naturist Club +paddle_tennis_club,active_life > sports_club_and_league > paddle_tennis_club,paddle_tennis_club,sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,Paddle Tennis Club +rowing_club,active_life > sports_club_and_league > rowing_club,rowing_club,sports_and_recreation > sport_or_recreation_club > rowing_club,Rowing Club +sailing_club,active_life > sports_club_and_league > sailing_club,sailing_club,sports_and_recreation > sport_or_recreation_club > sailing_club,Sailing Club +soccer_club,active_life > sports_club_and_league > soccer_club,soccer_club,sports_and_recreation > sport_or_recreation_club > soccer_club,Soccer Club +surf_lifesaving_club,active_life > sports_club_and_league > surf_lifesaving_club,surf_lifesaving_club,sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,Surf Lifesaving Club +table_tennis_club,active_life > sports_club_and_league > table_tennis_club,table_tennis_club,sports_and_recreation > sport_or_recreation_club > table_tennis_club,Table Tennis Club +volleyball_club,active_life > sports_club_and_league > volleyball_club,volleyball_club,sports_and_recreation > sport_or_recreation_club > volleyball_club,Volleyball Club +amateur_sports_team,active_life > sports_club_and_league > amateur_sports_team,amateur_sport_team,sports_and_recreation > sport_team > amateur_sport_team,Amateur Sport Team +esports_team,active_life > sports_club_and_league > esports_team,esports_team,sports_and_recreation > sport_team > esports_team,Esports Team +professional_sports_team,active_life > sports_club_and_league > professional_sports_team,professional_sport_team,sports_and_recreation > sport_team > professional_sport_team,Professional Sport Team +school_sports_team,active_life > sports_club_and_league > school_sports_team,school_sport_team,sports_and_recreation > sport_team > school_sport_team,School Sport Team +transportation,travel > transportation,travel_and_transportation,travel_and_transportation,Travel and Transportation +aircraft_parts_and_supplies,automotive > aircraft_parts_and_supplies,aircraft_parts_and_supplies,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies,Aircraft Parts and Supplies +avionics_shop,automotive > aircraft_parts_and_supplies > avionics_shop,avionics_shop,travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,Avionics Shop +airline,business_to_business > business > airline,airline,travel_and_transportation > air_transport_facility_or_service > airline,Airline +airline_ticket_agency,travel > airline_ticket_agency,airline_ticket_agency,travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,Airline Ticket Agency +airport,travel > airport,airport,travel_and_transportation > air_transport_facility_or_service > airport,Airport +airport_terminal,travel > airport > airport_terminal,airport_terminal,travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,Airport Terminal +balloon_ports,travel > airport > balloon_ports,balloon_port,travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,Balloon Port +gliderports,travel > airport > gliderports,glider_port,travel_and_transportation > air_transport_facility_or_service > airport > glider_port,Glider Port +heliports,travel > airport > heliports,heliport,travel_and_transportation > air_transport_facility_or_service > airport > heliport,Heliport +seaplane_bases,travel > airport > seaplane_bases,seaplane_base,travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,Seaplane Base +ultralight_airports,travel > airport > ultralight_airports,ultralight_airport,travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,Ultralight Airport +airport_shuttles,travel > transportation > airport_shuttles,airport_shuttle,travel_and_transportation > air_transport_facility_or_service > airport_shuttle,Airport Shuttle +private_jet_charters,travel > transportation > private_jet_charters,private_jet_charter,travel_and_transportation > air_transport_facility_or_service > private_jet_charter,Private Jet Charter +ev_charging_station,automotive > electric_vehicle_charging_station,ev_charging_station,travel_and_transportation > fueling_station > ev_charging_station,EV Charging Station +gas_station,automotive > gas_station,gas_station,travel_and_transportation > fueling_station > gas_station,Gas Station +fuel_dock,automotive > gas_station > fuel_dock,fuel_dock,travel_and_transportation > fueling_station > gas_station > fuel_dock,Fuel Dock +truck_gas_station,automotive > gas_station > truck_gas_station,truck_gas_station,travel_and_transportation > fueling_station > gas_station > truck_gas_station,Truck Gas Station +bicycle_sharing_location,travel > transportation > bicycle_sharing_location,bike_sharing_location,travel_and_transportation > ground_transport_facility_or_service > bikes_and_bike_service > bike_sharing_location,Bike Sharing Location +public_transportation,travel > transportation > 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 +bus_station,travel > transportation > bus_station,bus_station,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,Bus Station +bus_ticket_agency,travel > 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 +cable_car_service,travel > transportation > 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 +coach_bus,travel > transportation > coach_bus,coach_bus,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,Coach Bus +light_rail_and_subway_stations,travel > transportation > 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 +metro_station,travel > transportation > metro_station,metro_station,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,Metro Station +railway_service,public_service_and_government > 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,travel > railway_ticket_agent,railway_ticket_agent,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,Railway Ticket Agent +trains,travel > transportation > trains,train,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,Train +train_station,travel > transportation > trains > train_station,train_station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,Train Station +road_structures_and_services,travel > road_structures_and_services,road_structures_and_service,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,Road Structures and Service +rest_stop,travel > rest_stop,rest_stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,Rest Stop +toll_stations,travel > road_structures_and_services > toll_stations,toll_station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,Toll Station +truck_stop,automotive > truck_stop,truck_stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,Truck Stop +car_sharing,travel > transportation > car_sharing,car_sharing,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,Car Sharing +limo_services,travel > transportation > limo_services,limo_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,Limo Service +pedicab_service,travel > transportation > pedicab_service,pedicab_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,Pedicab Service +ride_sharing,travel > transportation > ride_sharing,ride_share_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,Ride Share Service +taxi_service,travel > transportation > taxi_service,taxi_service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,Taxi Service +taxi_rank,travel > transportation > taxi_rank,taxi_stand,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,Taxi Stand +town_car_service,travel > transportation > 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 +parking,travel > transportation > parking,parking,travel_and_transportation > parking,Parking +bike_parking,travel > transportation > bike_parking,bike_parking,travel_and_transportation > parking > bike_parking,Bike Parking +motorcycle_parking,travel > transportation > motorcycle_parking,motorcycle_parking,travel_and_transportation > parking > motorcycle_parking,Motorcycle Parking +park_and_rides,travel > transportation > park_and_rides,park_and_ride,travel_and_transportation > parking > park_and_ride,Park and Ride +transport_interchange,travel > transportation > transport_interchange,transport_interchange,travel_and_transportation > transport_interchange,Transport Interchange +travel_services,travel > travel_services,travel_service,travel_and_transportation > travel_service,Travel Service +agriturismo,travel > agriturismo,agritourism,travel_and_transportation > travel_service > agritourism,Agritourism +luggage_storage,travel > travel_services > luggage_storage,luggage_storage,travel_and_transportation > travel_service > luggage_storage,Luggage Storage +passport_and_visa_services,travel > travel_services > passport_and_visa_services,passport_and_visa_service,travel_and_transportation > travel_service > passport_and_visa_service,Passport and Visa Service +visa_agent,travel > travel_services > passport_and_visa_services > visa_agent,visa_agent,travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,Visa Agent +tours,travel > tours,tour_operator,travel_and_transportation > travel_service > tour_operator,Tour Operator +aerial_tours,travel > tours > aerial_tours,aerial_tour,travel_and_transportation > travel_service > tour_operator > aerial_tour,Aerial Tour +architectural_tours,travel > tours > architectural_tours,architectural_tour,travel_and_transportation > travel_service > tour_operator > architectural_tour,Architectural Tour +art_tours,travel > tours > art_tours,art_tour,travel_and_transportation > travel_service > tour_operator > art_tour,Art Tour +beer_tours,travel > tours > beer_tours,beer_tour,travel_and_transportation > travel_service > tour_operator > beer_tour,Beer Tour +bike_tours,travel > tours > bike_tours,bike_tour,travel_and_transportation > travel_service > tour_operator > bike_tour,Bike Tour +boat_tours,travel > tours > boat_tours,boat_tour,travel_and_transportation > travel_service > tour_operator > boat_tour,Boat Tour +bus_tours,travel > tours > bus_tours,bus_tour,travel_and_transportation > travel_service > tour_operator > bus_tour,Bus Tour +cannabis_tour,travel > tours > cannabis_tour,cannabis_tour,travel_and_transportation > travel_service > tour_operator > cannabis_tour,Cannabis Tour +food_tours,travel > tours > food_tours,food_tour,travel_and_transportation > travel_service > tour_operator > food_tour,Food Tour +historical_tours,travel > tours > historical_tours,historical_tour,travel_and_transportation > travel_service > tour_operator > historical_tour,Historical Tour +hot_air_balloons_tour,attractions_and_activities > hot_air_balloons_tour,hot_air_balloons_tour,travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,Hot Air Balloons Tour +scooter_tours,travel > tours > scooter_tours,scooter_tour,travel_and_transportation > travel_service > tour_operator > scooter_tour,Scooter Tour +sightseeing_tour_agency,travel > travel_services > travel_agents > sightseeing_tour_agency,sightseeing_tour_agency,travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,Sightseeing Tour Agency +walking_tours,travel > tours > walking_tours,walking_tour,travel_and_transportation > travel_service > tour_operator > walking_tour,Walking Tour +whale_watching_tours,travel > tours > whale_watching_tours,whale_watching_tour,travel_and_transportation > travel_service > tour_operator > whale_watching_tour,Whale Watching Tour +wine_tours,travel > tours > wine_tours,wine_tour,travel_and_transportation > travel_service > tour_operator > wine_tour,Wine Tour +travel_agents,travel > travel_services > travel_agents,travel_agent,travel_and_transportation > travel_service > travel_agent,Travel Agent +vacation_rental_agents,travel > vacation_rental_agents,vacation_rental_agent,travel_and_transportation > travel_service > vacation_rental_agent,Vacation Rental Agent +visitor_center,travel > travel_services > visitor_center,visitor_center,travel_and_transportation > travel_service > visitor_center,Visitor Center +aircraft_repair,automotive > aircraft_services_and_repair,aircraft_service,travel_and_transportation > vehicle_service > aircraft_service,Aircraft Service +automotive_services_and_repair,automotive > automotive_services_and_repair,automotive_service,travel_and_transportation > vehicle_service > automotive_service,Automotive Service +auto_body_shop,automotive > automotive_services_and_repair > auto_body_shop,auto_body_shop,travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,Auto Body Shop +auto_customization,automotive > automotive_services_and_repair > auto_customization,auto_customization,travel_and_transportation > vehicle_service > automotive_service > auto_customization,Auto Customization +auto_detailing,automotive > automotive_services_and_repair > auto_detailing,auto_detailing,travel_and_transportation > vehicle_service > automotive_service > auto_detailing,Auto Detailing +auto_glass_service,automotive > automotive_services_and_repair > auto_glass_service,auto_glass_service,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,Auto Glass Service +car_window_tinting,automotive > automotive_services_and_repair > auto_glass_service > car_window_tinting,car_window_tinting,travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,Car Window Tinting +windshield_installation_and_repair,automotive > automotive_services_and_repair > 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 +auto_restoration_services,automotive > automotive_services_and_repair > auto_restoration_services,auto_restoration_service,travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,Auto Restoration Service +auto_security,automotive > automotive_services_and_repair > auto_security,auto_security,travel_and_transportation > vehicle_service > automotive_service > auto_security,Auto Security +auto_upholstery,automotive > automotive_services_and_repair > auto_upholstery,auto_upholstery,travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,Auto Upholstery +automobile_registration_service,automotive > automotive_services_and_repair > automobile_registration_service,automobile_registration_service,travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,Automobile Registration Service +automotive_consultant,automotive > automotive_services_and_repair > automotive_consultant,automotive_consultant,travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,Automotive Consultant +automotive_repair,automotive > automotive_repair,automotive_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair,Automotive Repair +auto_electrical_repair,automotive > automotive_services_and_repair > auto_electrical_repair,auto_electrical_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,Auto Electrical Repair +brake_service_and_repair,automotive > automotive_services_and_repair > 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 +diy_auto_shop,automotive > automotive_services_and_repair > diy_auto_shop,diy_auto_shop,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,DIY Auto Shop +engine_repair_service,automotive > automotive_services_and_repair > engine_repair_service,engine_repair_service,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,Engine Repair Service +exhaust_and_muffler_repair,automotive > automotive_services_and_repair > 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 +hybrid_car_repair,automotive > automotive_services_and_repair > hybrid_car_repair,hybrid_car_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,Hybrid Car Repair +motorsport_vehicle_repair,automotive > automotive_services_and_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,Motorsport Vehicle Repair +tire_dealer_and_repair,automotive > automotive_services_and_repair > 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 +trailer_repair,automotive > automotive_services_and_repair > trailer_repair,trailer_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,Trailer Repair +transmission_repair,automotive > automotive_services_and_repair > transmission_repair,transmission_repair,travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,Transmission Repair +wheel_and_rim_repair,automotive > automotive_services_and_repair > 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 +automotive_wheel_polishing_service,automotive > automotive_services_and_repair > automotive_wheel_polishing_service,automotive_wheel_polishing_service,travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,Automotive Wheel Polishing Service +car_buyer,automotive > car_buyer,car_buyer,travel_and_transportation > vehicle_service > automotive_service > car_buyer,Car Buyer +car_inspection,automotive > automotive_services_and_repair > car_inspection,car_inspection,travel_and_transportation > vehicle_service > automotive_service > car_inspection,Car Inspection +car_stereo_installation,automotive > automotive_services_and_repair > car_stereo_installation,car_stereo_installation,travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,Car Stereo Installation +car_wash,automotive > automotive_services_and_repair > car_wash,car_wash,travel_and_transportation > vehicle_service > automotive_service > car_wash,Car Wash +emergency_roadside_service,automotive > automotive_services_and_repair > roadside_assistance > emergency_roadside_service,emergency_roadside_service,travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,Emergency Roadside Service +emissions_inspection,automotive > automotive_services_and_repair > emissions_inspection,emissions_inspection,travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,Emissions Inspection +oil_change_station,automotive > automotive_services_and_repair > oil_change_station,oil_change_station,travel_and_transportation > vehicle_service > automotive_service > oil_change_station,Oil Change Station +tire_shop,retail > tire_shop,tire_shop,travel_and_transportation > vehicle_service > automotive_service > tire_shop,Tire Shop +towing_service,automotive > automotive_services_and_repair > towing_service,towing_service,travel_and_transportation > vehicle_service > automotive_service > towing_service,Towing Service +truck_repair,automotive > automotive_services_and_repair > truck_repair,truck_repair,travel_and_transportation > vehicle_service > automotive_service > truck_repair,Truck Repair +vehicle_wrap,automotive > automotive_services_and_repair > vehicle_wrap,vehicle_wrap,travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,Vehicle Wrap +boat_service_and_repair,automotive > boat_service_and_repair,boat_service,travel_and_transportation > vehicle_service > boat_service,Boat Service +mooring_service,professional_services > mooring_service,mooring_service,travel_and_transportation > vehicle_service > boat_service > mooring_service,Mooring Service +delegated_driver_service,professional_services > delegated_driver_service,delegated_driver_service,travel_and_transportation > vehicle_service > delegated_driver_service,Delegated Driver Service +motorcycle_repair,automotive > automotive_services_and_repair > motorcycle_repair,motorcycle_repair,travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,Motorcycle Repair +recreation_vehicle_repair,automotive > automotive_services_and_repair > recreation_vehicle_repair,recreation_vehicle_repair,travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,Recreation Vehicle Repair +roadside_assistance,automotive > automotive_services_and_repair > roadside_assistance,roadside_assistance,travel_and_transportation > vehicle_service > roadside_assistance,Roadside Assistance +mobile_dent_repair,automotive > automotive_services_and_repair > roadside_assistance > mobile_dent_repair,mobile_dent_repair,travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,Mobile Dent Repair +ferry_service,travel > transportation > ferry_service,ferry_service,travel_and_transportation > water_transport_facility_or_service > ferry_service,Ferry Service +water_taxi,travel > transportation > water_taxi,water_taxi_service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,Water Taxi Service diff --git a/static/taxonomy/2026-09-16.0/taxonomy.csv b/static/taxonomy/2026-09-16.0/taxonomy.csv new file mode 100644 index 000000000..b35423185 --- /dev/null +++ b/static/taxonomy/2026-09-16.0/taxonomy.csv @@ -0,0 +1,2303 @@ +path,name,displayName,level,group,isBasic,basicCategory,count +arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,0,arts_and_entertainment,true,arts_and_entertainment, +arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,1,arts_and_entertainment,true,amusement_attraction, +arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,2,arts_and_entertainment,true,amusement_park, +arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,2,arts_and_entertainment,false,amusement_attraction, +arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,2,arts_and_entertainment,false,amusement_attraction, +arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,2,arts_and_entertainment,false,amusement_attraction, +arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,2,arts_and_entertainment,false,amusement_attraction, +arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,1,arts_and_entertainment,true,animal_attraction, +arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,2,arts_and_entertainment,true,aquarium, +arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,2,arts_and_entertainment,false,animal_attraction, +arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,2,arts_and_entertainment,true,zoo, +arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,3,arts_and_entertainment,false,zoo, +arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,3,arts_and_entertainment,false,zoo, +arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,1,arts_and_entertainment,true,arts_and_crafts_space, +arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,2,arts_and_entertainment,true,art_gallery, +arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,2,arts_and_entertainment,false,arts_and_crafts_space, +arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,2,arts_and_entertainment,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,arts_and_entertainment,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,arts_and_entertainment,false,arts_and_crafts_space, +arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,2,arts_and_entertainment,false,arts_and_crafts_space, +arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,2,arts_and_entertainment,true,sculpture_statue, +arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,2,arts_and_entertainment,true,street_art, +arts_and_entertainment > event_venue,event_venue,Event Venue,1,arts_and_entertainment,true,event_venue, +arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,2,arts_and_entertainment,false,event_venue, +arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,2,arts_and_entertainment,false,event_venue, +arts_and_entertainment > festival_venue,festival_venue,Festival Venue,1,arts_and_entertainment,true,festival_venue, +arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,2,arts_and_entertainment,true,fairgrounds, +arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,2,arts_and_entertainment,false,festival_venue, +arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,2,arts_and_entertainment,false,festival_venue, +arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,1,arts_and_entertainment,true,gaming_venue, +arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,2,arts_and_entertainment,true,arcade, +arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,2,arts_and_entertainment,false,gaming_venue, +arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,2,arts_and_entertainment,false,gaming_venue, +arts_and_entertainment > gaming_venue > casino,casino,Casino,2,arts_and_entertainment,true,casino, +arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,2,arts_and_entertainment,false,gaming_venue, +arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,2,arts_and_entertainment,false,gaming_venue, +arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,2,arts_and_entertainment,false,gaming_venue, +arts_and_entertainment > movie_theater,movie_theater,Movie Theater,1,arts_and_entertainment,true,movie_theater, +arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive-In Theater,2,arts_and_entertainment,false,movie_theater, +arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,2,arts_and_entertainment,false,movie_theater, +arts_and_entertainment > museum,museum,Museum,1,arts_and_entertainment,true,museum, +arts_and_entertainment > museum > art_museum,art_museum,Art Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > history_museum,history_museum,History Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > military_museum,military_museum,Military Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > national_museum,national_museum,National Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > science_museum,science_museum,Science Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,3,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > museum > state_museum,state_museum,State Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,1,arts_and_entertainment,true,nightlife_venue, +arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,2,arts_and_entertainment,true,adult_entertainment_venue, +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,3,arts_and_entertainment,false,adult_entertainment_venue, +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,3,arts_and_entertainment,false,adult_entertainment_venue, +arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,2,arts_and_entertainment,false,nightlife_venue, +arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,2,arts_and_entertainment,false,nightlife_venue, +arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,2,arts_and_entertainment,true,dance_club, +arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,3,arts_and_entertainment,false,dance_club, +arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,1,arts_and_entertainment,true,performing_arts_venue, +arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,2,arts_and_entertainment,false,performing_arts_venue, +arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,2,arts_and_entertainment,false,performing_arts_venue, +arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,2,arts_and_entertainment,true,comedy_club, +arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,2,arts_and_entertainment,true,music_venue, +arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,3,arts_and_entertainment,false,music_venue, +arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,3,arts_and_entertainment,false,music_venue, +arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,3,arts_and_entertainment,false,music_venue, +arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,3,arts_and_entertainment,false,music_venue, +arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,3,arts_and_entertainment,false,music_venue, +arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,2,arts_and_entertainment,true,theatre_venue, +arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,3,arts_and_entertainment,false,theatre_venue, +arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,1,arts_and_entertainment,true,rural_attraction, +arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,2,arts_and_entertainment,false,rural_attraction, +arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,2,arts_and_entertainment,false,rural_attraction, +arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,2,arts_and_entertainment,false,rural_attraction, +arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,2,arts_and_entertainment,false,rural_attraction, +arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,2,arts_and_entertainment,true,rodeo, +arts_and_entertainment > science_attraction,science_attraction,Science Attraction,1,arts_and_entertainment,true,science_attraction, +arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,2,arts_and_entertainment,true,makerspace, +arts_and_entertainment > science_attraction > observatory,observatory,Observatory,2,arts_and_entertainment,false,science_attraction, +arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,2,arts_and_entertainment,true,planetarium, +arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,2,arts_and_entertainment,false,science_attraction, +arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,3,arts_and_entertainment,false,science_attraction, +arts_and_entertainment > social_club,social_club,Social Club,1,arts_and_entertainment,true,social_club, +arts_and_entertainment > social_club > country_club,country_club,Country Club,2,arts_and_entertainment,true,country_club, +arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,2,arts_and_entertainment,false,social_club, +arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,2,arts_and_entertainment,false,social_club, +arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,1,arts_and_entertainment,true,spiritual_advising, +arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,2,arts_and_entertainment,true,astrological_advising, +arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,2,arts_and_entertainment,false,spiritual_advising, +arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,2,arts_and_entertainment,true,psychic_advising, +arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,1,arts_and_entertainment,true,stadium_arena, +arts_and_entertainment > stadium_arena > arena,arena,Arena,2,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,2,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,3,arts_and_entertainment,false,stadium_arena, +arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,1,arts_and_entertainment,true,ticket_office_or_booth, +community_and_government,community_and_government,Community and Government,0,community_and_government,true,community_and_government, +community_and_government > civic_organization,civic_organization,Civic Organization,1,community_and_government,true,civic_organization, +community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,2,community_and_government,false,civic_organization, +community_and_government > civic_organization > civic_center,civic_center,Civic Center,2,community_and_government,true,civic_center, +community_and_government > civic_organization > labor_union,labor_union,Labor Union,2,community_and_government,true,labor_union, +community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,2,community_and_government,false,civic_organization, +community_and_government > civic_organization > political_organization,political_organization,Political Organization,2,community_and_government,true,political_organization, +community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,3,community_and_government,false,political_organization, +community_and_government > government_office,government_office,Government Office,1,community_and_government,true,government_office, +community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,2,community_and_government,false,government_office, +community_and_government > government_office > courthouse,courthouse,Courthouse,2,community_and_government,true,courthouse, +community_and_government > government_office > embassy,embassy,Embassy,2,community_and_government,true,embassy, +community_and_government > government_office > government_department,government_department,Government Department,2,community_and_government,true,government_department, +community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,3,community_and_government,false,government_department, +community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,3,community_and_government,false,government_department, +community_and_government > government_office > government_department > health_department,health_department,Health Department,3,community_and_government,false,government_department, +community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,2,community_and_government,false,government_office, +community_and_government > government_office > national_security_service,national_security_service,National Security Service,2,community_and_government,false,government_office, +community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,2,community_and_government,false,government_office, +community_and_government > government_office > pension_office,pension_office,Pension Office,2,community_and_government,false,government_office, +community_and_government > government_office > registry_office,registry_office,Registry Office,2,community_and_government,false,government_office, +community_and_government > government_office > social_security_service,social_security_service,Social Security Service,2,community_and_government,false,government_office, +community_and_government > government_office > tax_office,tax_office,Tax Office,2,community_and_government,false,government_office, +community_and_government > government_office > town_hall,town_hall,Town Hall,2,community_and_government,false,government_office, +community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,2,community_and_government,false,government_office, +community_and_government > military_site,military_site,Military Site,1,community_and_government,true,military_site, +community_and_government > military_site > military_base,military_base,Military Base,2,community_and_government,true,military_base, +community_and_government > military_site > military_office,military_office,Military Office,2,community_and_government,true,military_office, +community_and_government > public_facility,public_facility,Public Facility,1,community_and_government,true,public_facility, +community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,2,community_and_government,true,public_fountain, +community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,3,community_and_government,false,public_fountain, +community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,2,community_and_government,true,public_pathway, +community_and_government > public_facility > public_phone,public_phone,Public Phone,2,community_and_government,false,public_facility, +community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,2,community_and_government,true,public_plaza, +community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,2,community_and_government,true,public_restroom, +community_and_government > public_safety_service,public_safety_service,Public Safety Service,1,community_and_government,true,public_safety_service, +community_and_government > public_safety_service > fire_station,fire_station,Fire Station,2,community_and_government,true,fire_station, +community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,2,community_and_government,true,jail_or_prison, +community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,3,community_and_government,false,jail_or_prison, +community_and_government > public_safety_service > police_station,police_station,Police Station,2,community_and_government,true,police_station, +community_and_government > public_utility,public_utility,Public Utility,1,community_and_government,true,public_utility, +community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,2,community_and_government,true,electric_utility_provider, +community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,2,community_and_government,false,public_utility, +community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,2,community_and_government,true,natural_gas_utility_provider, +community_and_government > public_utility > septic_service,septic_service,Septic Service,2,community_and_government,false,public_utility, +community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,2,community_and_government,true,water_utility_provider, +community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,1,community_and_government,true,social_or_community_service, +community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > community_center,community_center,Community Center,2,community_and_government,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,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,2,community_and_government,true,food_bank, +community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,2,community_and_government,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,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,2,community_and_government,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,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,2,community_and_government,false,social_or_community_service, +community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,2,community_and_government,true,youth_organization, +cultural_and_historic,cultural_and_historic,Cultural and Historic,0,cultural_and_historic,true,cultural_and_historic, +cultural_and_historic > cultural_center,cultural_center,Cultural Center,1,cultural_and_historic,true,cultural_center, +cultural_and_historic > historic_site,historic_site,Historic Site,1,cultural_and_historic,true,historic_site, +cultural_and_historic > historic_site > castle,castle,Castle,2,cultural_and_historic,true,castle, +cultural_and_historic > historic_site > fort,fort,Fort,2,cultural_and_historic,true,fort, +cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,2,cultural_and_historic,false,historic_site, +cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,2,cultural_and_historic,false,historic_site, +cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,2,cultural_and_historic,true,lighthouse, +cultural_and_historic > historic_site > palace,palace,Palace,2,cultural_and_historic,false,historic_site, +cultural_and_historic > historic_site > ruin,ruin,Ruin,2,cultural_and_historic,false,historic_site, +cultural_and_historic > memorial_site,memorial_site,Memorial Site,1,cultural_and_historic,true,memorial_site, +cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,2,cultural_and_historic,true,cemetery, +cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,2,cultural_and_historic,false,memorial_site, +cultural_and_historic > memorial_site > monument,monument,Monument,2,cultural_and_historic,true,monument, +cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,1,cultural_and_historic,true,place_of_worship, +cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,2,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,buddhist_place_of_worship, +cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,2,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship, +cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,2,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,hindu_place_of_worship, +cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,2,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,jewish_place_of_worship, +cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,2,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,muslim_place_of_worship, +cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,2,cultural_and_historic,false,place_of_worship, +cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,1,cultural_and_historic,true,religious_landmark, +cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,2,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,Christian Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,Hindu Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > shrine,shrine,Shrine,2,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_organization,religious_organization,Religious Organization,1,cultural_and_historic,true,religious_organization, +cultural_and_historic > religious_organization > convent,convent,Convent,2,cultural_and_historic,false,religious_organization, +cultural_and_historic > religious_organization > monastery,monastery,Monastery,2,cultural_and_historic,false,religious_organization, +cultural_and_historic > religious_organization > seminary,seminary,Seminary,2,cultural_and_historic,false,religious_organization, +cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center,Religious Retreat or Center,1,cultural_and_historic,true,religious_retreat_or_center, +cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,2,cultural_and_historic,false,religious_retreat_or_center, +cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,2,cultural_and_historic,false,religious_retreat_or_center, +cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,2,cultural_and_historic,false,religious_retreat_or_center, +education,education,Education,0,education,true,education, +education > education_office,education_office,Education Office,1,education,true,education_office, +education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,2,education,false,education_office, +education > education_office > school_district_office,school_district_office,School District Office,2,education,true,school_district_office, +education > educational_facility,educational_facility,Educational Facility,1,education,true,educational_facility, +education > educational_facility > campus,campus,Campus,2,education,true,campus, +education > educational_facility > campus_building,campus_building,Campus Building,2,education,true,campus_building, +education > educational_facility > campus_building > student_union,student_union,Student Union,3,education,false,campus_building, +education > educational_facility > educational_camp,educational_camp,Educational Camp,2,education,false,educational_facility, +education > educational_service,educational_service,Educational Service,1,education,true,educational_service, +education > educational_service > after_school_program,after_school_program,After School Program,2,education,false,educational_service, +education > educational_service > archaeological_service,archaeological_service,Archaeological Service,2,education,false,educational_service, +education > educational_service > college_counseling,college_counseling,College Counseling,2,education,false,educational_service, +education > educational_service > test_preparation,test_preparation,Test Preparation,2,education,false,educational_service, +education > educational_service > tutoring_service,tutoring_service,Tutoring Service,2,education,true,tutoring_service, +education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,3,education,false,tutoring_service, +education > library,library,Library,1,education,true,library, +education > place_of_learning,place_of_learning,Place of Learning,1,education,true,place_of_learning, +education > place_of_learning > academy,academy,Academy,2,education,true,academy, +education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,3,education,false,academy, +education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,2,education,false,place_of_learning, +education > place_of_learning > class_venue,class_venue,Class Venue,2,education,true,class_venue, +education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,3,education,false,class_venue, +education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,4,education,false,class_venue, +education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,4,education,false,class_venue, +education > place_of_learning > college_university,college_university,College University,2,education,true,college_university, +education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,3,education,false,college_university, +education > place_of_learning > college_university > business_school,business_school,Business School,3,education,false,college_university, +education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,3,education,false,college_university, +education > place_of_learning > college_university > law_school,law_school,Law School,3,education,false,college_university, +education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,3,education,false,college_university, +education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,4,education,false,college_university, +education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,4,education,false,college_university, +education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,4,education,false,college_university, +education > place_of_learning > college_university > science_school,science_school,Science School,3,education,false,college_university, +education > place_of_learning > school,school,School,2,education,false,place_of_learning, +education > place_of_learning > school > charter_school,charter_school,Charter School,3,education,false,place_of_learning, +education > place_of_learning > school > elementary_school,elementary_school,Elementary School,3,education,true,elementary_school, +education > place_of_learning > school > high_school,high_school,High School,3,education,true,high_school, +education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,3,education,true,kindergarten, +education > place_of_learning > school > middle_school,middle_school,Middle School,3,education,true,middle_school, +education > place_of_learning > school > montessori_school,montessori_school,Montessori School,3,education,false,place_of_learning, +education > place_of_learning > school > preschool,preschool,Preschool,3,education,true,preschool, +education > place_of_learning > school > private_school,private_school,Private School,3,education,false,place_of_learning, +education > place_of_learning > school > public_school,public_school,Public School,3,education,false,place_of_learning, +education > place_of_learning > school > religious_school,religious_school,Religious School,3,education,false,place_of_learning, +education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,3,education,false,place_of_learning, +education > place_of_learning > specialty_school,specialty_school,Specialty School,2,education,true,specialty_school, +education > place_of_learning > specialty_school > art_school,art_school,Art School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,3,education,false,specialty_school, +education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,3,education,false,specialty_school, +education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,3,education,false,specialty_school, +education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,3,education,false,specialty_school, +education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,3,education,false,specialty_school, +education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,3,education,false,specialty_school, +education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,3,education,false,specialty_school, +education > place_of_learning > specialty_school > language_school,language_school,Language School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > music_school,music_school,Music School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,3,education,false,specialty_school, +education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,3,education,false,specialty_school, +education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,3,education,false,specialty_school, +education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,3,education,false,specialty_school, +education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,3,education,false,specialty_school, +education > research_institute,research_institute,Research Institute,1,education,true,research_institute, +education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,2,education,false,research_institute, +education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,2,education,false,research_institute, +food_and_drink,food_and_drink,Food and Drink,0,food_and_drink,true,food_and_drink, +food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,1,food_and_drink,true,alcoholic_beverage_venue, +food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,2,food_and_drink,true,bar, +food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,4,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,3,food_and_drink,false,bar, +food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,2,food_and_drink,false,alcoholic_beverage_venue, +food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,2,food_and_drink,true,brewery, +food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,2,food_and_drink,false,alcoholic_beverage_venue, +food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,2,food_and_drink,true,distillery, +food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,2,food_and_drink,true,lounge, +food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,3,food_and_drink,false,lounge, +food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,2,food_and_drink,true,winery, +food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,3,food_and_drink,false,winery, +food_and_drink > casual_eatery,casual_eatery,Casual Eatery,1,food_and_drink,true,casual_eatery, +food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bakery,bakery,Bakery,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bistro,bistro,Bistro,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > cafe,cafe,Cafe,2,food_and_drink,true,cafe, +food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,3,food_and_drink,false,cafe, +food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,4,food_and_drink,false,cafe, +food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,4,food_and_drink,false,cafe, +food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,3,food_and_drink,false,cafe, +food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,3,food_and_drink,false,cafe, +food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > canteen,canteen,Canteen,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,3,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > diner,diner,Diner,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,2,food_and_drink,true,fast_food_restaurant, +food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > food_court,food_court,Food Court,2,food_and_drink,true,food_court, +food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,2,food_and_drink,true,food_truck_stand, +food_and_drink > casual_eatery > friterie,friterie,Friterie,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,2,food_and_drink,false,casual_eatery, +food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,1,food_and_drink,true,non_alcoholic_beverage_venue, +food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,2,food_and_drink,true,coffee_shop, +food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,3,food_and_drink,false,coffee_shop, +food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,2,food_and_drink,true,smoothie_juice_bar, +food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > restaurant,restaurant,Restaurant,1,food_and_drink,true,restaurant, +food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,Hyderabadi Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,North Indian Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > soul_food,soul_food,Soul Food,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,3,food_and_drink,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,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > supper_club,supper_club,Supper Club,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,2,food_and_drink,false,restaurant, +geographic_entities,geographic_entities,Geographic Entities,0,geographic_entities,true,geographic_entities, +geographic_entities > built_feature,built_feature,Built Feature,1,geographic_entities,true,built_feature, +geographic_entities > built_feature > bridge,bridge,Bridge,2,geographic_entities,true,bridge, +geographic_entities > built_feature > building,building,Building,2,geographic_entities,true,building, +geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,3,geographic_entities,false,building, +geographic_entities > built_feature > dam,dam,Dam,2,geographic_entities,true,dam, +geographic_entities > built_feature > dam > weir,weir,Weir,3,geographic_entities,false,dam, +geographic_entities > built_feature > dock,dock,Dock,2,geographic_entities,true,dock, +geographic_entities > built_feature > garden,garden,Garden,2,geographic_entities,true,garden, +geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,3,geographic_entities,false,garden, +geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,3,geographic_entities,false,garden, +geographic_entities > built_feature > lookout,lookout,Lookout,2,geographic_entities,false,built_feature, +geographic_entities > built_feature > marina,marina,Marina,2,geographic_entities,true,marina, +geographic_entities > built_feature > pier,pier,Pier,2,geographic_entities,true,pier, +geographic_entities > built_feature > quay,quay,Quay,2,geographic_entities,false,built_feature, +geographic_entities > land_feature,land_feature,Land Feature,1,geographic_entities,true,land_feature, +geographic_entities > land_feature > beach,beach,Beach,2,geographic_entities,true,beach, +geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,3,geographic_entities,false,beach, +geographic_entities > land_feature > canyon,canyon,Canyon,2,geographic_entities,true,canyon, +geographic_entities > land_feature > cave,cave,Cave,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > crater,crater,Crater,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > desert,desert,Desert,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > forest,forest,Forest,2,geographic_entities,true,forest, +geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > hill,hill,Hill,2,geographic_entities,true,hill, +geographic_entities > land_feature > island,island,Island,2,geographic_entities,true,island, +geographic_entities > land_feature > mountain,mountain,Mountain,2,geographic_entities,true,mountain, +geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,2,geographic_entities,true,nature_reserve, +geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > valley,valley,Valley,2,geographic_entities,true,valley, +geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,1,geographic_entities,true,scenic_viewpoint, +geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,2,geographic_entities,false,scenic_viewpoint, +geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,2,geographic_entities,false,scenic_viewpoint, +geographic_entities > water_feature,water_feature,Water Feature,1,geographic_entities,true,water_feature, +geographic_entities > water_feature > canal,canal,Canal,2,geographic_entities,true,canal, +geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,2,geographic_entities,true,hot_springs, +geographic_entities > water_feature > lake,lake,Lake,2,geographic_entities,true,lake, +geographic_entities > water_feature > ocean,ocean,Ocean,2,geographic_entities,true,ocean, +geographic_entities > water_feature > river,river,River,2,geographic_entities,true,river, +geographic_entities > water_feature > sea,sea,Sea,2,geographic_entities,true,sea, +geographic_entities > water_feature > waterfall,waterfall,Waterfall,2,geographic_entities,true,waterfall, +health_care,health_care,Health Care,0,health_care,true,health_care, +health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,1,health_care,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,health_care,false,emergency_or_urgent_care_facility, +health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,2,health_care,true,emergency_department, +health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,2,health_care,true,urgent_care_clinic, +health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk-In Clinic,2,health_care,true,walk_in_clinic, +health_care > hospital,hospital,Hospital,1,health_care,true,hospital, +health_care > hospital > general_hospital,general_hospital,General Hospital,2,health_care,true,general_hospital, +health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,2,health_care,true,specialty_hospital, +health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,3,health_care,false,specialty_hospital, +health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,3,health_care,false,specialty_hospital, +health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,3,health_care,false,specialty_hospital, +health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,3,health_care,false,specialty_hospital, +health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,3,health_care,false,specialty_hospital, +health_care > medical_service,medical_service,Medical Service,1,health_care,true,medical_service, +health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,2,health_care,false,medical_service, +health_care > medical_service > ems_training,ems_training,EMS Training,2,health_care,false,medical_service, +health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,2,health_care,false,medical_service, +health_care > medical_service > home_health_care,home_health_care,Home Health Care,2,health_care,false,medical_service, +health_care > medical_service > hospice,hospice,Hospice,2,health_care,false,medical_service, +health_care > medical_service > medical_billing,medical_billing,Medical Billing,2,health_care,false,medical_service, +health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,2,health_care,false,medical_service, +health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,3,health_care,false,medical_service, +health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,3,health_care,false,medical_service, +health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,3,health_care,false,medical_service, +health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,2,health_care,false,medical_service, +health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,2,health_care,false,medical_service, +health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,2,health_care,false,medical_service, +health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,1,health_care,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,health_care,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,health_care,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,health_care,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,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,3,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,4,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,4,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,4,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,4,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,4,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,4,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,3,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,2,health_care,true,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,3,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,4,health_care,false,complementary_and_alternative_medicine, +health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,2,health_care,true,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,2,health_care,true,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,3,health_care,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,health_care,false,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,3,health_care,false,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,3,health_care,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,health_care,false,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,3,health_care,false,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,3,health_care,false,diagnostics_imaging_or_lab_service, +health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,2,health_care,true,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,2,health_care,true,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,3,health_care,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,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,3,health_care,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,health_care,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,health_care,false,primary_care_or_general_clinic, +health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,3,health_care,false,primary_care_or_general_clinic, +health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,3,health_care,false,primary_care_or_general_clinic, +health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,3,health_care,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,health_care,false,primary_care_or_general_clinic, +health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,3,health_care,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,health_care,true,reproductive_perinatal_and_womens_care, +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,3,health_care,false,reproductive_perinatal_and_womens_care, +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,3,health_care,false,reproductive_perinatal_and_womens_care, +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,3,health_care,false,reproductive_perinatal_and_womens_care, +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,3,health_care,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,health_care,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,health_care,false,reproductive_perinatal_and_womens_care, +health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,2,health_care,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,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,4,health_care,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,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,5,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,5,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,5,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,5,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,5,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,3,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,3,health_care,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,health_care,true,vision_or_eye_care_clinic, +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,3,health_care,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,health_care,false,vision_or_eye_care_clinic, +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,4,health_care,false,vision_or_eye_care_clinic, +health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,3,health_care,false,vision_or_eye_care_clinic, +health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,1,health_care,true,specialized_medical_facility, +health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,2,health_care,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,health_care,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,health_care,false,specialized_medical_facility, +health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,2,health_care,false,specialized_medical_facility, +health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,2,health_care,false,specialized_medical_facility, +health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,2,health_care,false,specialized_medical_facility, +health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,2,health_care,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,health_care,false,specialized_medical_facility, +health_care > specialized_medical_facility > surgery,surgery,Surgery,2,health_care,true,surgery, +health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,4,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,4,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,4,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,3,health_care,false,surgery, +lifestyle_services,lifestyle_services,Lifestyle Services,0,lifestyle_services,true,lifestyle_services, +lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,1,lifestyle_services,true,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,2,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,4,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,3,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > food_service,food_service,Food Service,1,lifestyle_services,true,food_service, +lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,2,lifestyle_services,false,food_service, +lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,2,lifestyle_services,false,food_service, +lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,3,lifestyle_services,false,food_service, +lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,1,lifestyle_services,true,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > barber,barber,Barber,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,4,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,4,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,2,lifestyle_services,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,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > wellness_service,wellness_service,Wellness Service,1,lifestyle_services,true,wellness_service, +lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > sauna,sauna,Sauna,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > spa,spa,Spa,2,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,3,lifestyle_services,false,wellness_service, +lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,2,lifestyle_services,false,wellness_service, +lodging,lodging,Lodging,0,lodging,true,lodging, +lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,1,lodging,true,bed_and_breakfast, +lodging > cabin,cabin,Cabin,1,lodging,false,lodging, +lodging > campground,campground,Campground,1,lodging,true,campground, +lodging > cottage,cottage,Cottage,1,lodging,false,lodging, +lodging > country_house,country_house,Country House,1,lodging,false,lodging, +lodging > holiday_park,holiday_park,Holiday Park,1,lodging,false,lodging, +lodging > hostel,hostel,Hostel,1,lodging,false,lodging, +lodging > hotel,hotel,Hotel,1,lodging,true,hotel, +lodging > hotel > motel,motel,Motel,2,lodging,false,hotel, +lodging > houseboat,houseboat,Houseboat,1,lodging,false,lodging, +lodging > inn,inn,Inn,1,lodging,true,inn, +lodging > lodge,lodge,Lodge,1,lodging,false,lodging, +lodging > mountain_hut,mountain_hut,Mountain Hut,1,lodging,false,lodging, +lodging > private_lodging,private_lodging,Private Lodging,1,lodging,true,private_lodging, +lodging > private_lodging > guest_house,guest_house,Guest House,2,lodging,false,private_lodging, +lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,2,lodging,false,private_lodging, +lodging > resort,resort,Resort,1,lodging,true,resort, +lodging > resort > beach_resort,beach_resort,Beach Resort,2,lodging,false,resort, +lodging > resort > ski_resort,ski_resort,Ski Resort,2,lodging,false,resort, +lodging > retreat,retreat,Retreat,1,lodging,false,lodging, +lodging > retreat > health_retreat,health_retreat,Health Retreat,2,lodging,false,lodging, +lodging > rv_park,rv_park,RV Park,1,lodging,true,rv_park, +lodging > ryokan,ryokan,Ryokan,1,lodging,false,lodging, +lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,1,lodging,false,lodging, +lodging > service_apartment,service_apartment,Service Apartment,1,lodging,false,lodging, +services_and_business,services_and_business,Services and Business,0,services_and_business,true,services_and_business, +services_and_business > agricultural_service,agricultural_service,Agricultural Service,1,services_and_business,true,agricultural_service, +services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,2,services_and_business,false,agricultural_service, +services_and_business > agricultural_service > farm,farm,Farm,2,services_and_business,true,farm, +services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm > orchard,orchard,Orchard,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm > ranch,ranch,Ranch,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,3,services_and_business,false,farm, +services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,2,services_and_business,false,agricultural_service, +services_and_business > b2b_service,b2b_service,B2B Service,1,services_and_business,true,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service,b2b_agriculture_service,B2B Agriculture Service,2,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,4,services_and_business,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,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,5,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,5,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,5,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,4,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,4,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,4,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,4,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,2,services_and_business,true,b2b_energy_and_utility_service, +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_energy_and_utility_service, +services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,2,services_and_business,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,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,2,services_and_business,true,b2b_industrial_and_machine_service, +services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,3,services_and_business,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,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, +services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, +services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,3,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, +services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,3,services_and_business,false,b2b_industrial_and_machine_service, +services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,2,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,2,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,3,services_and_business,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,services_and_business,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,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,2,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_office_and_professional_service, +services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,3,services_and_business,false,b2b_office_and_professional_service, +services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_science_and_technology_service, +services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B Telecommunications Service,2,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,3,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,2,services_and_business,true,b2b_transportation_and_storage_service, +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,3,services_and_business,false,b2b_transportation_and_storage_service, +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,4,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_transportation_and_storage_service, +services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,3,services_and_business,false,b2b_transportation_and_storage_service, +services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_transportation_and_storage_service, +services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,2,services_and_business,false,b2b_service, +services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,2,services_and_business,true,manufacturer, +services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Factory Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,steel_fabricator,Steel Fabricator,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill,mill,Mill,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,2,services_and_business,true,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,4,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,4,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,2,services_and_business,true,wholesaler, +services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,Fmcg Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,3,services_and_business,false,wholesaler, +services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,3,services_and_business,false,wholesaler, +services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,1,services_and_business,true,building_or_construction_service, +services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,2,services_and_business,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,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,2,services_and_business,false,building_or_construction_service, +services_and_business > building_or_construction_service > welder,welder,Welder,2,services_and_business,false,building_or_construction_service, +services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,1,services_and_business,true,corporate_or_business_office, +services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > private_association,private_association,Private Association,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > design_service,design_service,Design Service,1,services_and_business,true,design_service, +services_and_business > design_service > architect,architect,Architect,2,services_and_business,false,design_service, +services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,2,services_and_business,false,design_service, +services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,2,services_and_business,false,design_service, +services_and_business > design_service > product_design,product_design,Product Design,2,services_and_business,false,design_service, +services_and_business > design_service > sign_making,sign_making,Sign Making,2,services_and_business,false,design_service, +services_and_business > design_service > web_designer,web_designer,Web Designer,2,services_and_business,false,design_service, +services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,1,services_and_business,true,environmental_or_ecological_service, +services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,2,services_and_business,false,environmental_or_ecological_service, +services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,2,services_and_business,false,environmental_or_ecological_service, +services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,2,services_and_business,false,environmental_or_ecological_service, +services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,2,services_and_business,false,environmental_or_ecological_service, +services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,2,services_and_business,false,environmental_or_ecological_service, +services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,1,services_and_business,true,event_or_party_service, +services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,Audiovisual Equipment Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > bartender,bartender,Bartender,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > caricature,caricature,Caricature,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > caterer,caterer,Caterer,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > clown,clown,Clown,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,2,services_and_business,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,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > magician,magician,Magician,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > mohel,mohel,Mohel,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > musician,musician,Musician,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,2,services_and_business,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,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > party_character,party_character,Party Character,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > videographer,videographer,Videographer,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,2,services_and_business,false,event_or_party_service, +services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,2,services_and_business,false,event_or_party_service, +services_and_business > family_service,family_service,Family Service,1,services_and_business,true,family_service, +services_and_business > family_service > adoption_service,adoption_service,Adoption Service,2,services_and_business,false,family_service, +services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,2,services_and_business,false,family_service, +services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,3,services_and_business,false,family_service, +services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,2,services_and_business,false,family_service, +services_and_business > family_service > family_service_center,family_service_center,Family Service Center,2,services_and_business,false,family_service, +services_and_business > family_service > funeral_service,funeral_service,Funeral Service,2,services_and_business,false,family_service, +services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,3,services_and_business,false,family_service, +services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,3,services_and_business,false,family_service, +services_and_business > family_service > genealogist,genealogist,Genealogist,2,services_and_business,false,family_service, +services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,2,services_and_business,false,family_service, +services_and_business > family_service > nanny_service,nanny_service,Nanny Service,2,services_and_business,false,family_service, +services_and_business > financial_service,financial_service,Financial Service,1,services_and_business,true,financial_service, +services_and_business > financial_service > accountant,accountant,Accountant,2,services_and_business,false,financial_service, +services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,2,services_and_business,false,financial_service, +services_and_business > financial_service > atm,atm,ATM,2,services_and_business,true,atm, +services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,2,services_and_business,true,bank_or_credit_union, +services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,3,services_and_business,false,bank_or_credit_union, +services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,3,services_and_business,false,bank_or_credit_union, +services_and_business > financial_service > broker,broker,Broker,2,services_and_business,false,financial_service, +services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,3,services_and_business,false,financial_service, +services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,3,services_and_business,false,financial_service, +services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,2,services_and_business,false,financial_service, +services_and_business > financial_service > business_financing,business_financing,Business Financing,2,services_and_business,false,financial_service, +services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,2,services_and_business,false,financial_service, +services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,2,services_and_business,false,financial_service, +services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,2,services_and_business,false,financial_service, +services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,2,services_and_business,false,financial_service, +services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,2,services_and_business,false,financial_service, +services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,2,services_and_business,false,financial_service, +services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,2,services_and_business,false,financial_service, +services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,2,services_and_business,false,financial_service, +services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,2,services_and_business,false,financial_service, +services_and_business > financial_service > holding_company,holding_company,Holding Company,2,services_and_business,false,financial_service, +services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,2,services_and_business,false,financial_service, +services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,3,services_and_business,false,financial_service, +services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,3,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,2,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,3,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,3,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,3,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,3,services_and_business,false,financial_service, +services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,3,services_and_business,false,financial_service, +services_and_business > financial_service > investing,investing,Investing,2,services_and_business,false,financial_service, +services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,2,services_and_business,false,financial_service, +services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,2,services_and_business,false,financial_service, +services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,2,services_and_business,false,financial_service, +services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,2,services_and_business,false,financial_service, +services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,2,services_and_business,false,financial_service, +services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,2,services_and_business,false,financial_service, +services_and_business > financial_service > tax_service,tax_service,Tax Service,2,services_and_business,false,financial_service, +services_and_business > financial_service > trusts,trusts,Trusts,2,services_and_business,false,financial_service, +services_and_business > home_service,home_service,Home Service,1,services_and_business,true,home_service, +services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,2,services_and_business,false,home_service, +services_and_business > home_service > antenna_service,antenna_service,Antenna Service,2,services_and_business,false,home_service, +services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,2,services_and_business,false,home_service, +services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,2,services_and_business,false,home_service, +services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,2,services_and_business,false,home_service, +services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,2,services_and_business,false,home_service, +services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,2,services_and_business,false,home_service, +services_and_business > home_service > carpenter,carpenter,Carpenter,2,services_and_business,false,home_service, +services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,2,services_and_business,false,home_service, +services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,2,services_and_business,false,home_service, +services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,2,services_and_business,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,services_and_business,false,home_service, +services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,3,services_and_business,false,home_service, +services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,3,services_and_business,false,home_service, +services_and_business > home_service > childproofing,childproofing,Childproofing,2,services_and_business,false,home_service, +services_and_business > home_service > chimney_service,chimney_service,Chimney Service,2,services_and_business,false,home_service, +services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,3,services_and_business,false,home_service, +services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,2,services_and_business,false,home_service, +services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,2,services_and_business,false,home_service, +services_and_business > home_service > community_book_box,community_book_box,Community Book Box,2,services_and_business,false,home_service, +services_and_business > home_service > contractor,contractor,Contractor,2,services_and_business,false,home_service, +services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,3,services_and_business,false,home_service, +services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,3,services_and_business,false,home_service, +services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,3,services_and_business,false,home_service, +services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,3,services_and_business,false,home_service, +services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,2,services_and_business,false,home_service, +services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,2,services_and_business,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,services_and_business,false,home_service, +services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,2,services_and_business,false,home_service, +services_and_business > home_service > demolition_service,demolition_service,Demolition Service,2,services_and_business,false,home_service, +services_and_business > home_service > donation_center,donation_center,Donation Center,2,services_and_business,false,home_service, +services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,2,services_and_business,false,home_service, +services_and_business > home_service > drywall_service,drywall_service,Drywall Service,2,services_and_business,false,home_service, +services_and_business > home_service > electrician,electrician,Electrician,2,services_and_business,false,home_service, +services_and_business > home_service > excavation_service,excavation_service,Excavation Service,2,services_and_business,false,home_service, +services_and_business > home_service > exterior_design,exterior_design,Exterior Design,2,services_and_business,false,home_service, +services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,2,services_and_business,false,home_service, +services_and_business > home_service > feng_shui,feng_shui,Feng Shui,2,services_and_business,false,home_service, +services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,2,services_and_business,false,home_service, +services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,2,services_and_business,false,home_service, +services_and_business > home_service > firewood,firewood,Firewood,2,services_and_business,false,home_service, +services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,2,services_and_business,false,home_service, +services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,2,services_and_business,false,home_service, +services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,2,services_and_business,false,home_service, +services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,2,services_and_business,false,home_service, +services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,2,services_and_business,false,home_service, +services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,2,services_and_business,false,home_service, +services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,2,services_and_business,false,home_service, +services_and_business > home_service > grout_service,grout_service,Grout Service,2,services_and_business,false,home_service, +services_and_business > home_service > gutter_service,gutter_service,Gutter Service,2,services_and_business,false,home_service, +services_and_business > home_service > handyman,handyman,Handyman,2,services_and_business,false,home_service, +services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,2,services_and_business,false,home_service, +services_and_business > home_service > home_automation,home_automation,Home Automation,2,services_and_business,false,home_service, +services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,2,services_and_business,false,home_service, +services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,2,services_and_business,false,home_service, +services_and_business > home_service > home_inspector,home_inspector,Home Inspector,2,services_and_business,false,home_service, +services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,2,services_and_business,false,home_service, +services_and_business > home_service > home_security,home_security,Home Security,2,services_and_business,false,home_service, +services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,2,services_and_business,false,home_service, +services_and_business > home_service > house_sitting,house_sitting,House Sitting,2,services_and_business,false,home_service, +services_and_business > home_service > hvac_service,hvac_service,HVAC Service,2,services_and_business,false,home_service, +services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,2,services_and_business,false,home_service, +services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,2,services_and_business,false,home_service, +services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,2,services_and_business,false,home_service, +services_and_business > home_service > interior_design,interior_design,Interior Design,2,services_and_business,false,home_service, +services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,2,services_and_business,false,home_service, +services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,2,services_and_business,false,home_service, +services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,2,services_and_business,false,home_service, +services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,2,services_and_business,false,home_service, +services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,2,services_and_business,false,home_service, +services_and_business > home_service > landscaping,landscaping,Landscaping,2,services_and_business,false,home_service, +services_and_business > home_service > landscaping > gardener,gardener,Gardener,3,services_and_business,false,home_service, +services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,3,services_and_business,false,home_service, +services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,3,services_and_business,false,home_service, +services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,3,services_and_business,false,home_service, +services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,2,services_and_business,false,home_service, +services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,2,services_and_business,false,home_service, +services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,2,services_and_business,false,home_service, +services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,2,services_and_business,false,home_service, +services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,2,services_and_business,false,home_service, +services_and_business > home_service > mover,mover,Mover,2,services_and_business,false,home_service, +services_and_business > home_service > packing_service,packing_service,Packing Service,2,services_and_business,false,home_service, +services_and_business > home_service > painting,painting,Painting,2,services_and_business,false,home_service, +services_and_business > home_service > patio_covers,patio_covers,Patio Covers,2,services_and_business,false,home_service, +services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,2,services_and_business,false,home_service, +services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,2,services_and_business,false,home_service, +services_and_business > home_service > plasterer,plasterer,Plasterer,2,services_and_business,false,home_service, +services_and_business > home_service > plumbing,plumbing,Plumbing,2,services_and_business,false,home_service, +services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,3,services_and_business,false,home_service, +services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,2,services_and_business,false,home_service, +services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,2,services_and_business,false,home_service, +services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,2,services_and_business,false,home_service, +services_and_business > home_service > recycling_center,recycling_center,Recycling Center,2,services_and_business,false,home_service, +services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,2,services_and_business,false,home_service, +services_and_business > home_service > security_systems,security_systems,Security Systems,2,services_and_business,false,home_service, +services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,2,services_and_business,false,home_service, +services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,3,services_and_business,false,home_service, +services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,2,services_and_business,false,home_service, +services_and_business > home_service > shutters,shutters,Shutters,2,services_and_business,false,home_service, +services_and_business > home_service > siding,siding,Siding,2,services_and_business,false,home_service, +services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,2,services_and_business,false,home_service, +services_and_business > home_service > solar_installation,solar_installation,Solar Installation,2,services_and_business,false,home_service, +services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,2,services_and_business,false,home_service, +services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,2,services_and_business,false,home_service, +services_and_business > home_service > stucco_service,stucco_service,Stucco Service,2,services_and_business,false,home_service, +services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,2,services_and_business,false,home_service, +services_and_business > home_service > tiling,tiling,Tiling,2,services_and_business,false,home_service, +services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,2,services_and_business,false,home_service, +services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,2,services_and_business,false,home_service, +services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,2,services_and_business,false,home_service, +services_and_business > home_service > water_delivery,water_delivery,Water Delivery,2,services_and_business,false,home_service, +services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,2,services_and_business,false,home_service, +services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,2,services_and_business,false,home_service, +services_and_business > home_service > waterproofing,waterproofing,Waterproofing,2,services_and_business,false,home_service, +services_and_business > home_service > well_drilling,well_drilling,Well Drilling,2,services_and_business,false,home_service, +services_and_business > home_service > window_washing,window_washing,Window Washing,2,services_and_business,false,home_service, +services_and_business > home_service > windows_installation,windows_installation,Windows Installation,2,services_and_business,false,home_service, +services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,3,services_and_business,false,home_service, +services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,1,services_and_business,true,housing_or_property_service, +services_and_business > housing_or_property_service > apartment,apartment,Apartment,2,services_and_business,true,apartment, +services_and_business > housing_or_property_service > condominium,condominium,Condominium,2,services_and_business,true,condominium, +services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,2,services_and_business,false,housing_or_property_service, +services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,2,services_and_business,false,housing_or_property_service, +services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,2,services_and_business,false,housing_or_property_service, +services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,2,services_and_business,true,senior_living_facility, +services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,3,services_and_business,false,senior_living_facility, +services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,3,services_and_business,false,senior_living_facility, +services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,3,services_and_business,false,senior_living_facility, +services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,2,services_and_business,false,housing_or_property_service, +services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,1,services_and_business,true,industrial_facility_or_service, +services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,2,services_and_business,false,industrial_facility_or_service, +services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,2,services_and_business,false,industrial_facility_or_service, +services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,2,services_and_business,false,industrial_facility_or_service, +services_and_business > laundry_service,laundry_service,Laundry Service,1,services_and_business,true,laundry_service, +services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,2,services_and_business,false,laundry_service, +services_and_business > laundry_service > laundromat,laundromat,Laundromat,2,services_and_business,false,laundry_service, +services_and_business > legal_service,legal_service,Legal Service,1,services_and_business,true,legal_service, +services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,2,services_and_business,true,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,3,services_and_business,false,attorney_or_law_firm, +services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,2,services_and_business,false,legal_service, +services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,2,services_and_business,false,legal_service, +services_and_business > legal_service > mediator,mediator,Mediator,2,services_and_business,false,legal_service, +services_and_business > legal_service > notary_public,notary_public,Notary Public,2,services_and_business,false,legal_service, +services_and_business > legal_service > patent_law,patent_law,Patent Law,2,services_and_business,false,legal_service, +services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,2,services_and_business,false,legal_service, +services_and_business > legal_service > process_server,process_server,Process Server,2,services_and_business,false,legal_service, +services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,2,services_and_business,false,legal_service, +services_and_business > media_service,media_service,Media Service,1,services_and_business,true,media_service, +services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,2,services_and_business,false,media_service, +services_and_business > media_service > bookbinding,bookbinding,Bookbinding,2,services_and_business,false,media_service, +services_and_business > media_service > calligraphy,calligraphy,Calligraphy,2,services_and_business,false,media_service, +services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,2,services_and_business,false,media_service, +services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,2,services_and_business,false,media_service, +services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,2,services_and_business,false,media_service, +services_and_business > media_service > engraving,engraving,Engraving,2,services_and_business,false,media_service, +services_and_business > media_service > media_critic,media_critic,Media Critic,2,services_and_business,false,media_service, +services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,3,services_and_business,false,media_service, +services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,3,services_and_business,false,media_service, +services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company,media_news_company,Media News Company,2,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > music_production,music_production,Music Production,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > publisher,publisher,Publisher,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,3,services_and_business,true,radio_station, +services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_company > television_station,television_station,Television Station,3,services_and_business,true,television_station, +services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,3,services_and_business,false,media_service, +services_and_business > media_service > media_news_website,media_news_website,Media News Website,2,services_and_business,false,media_service, +services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,2,services_and_business,false,media_service, +services_and_business > media_service > music_production_service,music_production_service,Music Production Service,2,services_and_business,false,media_service, +services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,2,services_and_business,false,media_service, +services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,3,services_and_business,false,media_service, +services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,3,services_and_business,false,media_service, +services_and_business > media_service > photography_service,photography_service,Photography Service,2,services_and_business,false,media_service, +services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,3,services_and_business,false,media_service, +services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,3,services_and_business,false,media_service, +services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,3,services_and_business,false,media_service, +services_and_business > media_service > print_media,print_media,Print Media,2,services_and_business,false,media_service, +services_and_business > media_service > record_label,record_label,Record Label,2,services_and_business,false,media_service, +services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,2,services_and_business,false,media_service, +services_and_business > media_service > studio_taping,studio_taping,Studio Taping,2,services_and_business,false,media_service, +services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,2,services_and_business,false,media_service, +services_and_business > media_service > video_film_production,video_film_production,Video Film Production,2,services_and_business,false,media_service, +services_and_business > media_service > weather_station,weather_station,Weather Station,2,services_and_business,false,media_service, +services_and_business > printing_service,printing_service,Printing Service,1,services_and_business,true,printing_service, +services_and_business > printing_service > 3d_printing_service,3d_printing_service,3d Printing Service,2,services_and_business,false,printing_service, +services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,2,services_and_business,false,printing_service, +services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,2,services_and_business,false,printing_service, +services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,2,services_and_business,false,printing_service, +services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-shirt Printing Service,3,services_and_business,false,printing_service, +services_and_business > professional_service,professional_service,Professional Service,1,services_and_business,true,professional_service, +services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > billing_service,billing_service,Billing Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,2,services_and_business,false,professional_service, +services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,2,services_and_business,false,professional_service, +services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,2,services_and_business,false,professional_service, +services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,3,services_and_business,false,professional_service, +services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,3,services_and_business,false,professional_service, +services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,3,services_and_business,false,professional_service, +services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,2,services_and_business,false,professional_service, +services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,3,services_and_business,false,professional_service, +services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,2,services_and_business,false,professional_service, +services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > public_relations,public_relations,Public Relations,2,services_and_business,false,professional_service, +services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,2,services_and_business,false,professional_service, +services_and_business > professional_service > translation_service,translation_service,Translation Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > typing_service,typing_service,Typing Service,2,services_and_business,false,professional_service, +services_and_business > professional_service > writing_service,writing_service,Writing Service,2,services_and_business,false,professional_service, +services_and_business > real_estate_service,real_estate_service,Real Estate Service,1,services_and_business,true,real_estate_service, +services_and_business > real_estate_service > builder,builder,Builder,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,3,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > home_organization,home_organization,Home Organization,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > home_staging,home_staging,Home Staging,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > property_management,property_management,Property Management,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,3,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,2,services_and_business,false,real_estate_service, +services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,2,services_and_business,false,real_estate_service, +services_and_business > rental_service,rental_service,Rental Service,1,services_and_business,true,rental_service, +services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,2,services_and_business,false,rental_service, +services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,2,services_and_business,false,rental_service, +services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,2,services_and_business,false,rental_service, +services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,2,services_and_business,false,rental_service, +services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,2,services_and_business,false,rental_service, +services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,2,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,2,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,3,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,3,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,3,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,3,services_and_business,false,rental_service, +services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,3,services_and_business,false,rental_service, +services_and_business > security_service,security_service,Security Service,1,services_and_business,true,security_service, +services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,2,services_and_business,false,security_service, +services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,1,services_and_business,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,services_and_business,false,shipping_or_delivery_service, +services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,2,services_and_business,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,services_and_business,false,shipping_or_delivery_service, +services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,2,services_and_business,false,shipping_or_delivery_service, +services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,2,services_and_business,false,shipping_or_delivery_service, +services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,2,services_and_business,false,shipping_or_delivery_service, +services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,2,services_and_business,false,shipping_or_delivery_service, +services_and_business > storage_facility,storage_facility,Storage Facility,1,services_and_business,true,storage_facility, +services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,2,services_and_business,false,storage_facility, +services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,2,services_and_business,false,storage_facility, +services_and_business > storage_facility > package_locker,package_locker,Package Locker,2,services_and_business,false,storage_facility, +services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,2,services_and_business,false,storage_facility, +services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,2,services_and_business,false,storage_facility, +services_and_business > technical_service,technical_service,Technical Service,1,services_and_business,true,technical_service, +services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,2,services_and_business,false,technical_service, +services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,2,services_and_business,false,technical_service, +services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,2,services_and_business,false,technical_service, +services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,2,services_and_business,false,technical_service, +services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,2,services_and_business,false,technical_service, +services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,2,services_and_business,false,technical_service, +services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,2,services_and_business,false,technical_service, +services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,2,services_and_business,false,technical_service, +services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,2,services_and_business,false,technical_service, +services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,3,services_and_business,false,technical_service, +services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,2,services_and_business,false,technical_service, +services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,3,services_and_business,false,technical_service, +services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,3,services_and_business,false,technical_service, +services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,2,services_and_business,false,technical_service, +services_and_business > technical_service > laboratory,laboratory,Laboratory,2,services_and_business,false,technical_service, +services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,2,services_and_business,false,technical_service, +services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,2,services_and_business,false,technical_service, +services_and_business > technical_service > software_development,software_development,Software Development,2,services_and_business,false,technical_service, +services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,2,services_and_business,false,technical_service, +services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,2,services_and_business,false,technical_service, +services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,2,services_and_business,false,technical_service, +services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,1,services_and_business,true,telecommunications_service, +services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,1,services_and_business,true,utility_energy_infrastructure, +services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,2,services_and_business,false,utility_energy_infrastructure, +shopping,shopping,Shopping,0,shopping,true,shopping, +shopping > convenience_store,convenience_store,Convenience Store,1,shopping,true,convenience_store, +shopping > department_store,department_store,Department Store,1,shopping,true,department_store, +shopping > discount_store,discount_store,Discount Store,1,shopping,true,discount_store, +shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,1,shopping,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,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,3,shopping,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,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,3,shopping,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,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,4,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,3,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,2,shopping,false,fashion_and_apparel_store, +shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,3,shopping,false,fashion_and_apparel_store, +shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,1,shopping,true,food_and_beverage_store, +shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > csa_farm,csa_farm,Csa Farm,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,3,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,2,shopping,false,food_and_beverage_store, +shopping > food_and_beverage_store > water_store,water_store,Water Store,2,shopping,false,food_and_beverage_store, +shopping > kiosk,kiosk,Kiosk,1,shopping,true,kiosk, +shopping > market,market,Market,1,shopping,true,market, +shopping > market > bazaar,bazaar,Bazaar,2,shopping,false,market, +shopping > market > farmers_market,farmers_market,Farmers Market,2,shopping,true,farmers_market, +shopping > market > health_market,health_market,Health Market,2,shopping,false,market, +shopping > market > holiday_market,holiday_market,Holiday Market,2,shopping,false,market, +shopping > market > market_stall,market_stall,Market Stall,2,shopping,false,market, +shopping > market > night_market,night_market,Night Market,2,shopping,false,market, +shopping > market > public_market,public_market,Public Market,2,shopping,false,market, +shopping > market > shopping_passage,shopping_passage,Shopping Passage,2,shopping,false,market, +shopping > market > street_vendor,street_vendor,Street Vendor,2,shopping,false,market, +shopping > second_hand_store,second_hand_store,Second Hand Store,1,shopping,true,second_hand_store, +shopping > second_hand_store > antique_store,antique_store,Antique Store,2,shopping,false,second_hand_store, +shopping > second_hand_store > flea_market,flea_market,Flea Market,2,shopping,false,second_hand_store, +shopping > second_hand_store > junkyard,junkyard,Junkyard,2,shopping,false,second_hand_store, +shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,2,shopping,false,second_hand_store, +shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,2,shopping,false,second_hand_store, +shopping > shopping_mall,shopping_mall,Shopping Mall,1,shopping,true,shopping_mall, +shopping > shopping_service,shopping_service,Shopping Service,1,shopping,true,shopping_service, +shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,2,shopping,false,shopping_service, +shopping > specialty_store,specialty_store,Specialty Store,1,shopping,true,specialty_store, +shopping > specialty_store > adult_store,adult_store,Adult Store,2,shopping,false,specialty_store, +shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,2,shopping,true,animal_and_pet_store, +shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,3,shopping,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,shopping,false,animal_and_pet_store, +shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,3,shopping,false,animal_and_pet_store, +shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,4,shopping,false,animal_and_pet_store, +shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,4,shopping,false,animal_and_pet_store, +shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,4,shopping,false,animal_and_pet_store, +shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,2,shopping,true,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,3,shopping,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,shopping,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,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,3,shopping,false,arts_crafts_and_hobby_store, +shopping > specialty_store > auction_house,auction_house,Auction House,2,shopping,false,specialty_store, +shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,3,shopping,false,specialty_store, +shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,2,shopping,true,books_music_and_video_store, +shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,3,shopping,false,books_music_and_video_store, +shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,4,shopping,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,shopping,false,books_music_and_video_store, +shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,4,shopping,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,shopping,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,shopping,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,shopping,false,books_music_and_video_store, +shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,3,shopping,false,books_music_and_video_store, +shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,3,shopping,false,books_music_and_video_store, +shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,2,shopping,false,specialty_store, +shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,2,shopping,false,specialty_store, +shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,2,shopping,false,specialty_store, +shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > electronics_store,electronics_store,Electronics Store,2,shopping,true,electronics_store, +shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,3,shopping,false,electronics_store, +shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,3,shopping,false,electronics_store, +shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,3,shopping,false,specialty_store, +shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,3,shopping,false,specialty_store, +shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,2,shopping,false,specialty_store, +shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,2,shopping,true,flowers_and_gifts_store, +shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,3,shopping,false,flowers_and_gifts_store, +shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,3,shopping,false,flowers_and_gifts_store, +shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,3,shopping,false,flowers_and_gifts_store, +shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,2,shopping,false,specialty_store, +shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,2,shopping,false,specialty_store, +shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,3,shopping,false,specialty_store, +shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,2,shopping,true,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,4,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,3,shopping,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,shopping,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,shopping,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,shopping,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,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,3,shopping,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,shopping,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,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,3,shopping,false,hardware_home_and_garden_store, +shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,3,shopping,false,specialty_store, +shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,3,shopping,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,shopping,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,shopping,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,shopping,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,shopping,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,shopping,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,shopping,false,musical_instrument_and_pro_audio_store, +shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,2,shopping,true,office_supply_store, +shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,3,shopping,false,office_supply_store, +shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,3,shopping,false,office_supply_store, +shopping > specialty_store > outlet_store,outlet_store,Outlet Store,2,shopping,false,specialty_store, +shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,2,shopping,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,shopping,false,personal_care_and_beauty_store, +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,3,shopping,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,shopping,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,shopping,false,personal_care_and_beauty_store, +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,4,shopping,false,personal_care_and_beauty_store, +shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,2,shopping,true,pharmacy_and_drug_store, +shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,3,shopping,false,pharmacy_and_drug_store, +shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,3,shopping,false,pharmacy_and_drug_store, +shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,2,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,2,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,4,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > hindu_goods_store,hindu_goods_store,Hindu Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > islamic_goods_store,islamic_goods_store,Islamic Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > jewish_goods_store,jewish_goods_store,Jewish Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spirit_store,mind_body_spirit_store,Mind Body Spirit Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,3,shopping,false,specialty_store, +shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,3,shopping,false,specialty_store, +shopping > specialty_store > safe_store,safe_store,Safe Store,2,shopping,false,specialty_store, +shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,2,shopping,false,specialty_store, +shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,2,shopping,false,specialty_store, +shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,3,shopping,false,specialty_store, +shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,2,shopping,false,specialty_store, +shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,2,shopping,true,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,4,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,3,shopping,false,specialty_store, +shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,3,shopping,false,specialty_store, +shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,2,shopping,true,toys_and_games_store, +shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,3,shopping,false,toys_and_games_store, +shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,3,shopping,false,toys_and_games_store, +shopping > specialty_store > trophy_store,trophy_store,Trophy Store,2,shopping,false,specialty_store, +shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,2,shopping,true,vehicle_parts_store, +shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,3,shopping,false,vehicle_parts_store, +shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,3,shopping,false,vehicle_parts_store, +shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,3,shopping,false,vehicle_parts_store, +shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,3,shopping,false,vehicle_parts_store, +shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,3,shopping,false,vehicle_parts_store, +shopping > superstore,superstore,Superstore,1,shopping,true,superstore, +shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,1,shopping,true,vehicle_dealer, +shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,2,shopping,true,auto_dealer, +shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,3,shopping,false,auto_dealer, +shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,3,shopping,false,auto_dealer, +shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,3,shopping,false,auto_dealer, +shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,2,shopping,false,vehicle_dealer, +shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,2,shopping,false,vehicle_dealer, +shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,1,shopping,true,warehouse_club_store, +sports_and_recreation,sports_and_recreation,Sports and Recreation,0,sports_and_recreation,true,sports_and_recreation, +sports_and_recreation > park,park,Park,1,sports_and_recreation,true,park, +sports_and_recreation > park > dog_park,dog_park,Dog Park,2,sports_and_recreation,true,dog_park, +sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,2,sports_and_recreation,false,park, +sports_and_recreation > park > national_park,national_park,National Park,2,sports_and_recreation,true,national_park, +sports_and_recreation > park > playground,playground,Playground,2,sports_and_recreation,true,playground, +sports_and_recreation > park > state_park,state_park,State Park,2,sports_and_recreation,false,park, +sports_and_recreation > park > water_park,water_park,Water Park,2,sports_and_recreation,false,park, +sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,1,sports_and_recreation,true,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,2,sports_and_recreation,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,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,1,sports_and_recreation,true,recreational_trail_or_path, +sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,2,sports_and_recreation,false,recreational_trail_or_path, +sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,2,sports_and_recreation,false,recreational_trail_or_path, +sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,2,sports_and_recreation,false,recreational_trail_or_path, +sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,2,sports_and_recreation,false,recreational_trail_or_path, +sports_and_recreation > sport_league,sport_league,Sport League,1,sports_and_recreation,true,sport_league, +sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,2,sports_and_recreation,false,sport_league, +sports_and_recreation > sport_league > esports_league,esports_league,Esports League,2,sports_and_recreation,false,sport_league, +sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,2,sports_and_recreation,false,sport_league, +sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,2,sports_and_recreation,false,sport_league, +sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,1,sports_and_recreation,true,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,2,sports_and_recreation,true,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,3,sports_and_recreation,false,fitness_studio, +sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,2,sports_and_recreation,true,golf_course, +sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,3,sports_and_recreation,false,golf_course, +sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,2,sports_and_recreation,true,gym, +sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,3,sports_and_recreation,false,gym, +sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,2,sports_and_recreation,true,skate_park, +sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,2,sports_and_recreation,true,skating_rink, +sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,3,sports_and_recreation,false,skating_rink, +sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,3,sports_and_recreation,false,skating_rink, +sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,2,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,2,sports_and_recreation,true,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,2,sports_and_recreation,true,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,4,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,2,sports_and_recreation,true,sports_complex, +sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,2,sports_and_recreation,true,swimming_pool, +sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,3,sports_and_recreation,false,swimming_pool, +sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,4,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,4,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,4,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,1,sports_and_recreation,true,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,2,sports_and_recreation,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,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,3,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,2,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_team,sport_team,Sport Team,1,sports_and_recreation,true,sport_team, +sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,2,sports_and_recreation,false,sport_team, +sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,2,sports_and_recreation,false,sport_team, +sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,2,sports_and_recreation,false,sport_team, +sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,2,sports_and_recreation,false,sport_team, +travel_and_transportation,travel_and_transportation,Travel and Transportation,0,travel_and_transportation,true,travel_and_transportation, +travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,air_transport_facility_or_service, +travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,2,travel_and_transportation,false,air_transport_facility_or_service, +travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,2,travel_and_transportation,false,air_transport_facility_or_service, +travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,2,travel_and_transportation,true,airport, +travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,3,travel_and_transportation,false,airport, +travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,2,travel_and_transportation,false,air_transport_facility_or_service, +travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,2,travel_and_transportation,false,air_transport_facility_or_service, +travel_and_transportation > fueling_station,fueling_station,Fueling Station,1,travel_and_transportation,true,fueling_station, +travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,2,travel_and_transportation,true,ev_charging_station, +travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,2,travel_and_transportation,true,gas_station, +travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,3,travel_and_transportation,false,gas_station, +travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,3,travel_and_transportation,false,gas_station, +travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,rail_facility_or_service, +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,3,travel_and_transportation,false,rail_facility_or_service, +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,3,travel_and_transportation,true,train_station, +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,2,travel_and_transportation,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,travel_and_transportation,true,rest_stop, +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,3,travel_and_transportation,true,toll_station, +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,3,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,taxi_or_ride_share_service, +travel_and_transportation > parking,parking,Parking,1,travel_and_transportation,true,parking, +travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,2,travel_and_transportation,false,parking, +travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,2,travel_and_transportation,false,parking, +travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,2,travel_and_transportation,true,park_and_ride, +travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,2,travel_and_transportation,true,parking_garage, +travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,2,travel_and_transportation,true,parking_lot, +travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,1,travel_and_transportation,false,travel_and_transportation, +travel_and_transportation > travel_service,travel_service,Travel Service,1,travel_and_transportation,true,travel_service, +travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,3,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,2,travel_and_transportation,false,travel_service, +travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,2,travel_and_transportation,false,travel_service, +travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,1,travel_and_transportation,true,vehicle_service, +travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,2,travel_and_transportation,true,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,4,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,4,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,4,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,3,travel_and_transportation,false,automotive_service, +travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,1,travel_and_transportation,true,water_transport_facility_or_service, +travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,2,travel_and_transportation,true,ferry_service, +travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,2,travel_and_transportation,true,water_taxi_service, diff --git a/static/taxonomy/2026-09-16.0/taxonomy.json b/static/taxonomy/2026-09-16.0/taxonomy.json new file mode 100644 index 000000000..1fa852d60 --- /dev/null +++ b/static/taxonomy/2026-09-16.0/taxonomy.json @@ -0,0 +1 @@ +{"version":"2026-09-16.0","schemaVersion":"v1.19.0","releaseDate":"2026-09-16","generatedAt":"2026-09-03","source":{"taxonomy":"overture_taxonomy.json","basicCategories":"overture_basic_category.json"},"stats":{"categories":2302,"basicCategories":298,"rootGroups":13,"maxDepth":5,"totalPlaces":null},"tree":[{"name":"arts_and_entertainment","displayName":"Arts and Entertainment","isBasic":true,"children":[{"name":"amusement_attraction","displayName":"Amusement Attraction","isBasic":true,"children":[{"name":"amusement_park","displayName":"Amusement Park","isBasic":true},{"name":"carnival_venue","displayName":"Carnival Venue","basicCategory":"amusement_attraction"},{"name":"carousel","displayName":"Carousel","basicCategory":"amusement_attraction"},{"name":"circus_venue","displayName":"Circus Venue","basicCategory":"amusement_attraction"},{"name":"haunted_house","displayName":"Haunted House","basicCategory":"amusement_attraction"}]},{"name":"animal_attraction","displayName":"Animal Attraction","isBasic":true,"children":[{"name":"aquarium","displayName":"Aquarium","isBasic":true},{"name":"wildlife_sanctuary","displayName":"Wildlife Sanctuary","basicCategory":"animal_attraction"},{"name":"zoo","displayName":"Zoo","isBasic":true,"children":[{"name":"petting_zoo","displayName":"Petting Zoo","basicCategory":"zoo"},{"name":"zoo_exhibit","displayName":"Zoo Exhibit","basicCategory":"zoo"}]}]},{"name":"arts_and_crafts_space","displayName":"Arts and Crafts Space","isBasic":true,"children":[{"name":"art_gallery","displayName":"Art Gallery","isBasic":true},{"name":"artist_studio","displayName":"Artist Studio","basicCategory":"arts_and_crafts_space"},{"name":"glass_blowing_venue","displayName":"Glass Blowing Venue","basicCategory":"arts_and_crafts_space"},{"name":"paint_and_sip_venue","displayName":"Paint and Sip Venue","basicCategory":"arts_and_crafts_space"},{"name":"paint_your_own_pottery_venue","displayName":"Paint Your Own Pottery Venue","basicCategory":"arts_and_crafts_space"},{"name":"sculpture_park","displayName":"Sculpture Park","basicCategory":"arts_and_crafts_space"},{"name":"sculpture_statue","displayName":"Sculpture Statue","isBasic":true},{"name":"street_art","displayName":"Street Art","isBasic":true}]},{"name":"event_venue","displayName":"Event Venue","isBasic":true,"children":[{"name":"auditorium","displayName":"Auditorium","basicCategory":"event_venue"},{"name":"exhibition_and_trade_fair_venue","displayName":"Exhibition and Trade Fair Venue","basicCategory":"event_venue"}]},{"name":"festival_venue","displayName":"Festival Venue","isBasic":true,"children":[{"name":"fairgrounds","displayName":"Fairgrounds","isBasic":true},{"name":"film_festival_venue","displayName":"Film Festival Venue","basicCategory":"festival_venue"},{"name":"music_festival_venue","displayName":"Music Festival Venue","basicCategory":"festival_venue"}]},{"name":"gaming_venue","displayName":"Gaming Venue","isBasic":true,"children":[{"name":"arcade","displayName":"Arcade","isBasic":true},{"name":"betting_center","displayName":"Betting Center","basicCategory":"gaming_venue"},{"name":"bingo_hall","displayName":"Bingo Hall","basicCategory":"gaming_venue"},{"name":"casino","displayName":"Casino","isBasic":true},{"name":"escape_room","displayName":"Escape Room","basicCategory":"gaming_venue"},{"name":"lottery_vendor","displayName":"Lottery Vendor","basicCategory":"gaming_venue"},{"name":"scavenger_hunt","displayName":"Scavenger Hunt","basicCategory":"gaming_venue"}]},{"name":"movie_theater","displayName":"Movie Theater","isBasic":true,"children":[{"name":"drive_in_theater","displayName":"Drive-In Theater","basicCategory":"movie_theater"},{"name":"outdoor_movie_space","displayName":"Outdoor Movie Space","basicCategory":"movie_theater"}]},{"name":"museum","displayName":"Museum","isBasic":true,"children":[{"name":"art_museum","displayName":"Art Museum","basicCategory":"museum","children":[{"name":"asian_art_museum","displayName":"Asian Art Museum","basicCategory":"museum"},{"name":"cartooning_museum","displayName":"Cartooning Museum","basicCategory":"museum"},{"name":"contemporary_art_museum","displayName":"Contemporary Art Museum","basicCategory":"museum"},{"name":"costume_museum","displayName":"Costume Museum","basicCategory":"museum"},{"name":"decorative_arts_museum","displayName":"Decorative Arts Museum","basicCategory":"museum"},{"name":"design_museum","displayName":"Design Museum","basicCategory":"museum"},{"name":"modern_art_museum","displayName":"Modern Art Museum","basicCategory":"museum"},{"name":"photography_museum","displayName":"Photography Museum","basicCategory":"museum"},{"name":"textile_museum","displayName":"Textile Museum","basicCategory":"museum"}]},{"name":"aviation_museum","displayName":"Aviation Museum","basicCategory":"museum"},{"name":"childrens_museum","displayName":"Children's Museum","basicCategory":"museum"},{"name":"history_museum","displayName":"History Museum","basicCategory":"museum","children":[{"name":"civilization_museum","displayName":"Civilization Museum","basicCategory":"museum"},{"name":"community_museum","displayName":"Community Museum","basicCategory":"museum"}]},{"name":"military_museum","displayName":"Military Museum","basicCategory":"museum"},{"name":"national_museum","displayName":"National Museum","basicCategory":"museum"},{"name":"science_museum","displayName":"Science Museum","basicCategory":"museum","children":[{"name":"computer_museum","displayName":"Computer Museum","basicCategory":"museum"}]},{"name":"sports_museum","displayName":"Sports Museum","basicCategory":"museum"},{"name":"state_museum","displayName":"State Museum","basicCategory":"museum"}]},{"name":"nightlife_venue","displayName":"Nightlife Venue","isBasic":true,"children":[{"name":"adult_entertainment_venue","displayName":"Adult Entertainment Venue","isBasic":true,"children":[{"name":"erotic_massage_venue","displayName":"Erotic Massage Venue","basicCategory":"adult_entertainment_venue"},{"name":"strip_club","displayName":"Strip Club","basicCategory":"adult_entertainment_venue"}]},{"name":"bar_crawl","displayName":"Bar Crawl","basicCategory":"nightlife_venue"},{"name":"club_crawl","displayName":"Club Crawl","basicCategory":"nightlife_venue"},{"name":"dance_club","displayName":"Dance Club","isBasic":true,"children":[{"name":"salsa_club","displayName":"Salsa Club","basicCategory":"dance_club"}]}]},{"name":"performing_arts_venue","displayName":"Performing Arts Venue","isBasic":true,"children":[{"name":"amphitheater","displayName":"Amphitheater","basicCategory":"performing_arts_venue"},{"name":"cabaret","displayName":"Cabaret","basicCategory":"performing_arts_venue"},{"name":"comedy_club","displayName":"Comedy Club","isBasic":true},{"name":"music_venue","displayName":"Music Venue","isBasic":true,"children":[{"name":"band_orchestra_symphony","displayName":"Band Orchestra Symphony","basicCategory":"music_venue"},{"name":"choir","displayName":"Choir","basicCategory":"music_venue"},{"name":"jazz_and_blues_venue","displayName":"Jazz and Blues Venue","basicCategory":"music_venue"},{"name":"karaoke_venue","displayName":"Karaoke Venue","basicCategory":"music_venue"},{"name":"opera_and_ballet","displayName":"Opera and Ballet","basicCategory":"music_venue"}]},{"name":"theatre_venue","displayName":"Theatre Venue","isBasic":true,"children":[{"name":"dinner_theater","displayName":"Dinner Theater","basicCategory":"theatre_venue"}]}]},{"name":"rural_attraction","displayName":"Rural Attraction","isBasic":true,"children":[{"name":"attraction_farm","displayName":"Attraction Farm","basicCategory":"rural_attraction"},{"name":"corn_maze","displayName":"Corn Maze","basicCategory":"rural_attraction"},{"name":"country_dance_hall","displayName":"Country Dance Hall","basicCategory":"rural_attraction"},{"name":"pumpkin_patch","displayName":"Pumpkin Patch","basicCategory":"rural_attraction"},{"name":"rodeo","displayName":"Rodeo","isBasic":true}]},{"name":"science_attraction","displayName":"Science Attraction","isBasic":true,"children":[{"name":"makerspace","displayName":"Makerspace","isBasic":true},{"name":"observatory","displayName":"Observatory","basicCategory":"science_attraction"},{"name":"planetarium","displayName":"Planetarium","isBasic":true},{"name":"virtual_reality_center","displayName":"Virtual Reality Center","basicCategory":"science_attraction","children":[{"name":"vr_cafe","displayName":"VR Cafe","basicCategory":"science_attraction"}]}]},{"name":"social_club","displayName":"Social Club","isBasic":true,"children":[{"name":"country_club","displayName":"Country Club","isBasic":true},{"name":"fraternal_organization","displayName":"Fraternal Organization","basicCategory":"social_club"},{"name":"veterans_organization","displayName":"Veterans Organization","basicCategory":"social_club"}]},{"name":"spiritual_advising","displayName":"Spiritual Advising","isBasic":true,"children":[{"name":"astrological_advising","displayName":"Astrological Advising","isBasic":true},{"name":"fortune_telling","displayName":"Fortune Telling","basicCategory":"spiritual_advising"},{"name":"psychic_advising","displayName":"Psychic Advising","isBasic":true}]},{"name":"stadium_arena","displayName":"Stadium Arena","isBasic":true,"children":[{"name":"arena","displayName":"Arena","basicCategory":"stadium_arena"},{"name":"stadium","displayName":"Stadium","basicCategory":"stadium_arena","children":[{"name":"baseball_stadium","displayName":"Baseball Stadium","basicCategory":"stadium_arena"},{"name":"basketball_stadium","displayName":"Basketball Stadium","basicCategory":"stadium_arena"},{"name":"cricket_ground","displayName":"Cricket Ground","basicCategory":"stadium_arena"},{"name":"football_stadium","displayName":"Football Stadium","basicCategory":"stadium_arena"},{"name":"hockey_arena","displayName":"Hockey Arena","basicCategory":"stadium_arena"},{"name":"rugby_stadium","displayName":"Rugby Stadium","basicCategory":"stadium_arena"},{"name":"soccer_stadium","displayName":"Soccer Stadium","basicCategory":"stadium_arena"},{"name":"tennis_stadium","displayName":"Tennis Stadium","basicCategory":"stadium_arena"},{"name":"track_stadium","displayName":"Track Stadium","basicCategory":"stadium_arena"}]}]},{"name":"ticket_office_or_booth","displayName":"Ticket Office or Booth","isBasic":true}]},{"name":"community_and_government","displayName":"Community and Government","isBasic":true,"children":[{"name":"civic_organization","displayName":"Civic Organization","isBasic":true,"children":[{"name":"charity_organization","displayName":"Charity Organization","basicCategory":"civic_organization"},{"name":"civic_center","displayName":"Civic Center","isBasic":true},{"name":"labor_union","displayName":"Labor Union","isBasic":true},{"name":"non_governmental_association","displayName":"Non Governmental Association","basicCategory":"civic_organization"},{"name":"political_organization","displayName":"Political Organization","isBasic":true,"children":[{"name":"political_party_office","displayName":"Political Party Office","basicCategory":"political_organization"}]}]},{"name":"government_office","displayName":"Government Office","isBasic":true,"children":[{"name":"chambers_of_commerce","displayName":"Chambers of Commerce","basicCategory":"government_office"},{"name":"courthouse","displayName":"Courthouse","isBasic":true},{"name":"embassy","displayName":"Embassy","isBasic":true},{"name":"government_department","displayName":"Government Department","isBasic":true,"children":[{"name":"department_of_motor_vehicles","displayName":"Department of Motor Vehicles","basicCategory":"government_department"},{"name":"department_of_social_service","displayName":"Department of Social Service","basicCategory":"government_department"},{"name":"health_department","displayName":"Health Department","basicCategory":"government_department"}]},{"name":"immigration_and_naturalization_office","displayName":"Immigration and Naturalization Office","basicCategory":"government_office"},{"name":"national_security_service","displayName":"National Security Service","basicCategory":"government_office"},{"name":"office_of_vital_records","displayName":"Office of Vital Records","basicCategory":"government_office"},{"name":"pension_office","displayName":"Pension Office","basicCategory":"government_office"},{"name":"registry_office","displayName":"Registry Office","basicCategory":"government_office"},{"name":"social_security_service","displayName":"Social Security Service","basicCategory":"government_office"},{"name":"tax_office","displayName":"Tax Office","basicCategory":"government_office"},{"name":"town_hall","displayName":"Town Hall","basicCategory":"government_office"},{"name":"unemployment_office","displayName":"Unemployment Office","basicCategory":"government_office"}]},{"name":"military_site","displayName":"Military Site","isBasic":true,"children":[{"name":"military_base","displayName":"Military Base","isBasic":true},{"name":"military_office","displayName":"Military Office","isBasic":true}]},{"name":"public_facility","displayName":"Public Facility","isBasic":true,"children":[{"name":"public_fountain","displayName":"Public Fountain","isBasic":true,"children":[{"name":"drinking_fountain","displayName":"Drinking Fountain","basicCategory":"public_fountain"}]},{"name":"public_pathway","displayName":"Public Pathway","isBasic":true},{"name":"public_phone","displayName":"Public Phone","basicCategory":"public_facility"},{"name":"public_plaza","displayName":"Public Plaza","isBasic":true},{"name":"public_restroom","displayName":"Public Restroom","isBasic":true}]},{"name":"public_safety_service","displayName":"Public Safety Service","isBasic":true,"children":[{"name":"fire_station","displayName":"Fire Station","isBasic":true},{"name":"jail_or_prison","displayName":"Jail or Prison","isBasic":true,"children":[{"name":"juvenile_detention_center","displayName":"Juvenile Detention Center","basicCategory":"jail_or_prison"}]},{"name":"police_station","displayName":"Police Station","isBasic":true}]},{"name":"public_utility","displayName":"Public Utility","isBasic":true,"children":[{"name":"electric_utility_provider","displayName":"Electric Utility Provider","isBasic":true},{"name":"garbage_collection_service","displayName":"Garbage Collection Service","basicCategory":"public_utility"},{"name":"natural_gas_utility_provider","displayName":"Natural Gas Utility Provider","isBasic":true},{"name":"septic_service","displayName":"Septic Service","basicCategory":"public_utility"},{"name":"water_utility_provider","displayName":"Water Utility Provider","isBasic":true}]},{"name":"social_or_community_service","displayName":"Social or Community Service","isBasic":true,"children":[{"name":"child_protection_service","displayName":"Child Protection Service","basicCategory":"social_or_community_service"},{"name":"community_center","displayName":"Community Center","isBasic":true},{"name":"disability_services_and_support_organization","displayName":"Disability Services and Support Organization","basicCategory":"social_or_community_service"},{"name":"food_bank","displayName":"Food Bank","isBasic":true},{"name":"foster_care_service","displayName":"Foster Care Service","basicCategory":"social_or_community_service"},{"name":"gay_and_lesbian_services_organization","displayName":"Gay and Lesbian Services Organization","basicCategory":"social_or_community_service"},{"name":"homeless_shelter","displayName":"Homeless Shelter","basicCategory":"social_or_community_service"},{"name":"housing_authority","displayName":"Housing Authority","basicCategory":"social_or_community_service"},{"name":"scout_hall","displayName":"Scout Hall","basicCategory":"social_or_community_service"},{"name":"senior_citizen_service","displayName":"Senior Citizen Service","basicCategory":"social_or_community_service"},{"name":"social_and_human_service","displayName":"Social and Human Service","basicCategory":"social_or_community_service"},{"name":"social_welfare_center","displayName":"Social Welfare Center","basicCategory":"social_or_community_service"},{"name":"volunteer_association","displayName":"Volunteer Association","basicCategory":"social_or_community_service"},{"name":"youth_organization","displayName":"Youth Organization","isBasic":true}]}]},{"name":"cultural_and_historic","displayName":"Cultural and Historic","isBasic":true,"children":[{"name":"cultural_center","displayName":"Cultural Center","isBasic":true},{"name":"historic_site","displayName":"Historic Site","isBasic":true,"children":[{"name":"castle","displayName":"Castle","isBasic":true},{"name":"fort","displayName":"Fort","isBasic":true},{"name":"historic_mission","displayName":"Historic Mission","basicCategory":"historic_site"},{"name":"historic_tower","displayName":"Historic Tower","basicCategory":"historic_site"},{"name":"lighthouse","displayName":"Lighthouse","isBasic":true},{"name":"palace","displayName":"Palace","basicCategory":"historic_site"},{"name":"ruin","displayName":"Ruin","basicCategory":"historic_site"}]},{"name":"memorial_site","displayName":"Memorial Site","isBasic":true,"children":[{"name":"cemetery","displayName":"Cemetery","isBasic":true},{"name":"memorial_park","displayName":"Memorial Park","basicCategory":"memorial_site"},{"name":"monument","displayName":"Monument","isBasic":true}]},{"name":"place_of_worship","displayName":"Place of Worship","isBasic":true,"children":[{"name":"buddhist_place_of_worship","displayName":"Buddhist Place of Worship","isBasic":true,"children":[{"name":"mahayana_buddhist_place_of_worship","displayName":"Mahayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","children":[{"name":"nichiren_buddhist_place_of_worship","displayName":"Nichiren Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"pure_land_buddhist_place_of_worship","displayName":"Pure Land Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"zen_buddhist_place_of_worship","displayName":"Zen Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"}]},{"name":"theravada_buddhist_place_of_worship","displayName":"Theravada Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"vajrayana_buddhist_place_of_worship","displayName":"Vajrayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"}]},{"name":"christian_place_of_worship","displayName":"Christian Place of Worship","isBasic":true,"children":[{"name":"church_of_the_east_place_of_worship","displayName":"Church of the East Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"eastern_orthodox_place_of_worship","displayName":"Eastern Orthodox Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"antiochan_orthodox_place_of_worship","displayName":"Antiochan Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"bulgarian_orthodox_place_of_worship","displayName":"Bulgarian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"georgian_orthodox_place_of_worship","displayName":"Georgian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"greek_orthodox_place_of_worship","displayName":"Greek Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"romanian_orthodox_place_of_worship","displayName":"Romanian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"russian_orthodox_place_of_worship","displayName":"Russian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"serbian_orthodox_place_of_worship","displayName":"Serbian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"oriental_orthodox_place_of_worship","displayName":"Oriental Orthodox Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"armenian_apostolic_place_of_worship","displayName":"Armenian Apostolic Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"coptic_orthodox_place_of_worship","displayName":"Coptic Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"eritrean_orthodox_tewahedo_place_of_worship","displayName":"Eritrean Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"ethiopian_orthodox_tewahedo_place_of_worship","displayName":"Ethiopian Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"malankara_orthodox_syrian_place_of_worship","displayName":"Malankara Orthodox Syrian Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"syriac_orthodox_place_of_worship","displayName":"Syriac Orthodox Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"protestant_place_of_worship","displayName":"Protestant Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"adventist_place_of_worship","displayName":"Adventist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"anabaptist_place_of_worship","displayName":"Anabaptist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"anglican_or_episcopal_place_of_worship","displayName":"Anglican or Episcopal Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"baptist_place_of_worship","displayName":"Baptist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"lutheran_place_of_worship","displayName":"Lutheran Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"methodist_place_of_worship","displayName":"Methodist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"pentecostal_place_of_worship","displayName":"Pentecostal Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"reformed_or_calvinist_place_of_worship","displayName":"Reformed or Calvinist Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"restorationist_place_of_worship","displayName":"Restorationist Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"jehovahs_witness_place_of_worship","displayName":"Jehovahs Witness Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"mormon_place_of_worship","displayName":"Mormon Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"roman_catholic_place_of_worship","displayName":"Roman Catholic Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"eastern_catholic_place_of_worship","displayName":"Eastern Catholic Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"western_catholic_place_of_worship","displayName":"Western Catholic Place of Worship","basicCategory":"christian_place_of_worship"}]}]},{"name":"hindu_place_of_worship","displayName":"Hindu Place of Worship","isBasic":true,"children":[{"name":"shaiva_hindu_place_of_worship","displayName":"Shaiva Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"shakta_hindu_place_of_worship","displayName":"Shakta Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"smarta_hindu_place_of_worship","displayName":"Smarta Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"vaishnava_hindu_place_of_worship","displayName":"Vaishnava Hindu Place of Worship","basicCategory":"hindu_place_of_worship"}]},{"name":"jewish_place_of_worship","displayName":"Jewish Place of Worship","isBasic":true,"children":[{"name":"conservative_jewish_place_of_worship","displayName":"Conservative Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"orthodox_jewish_place_of_worship","displayName":"Orthodox Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"reconstructionist_jewish_place_of_worship","displayName":"Reconstructionist Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"reform_jewish_place_of_worship","displayName":"Reform Jewish Place of Worship","basicCategory":"jewish_place_of_worship"}]},{"name":"muslim_place_of_worship","displayName":"Muslim Place of Worship","isBasic":true,"children":[{"name":"ibadi_muslim_place_of_worship","displayName":"Ibadi Muslim Place of Worship","basicCategory":"muslim_place_of_worship"},{"name":"shia_muslim_place_of_worship","displayName":"Shia Muslim Place of Worship","basicCategory":"muslim_place_of_worship"},{"name":"sunni_muslim_place_of_worship","displayName":"Sunni Muslim Place of Worship","basicCategory":"muslim_place_of_worship"}]},{"name":"sikh_place_of_worship","displayName":"Sikh Place of Worship","basicCategory":"place_of_worship"}]},{"name":"religious_landmark","displayName":"Religious Landmark","isBasic":true,"children":[{"name":"pilgrimage_site","displayName":"Pilgrimage Site","basicCategory":"religious_landmark","children":[{"name":"buddhist_pilgrimage_site","displayName":"Buddhist Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"christian_pilgrimage_site","displayName":"Christian Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"hindu_pilgrimage_site","displayName":"Hindu Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"muslim_pilgrimage_site","displayName":"Muslim Pilgrimage Site","basicCategory":"religious_landmark"}]},{"name":"shrine","displayName":"Shrine","basicCategory":"religious_landmark","children":[{"name":"catholic_shrine","displayName":"Catholic Shrine","basicCategory":"religious_landmark"},{"name":"shinto_shrine","displayName":"Shinto Shrine","basicCategory":"religious_landmark"},{"name":"sufi_shrine","displayName":"Sufi Shrine","basicCategory":"religious_landmark"}]}]},{"name":"religious_organization","displayName":"Religious Organization","isBasic":true,"children":[{"name":"convent","displayName":"Convent","basicCategory":"religious_organization"},{"name":"monastery","displayName":"Monastery","basicCategory":"religious_organization"},{"name":"seminary","displayName":"Seminary","basicCategory":"religious_organization"}]},{"name":"religious_retreat_or_center","displayName":"Religious Retreat or Center","isBasic":true,"children":[{"name":"christian_retreat_center","displayName":"Christian Retreat Center","basicCategory":"religious_retreat_or_center"},{"name":"hindu_ashram","displayName":"Hindu Ashram","basicCategory":"religious_retreat_or_center"},{"name":"zen_center","displayName":"Zen Center","basicCategory":"religious_retreat_or_center"}]}]},{"name":"education","displayName":"Education","isBasic":true,"children":[{"name":"education_office","displayName":"Education Office","isBasic":true,"children":[{"name":"board_of_education_office","displayName":"Board of Education Office","basicCategory":"education_office"},{"name":"school_district_office","displayName":"School District Office","isBasic":true}]},{"name":"educational_facility","displayName":"Educational Facility","isBasic":true,"children":[{"name":"campus","displayName":"Campus","isBasic":true},{"name":"campus_building","displayName":"Campus Building","isBasic":true,"children":[{"name":"student_union","displayName":"Student Union","basicCategory":"campus_building"}]},{"name":"educational_camp","displayName":"Educational Camp","basicCategory":"educational_facility"}]},{"name":"educational_service","displayName":"Educational Service","isBasic":true,"children":[{"name":"after_school_program","displayName":"After School Program","basicCategory":"educational_service"},{"name":"archaeological_service","displayName":"Archaeological Service","basicCategory":"educational_service"},{"name":"college_counseling","displayName":"College Counseling","basicCategory":"educational_service"},{"name":"test_preparation","displayName":"Test Preparation","basicCategory":"educational_service"},{"name":"tutoring_service","displayName":"Tutoring Service","isBasic":true,"children":[{"name":"private_tutor","displayName":"Private Tutor","basicCategory":"tutoring_service"}]}]},{"name":"library","displayName":"Library","isBasic":true},{"name":"place_of_learning","displayName":"Place of Learning","isBasic":true,"children":[{"name":"academy","displayName":"Academy","isBasic":true,"children":[{"name":"civil_examinations_academy","displayName":"Civil Examinations Academy","basicCategory":"academy"}]},{"name":"adult_education_center","displayName":"Adult Education Center","basicCategory":"place_of_learning"},{"name":"class_venue","displayName":"Class Venue","isBasic":true,"children":[{"name":"tasting_class","displayName":"Tasting Class","basicCategory":"class_venue","children":[{"name":"cheese_tasting_class","displayName":"Cheese Tasting Class","basicCategory":"class_venue"},{"name":"wine_tasting_class","displayName":"Wine Tasting Class","basicCategory":"class_venue"}]}]},{"name":"college_university","displayName":"College University","isBasic":true,"children":[{"name":"architecture_school","displayName":"Architecture School","basicCategory":"college_university"},{"name":"business_school","displayName":"Business School","basicCategory":"college_university"},{"name":"engineering_school","displayName":"Engineering School","basicCategory":"college_university"},{"name":"law_school","displayName":"Law School","basicCategory":"college_university"},{"name":"medical_sciences_school","displayName":"Medical Sciences School","basicCategory":"college_university","children":[{"name":"dentistry_school","displayName":"Dentistry School","basicCategory":"college_university"},{"name":"pharmacy_school","displayName":"Pharmacy School","basicCategory":"college_university"},{"name":"veterinary_school","displayName":"Veterinary School","basicCategory":"college_university"}]},{"name":"science_school","displayName":"Science School","basicCategory":"college_university"}]},{"name":"school","displayName":"School","basicCategory":"place_of_learning","children":[{"name":"charter_school","displayName":"Charter School","basicCategory":"place_of_learning"},{"name":"elementary_school","displayName":"Elementary School","isBasic":true},{"name":"high_school","displayName":"High School","isBasic":true},{"name":"kindergarten","displayName":"Kindergarten","isBasic":true},{"name":"middle_school","displayName":"Middle School","isBasic":true},{"name":"montessori_school","displayName":"Montessori School","basicCategory":"place_of_learning"},{"name":"preschool","displayName":"Preschool","isBasic":true},{"name":"private_school","displayName":"Private School","basicCategory":"place_of_learning"},{"name":"public_school","displayName":"Public School","basicCategory":"place_of_learning"},{"name":"religious_school","displayName":"Religious School","basicCategory":"place_of_learning"},{"name":"waldorf_school","displayName":"Waldorf School","basicCategory":"place_of_learning"}]},{"name":"specialty_school","displayName":"Specialty School","isBasic":true,"children":[{"name":"art_school","displayName":"Art School","basicCategory":"specialty_school"},{"name":"bartending_school","displayName":"Bartending School","basicCategory":"specialty_school"},{"name":"cheerleading","displayName":"Cheerleading","basicCategory":"specialty_school"},{"name":"childbirth_education","displayName":"Childbirth Education","basicCategory":"specialty_school"},{"name":"circus_school","displayName":"Circus School","basicCategory":"specialty_school"},{"name":"computer_coaching","displayName":"Computer Coaching","basicCategory":"specialty_school"},{"name":"cooking_school","displayName":"Cooking School","basicCategory":"specialty_school"},{"name":"cosmetology_school","displayName":"Cosmetology School","basicCategory":"specialty_school"},{"name":"cpr_class","displayName":"CPR Class","basicCategory":"specialty_school"},{"name":"drama_school","displayName":"Drama School","basicCategory":"specialty_school"},{"name":"driving_school","displayName":"Driving School","basicCategory":"specialty_school"},{"name":"dui_school","displayName":"DUI School","basicCategory":"specialty_school"},{"name":"firearm_training","displayName":"Firearm Training","basicCategory":"specialty_school"},{"name":"first_aid_class","displayName":"First Aid Class","basicCategory":"specialty_school"},{"name":"flight_school","displayName":"Flight School","basicCategory":"specialty_school"},{"name":"food_safety_training","displayName":"Food Safety Training","basicCategory":"specialty_school"},{"name":"language_school","displayName":"Language School","basicCategory":"specialty_school"},{"name":"massage_school","displayName":"Massage School","basicCategory":"specialty_school"},{"name":"medical_school","displayName":"Medical School","basicCategory":"specialty_school"},{"name":"music_school","displayName":"Music School","basicCategory":"specialty_school"},{"name":"nursing_school","displayName":"Nursing School","basicCategory":"specialty_school"},{"name":"parenting_class","displayName":"Parenting Class","basicCategory":"specialty_school"},{"name":"photography_class","displayName":"Photography Class","basicCategory":"specialty_school"},{"name":"speech_training","displayName":"Speech Training","basicCategory":"specialty_school"},{"name":"sports_school","displayName":"Sports School","basicCategory":"specialty_school"},{"name":"traffic_school","displayName":"Traffic School","basicCategory":"specialty_school"},{"name":"vocational_and_technical_school","displayName":"Vocational and Technical School","basicCategory":"specialty_school"}]}]},{"name":"research_institute","displayName":"Research Institute","isBasic":true,"children":[{"name":"educational_research_institute","displayName":"Educational Research Institute","basicCategory":"research_institute"},{"name":"medical_research_institute","displayName":"Medical Research Institute","basicCategory":"research_institute"}]}]},{"name":"food_and_drink","displayName":"Food and Drink","isBasic":true,"children":[{"name":"alcoholic_beverage_venue","displayName":"Alcoholic Beverage Venue","isBasic":true,"children":[{"name":"bar","displayName":"Bar","isBasic":true,"children":[{"name":"bar_tabac","displayName":"Bar Tabac","basicCategory":"bar"},{"name":"beach_bar","displayName":"Beach Bar","basicCategory":"bar"},{"name":"beer_bar","displayName":"Beer Bar","basicCategory":"bar"},{"name":"champagne_bar","displayName":"Champagne Bar","basicCategory":"bar"},{"name":"cigar_bar","displayName":"Cigar Bar","basicCategory":"bar"},{"name":"cocktail_bar","displayName":"Cocktail Bar","basicCategory":"bar"},{"name":"dive_bar","displayName":"Dive Bar","basicCategory":"bar"},{"name":"drive_thru_bar","displayName":"Drive Thru Bar","basicCategory":"bar"},{"name":"gay_bar","displayName":"Gay Bar","basicCategory":"bar"},{"name":"hookah_bar","displayName":"Hookah Bar","basicCategory":"bar"},{"name":"hotel_bar","displayName":"Hotel Bar","basicCategory":"bar"},{"name":"piano_bar","displayName":"Piano Bar","basicCategory":"bar"},{"name":"pub","displayName":"Pub","basicCategory":"bar","children":[{"name":"irish_pub","displayName":"Irish Pub","basicCategory":"bar"}]},{"name":"sake_bar","displayName":"Sake Bar","basicCategory":"bar"},{"name":"speakeasy","displayName":"Speakeasy","basicCategory":"bar"},{"name":"sports_bar","displayName":"Sports Bar","basicCategory":"bar"},{"name":"tiki_bar","displayName":"Tiki Bar","basicCategory":"bar"},{"name":"vermouth_bar","displayName":"Vermouth Bar","basicCategory":"bar"},{"name":"whiskey_bar","displayName":"Whiskey Bar","basicCategory":"bar"},{"name":"wine_bar","displayName":"Wine Bar","basicCategory":"bar"}]},{"name":"beer_garden","displayName":"Beer Garden","basicCategory":"alcoholic_beverage_venue"},{"name":"brewery","displayName":"Brewery","isBasic":true},{"name":"cidery","displayName":"Cidery","basicCategory":"alcoholic_beverage_venue"},{"name":"distillery","displayName":"Distillery","isBasic":true},{"name":"lounge","displayName":"Lounge","isBasic":true,"children":[{"name":"airport_lounge","displayName":"Airport Lounge","basicCategory":"lounge"}]},{"name":"winery","displayName":"Winery","isBasic":true,"children":[{"name":"wine_tasting_room","displayName":"Wine Tasting Room","basicCategory":"winery"}]}]},{"name":"casual_eatery","displayName":"Casual Eatery","isBasic":true,"children":[{"name":"bagel_shop","displayName":"Bagel Shop","basicCategory":"casual_eatery"},{"name":"bakery","displayName":"Bakery","basicCategory":"casual_eatery","children":[{"name":"baguette_shop","displayName":"Baguette Shop","basicCategory":"casual_eatery"},{"name":"flatbread_shop","displayName":"Flatbread Shop","basicCategory":"casual_eatery"},{"name":"macaron_shop","displayName":"Macaron Shop","basicCategory":"casual_eatery"},{"name":"pretzel_shop","displayName":"Pretzel Shop","basicCategory":"casual_eatery"}]},{"name":"bistro","displayName":"Bistro","basicCategory":"casual_eatery"},{"name":"cafe","displayName":"Cafe","isBasic":true,"children":[{"name":"animal_cafe","displayName":"Animal Cafe","basicCategory":"cafe","children":[{"name":"cat_cafe","displayName":"Cat Cafe","basicCategory":"cafe"},{"name":"dog_cafe","displayName":"Dog Cafe","basicCategory":"cafe"}]},{"name":"hong_kong_style_cafe","displayName":"Hong Kong Style Cafe","basicCategory":"cafe"},{"name":"internet_cafe","displayName":"Internet Cafe","basicCategory":"cafe"}]},{"name":"candy_store","displayName":"Candy Store","basicCategory":"casual_eatery","children":[{"name":"chocolatier","displayName":"Chocolatier","basicCategory":"casual_eatery"},{"name":"indian_sweets_shop","displayName":"Indian Sweets Shop","basicCategory":"casual_eatery"},{"name":"japanese_confectionery_shop","displayName":"Japanese Confectionery Shop","basicCategory":"casual_eatery"}]},{"name":"canteen","displayName":"Canteen","basicCategory":"casual_eatery"},{"name":"delicatessen","displayName":"Delicatessen","basicCategory":"casual_eatery"},{"name":"dessert_shop","displayName":"Dessert Shop","basicCategory":"casual_eatery","children":[{"name":"cupcake_shop","displayName":"Cupcake Shop","basicCategory":"casual_eatery"},{"name":"donut_shop","displayName":"Donut Shop","basicCategory":"casual_eatery"},{"name":"frozen_yogurt_shop","displayName":"Frozen Yogurt Shop","basicCategory":"casual_eatery"},{"name":"gelato_shop","displayName":"Gelato Shop","basicCategory":"casual_eatery"},{"name":"ice_cream_shop","displayName":"Ice Cream Shop","basicCategory":"casual_eatery"},{"name":"pie_shop","displayName":"Pie Shop","basicCategory":"casual_eatery"},{"name":"shaved_ice_shop","displayName":"Shaved Ice Shop","basicCategory":"casual_eatery"}]},{"name":"diner","displayName":"Diner","basicCategory":"casual_eatery"},{"name":"fast_food_restaurant","displayName":"Fast Food Restaurant","isBasic":true},{"name":"fondue_restaurant","displayName":"Fondue Restaurant","basicCategory":"casual_eatery"},{"name":"food_court","displayName":"Food Court","isBasic":true},{"name":"food_truck_stand","displayName":"Food Truck or Stand","isBasic":true},{"name":"friterie","displayName":"Friterie","basicCategory":"casual_eatery"},{"name":"gastropub","displayName":"Gastropub","basicCategory":"casual_eatery"},{"name":"popcorn_shop","displayName":"Popcorn Shop","basicCategory":"casual_eatery"},{"name":"sandwich_shop","displayName":"Sandwich Shop","basicCategory":"casual_eatery"},{"name":"sugar_shack","displayName":"Sugar Shack","basicCategory":"casual_eatery"},{"name":"tapas_bar","displayName":"Tapas Bar","basicCategory":"casual_eatery"}]},{"name":"non_alcoholic_beverage_venue","displayName":"Non-Alcoholic Beverage Venue","isBasic":true,"children":[{"name":"bubble_tea_shop","displayName":"Bubble Tea Shop","basicCategory":"non_alcoholic_beverage_venue"},{"name":"coffee_shop","displayName":"Coffee Shop","isBasic":true,"children":[{"name":"coffee_roastery","displayName":"Coffee Roastery","basicCategory":"coffee_shop"}]},{"name":"kombucha_bar","displayName":"Kombucha Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"milk_bar","displayName":"Milk Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"milkshake_bar","displayName":"Milkshake Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"smoothie_juice_bar","displayName":"Smoothie or Juice Bar","isBasic":true},{"name":"tea_room","displayName":"Tea Room","basicCategory":"non_alcoholic_beverage_venue"}]},{"name":"restaurant","displayName":"Restaurant","isBasic":true,"children":[{"name":"african_restaurant","displayName":"African Restaurant","basicCategory":"restaurant","children":[{"name":"east_african_restaurant","displayName":"East African Restaurant","basicCategory":"restaurant","children":[{"name":"eritrean_restaurant","displayName":"Eritrean Restaurant","basicCategory":"restaurant"},{"name":"ethiopian_restaurant","displayName":"Ethiopian Restaurant","basicCategory":"restaurant"},{"name":"somalian_restaurant","displayName":"Somalian Restaurant","basicCategory":"restaurant"}]},{"name":"north_african_restaurant","displayName":"North African Restaurant","basicCategory":"restaurant","children":[{"name":"algerian_restaurant","displayName":"Algerian Restaurant","basicCategory":"restaurant"},{"name":"egyptian_restaurant","displayName":"Egyptian Restaurant","basicCategory":"restaurant"},{"name":"moroccan_restaurant","displayName":"Moroccan Restaurant","basicCategory":"restaurant"}]},{"name":"southern_african_restaurant","displayName":"Southern African Restaurant","basicCategory":"restaurant","children":[{"name":"south_african_restaurant","displayName":"South African Restaurant","basicCategory":"restaurant"}]},{"name":"west_african_restaurant","displayName":"West African Restaurant","basicCategory":"restaurant","children":[{"name":"ghanaian_restaurant","displayName":"Ghanaian Restaurant","basicCategory":"restaurant"},{"name":"nigerian_restaurant","displayName":"Nigerian Restaurant","basicCategory":"restaurant"},{"name":"senegalese_restaurant","displayName":"Senegalese Restaurant","basicCategory":"restaurant"}]}]},{"name":"asian_restaurant","displayName":"Asian Restaurant","basicCategory":"restaurant","children":[{"name":"central_asian_restaurant","displayName":"Central Asian Restaurant","basicCategory":"restaurant","children":[{"name":"afghani_restaurant","displayName":"Afghani Restaurant","basicCategory":"restaurant"},{"name":"kazakhstani_restaurant","displayName":"Kazakhstani Restaurant","basicCategory":"restaurant"},{"name":"uzbek_restaurant","displayName":"Uzbek Restaurant","basicCategory":"restaurant"}]},{"name":"east_asian_restaurant","displayName":"East Asian Restaurant","basicCategory":"restaurant","children":[{"name":"chinese_restaurant","displayName":"Chinese Restaurant","basicCategory":"restaurant","children":[{"name":"baozi_restaurant","displayName":"Baozi Restaurant","basicCategory":"restaurant"},{"name":"beijing_restaurant","displayName":"Beijing Restaurant","basicCategory":"restaurant"},{"name":"cantonese_restaurant","displayName":"Cantonese Restaurant","basicCategory":"restaurant"},{"name":"dim_sum_restaurant","displayName":"Dim Sum Restaurant","basicCategory":"restaurant"},{"name":"dongbei_restaurant","displayName":"Dongbei Restaurant","basicCategory":"restaurant"},{"name":"fujian_restaurant","displayName":"Fujian Restaurant","basicCategory":"restaurant"},{"name":"hunan_restaurant","displayName":"Hunan Restaurant","basicCategory":"restaurant"},{"name":"indo_chinese_restaurant","displayName":"Indo Chinese Restaurant","basicCategory":"restaurant"},{"name":"jiangsu_restaurant","displayName":"Jiangsu Restaurant","basicCategory":"restaurant"},{"name":"shandong_restaurant","displayName":"Shandong Restaurant","basicCategory":"restaurant"},{"name":"shanghainese_restaurant","displayName":"Shanghainese Restaurant","basicCategory":"restaurant"},{"name":"sichuan_restaurant","displayName":"Sichuan Restaurant","basicCategory":"restaurant"},{"name":"xinjiang_restaurant","displayName":"Xinjiang Restaurant","basicCategory":"restaurant"}]},{"name":"japanese_restaurant","displayName":"Japanese Restaurant","basicCategory":"restaurant","children":[{"name":"sushi_restaurant","displayName":"Sushi Restaurant","basicCategory":"restaurant"}]},{"name":"korean_restaurant","displayName":"Korean Restaurant","basicCategory":"restaurant"},{"name":"mongolian_restaurant","displayName":"Mongolian Restaurant","basicCategory":"restaurant"},{"name":"taiwanese_restaurant","displayName":"Taiwanese Restaurant","basicCategory":"restaurant"}]},{"name":"ramen_restaurant","displayName":"Ramen Restaurant","basicCategory":"restaurant"},{"name":"south_asian_restaurant","displayName":"South Asian Restaurant","basicCategory":"restaurant","children":[{"name":"bangladeshi_restaurant","displayName":"Bangladeshi Restaurant","basicCategory":"restaurant"},{"name":"himalayan_restaurant","displayName":"Himalayan Restaurant","basicCategory":"restaurant","children":[{"name":"nepalese_restaurant","displayName":"Nepalese Restaurant","basicCategory":"restaurant"}]},{"name":"indian_restaurant","displayName":"Indian Restaurant","basicCategory":"restaurant","children":[{"name":"bengali_restaurant","displayName":"Bengali Restaurant","basicCategory":"restaurant"},{"name":"chettinad_restaurant","displayName":"Chettinad Restaurant","basicCategory":"restaurant"},{"name":"gujarati_restaurant","displayName":"Gujarati Restaurant","basicCategory":"restaurant"},{"name":"hyderabadi_restaurant","displayName":"Hyderabadi Restaurant","basicCategory":"restaurant"},{"name":"north_indian_restaurant","displayName":"North Indian Restaurant","basicCategory":"restaurant"},{"name":"punjabi_restaurant","displayName":"Punjabi Restaurant","basicCategory":"restaurant"},{"name":"rajasthani_restaurant","displayName":"Rajasthani Restaurant","basicCategory":"restaurant"},{"name":"south_indian_restaurant","displayName":"South Indian Restaurant","basicCategory":"restaurant"}]},{"name":"pakistani_restaurant","displayName":"Pakistani Restaurant","basicCategory":"restaurant"},{"name":"sri_lankan_restaurant","displayName":"Sri Lankan Restaurant","basicCategory":"restaurant"},{"name":"tibetan_restaurant","displayName":"Tibetan Restaurant","basicCategory":"restaurant"}]},{"name":"southeast_asian_restaurant","displayName":"Southeast Asian Restaurant","basicCategory":"restaurant","children":[{"name":"burmese_restaurant","displayName":"Burmese Restaurant","basicCategory":"restaurant"},{"name":"cambodian_restaurant","displayName":"Cambodian Restaurant","basicCategory":"restaurant"},{"name":"filipino_restaurant","displayName":"Filipino Restaurant","basicCategory":"restaurant"},{"name":"indonesian_restaurant","displayName":"Indonesian Restaurant","basicCategory":"restaurant","children":[{"name":"sundanese_restaurant","displayName":"Sundanese Restaurant","basicCategory":"restaurant"}]},{"name":"laotian_restaurant","displayName":"Laotian Restaurant","basicCategory":"restaurant"},{"name":"malaysian_restaurant","displayName":"Malaysian Restaurant","basicCategory":"restaurant"},{"name":"nasi_restaurant","displayName":"Nasi Restaurant","basicCategory":"restaurant"},{"name":"singaporean_restaurant","displayName":"Singaporean Restaurant","basicCategory":"restaurant"},{"name":"thai_restaurant","displayName":"Thai Restaurant","basicCategory":"restaurant"},{"name":"vietnamese_restaurant","displayName":"Vietnamese Restaurant","basicCategory":"restaurant"}]},{"name":"wok_restaurant","displayName":"Wok Restaurant","basicCategory":"restaurant"}]},{"name":"bar_and_grill_restaurant","displayName":"Bar and Grill Restaurant","basicCategory":"restaurant"},{"name":"breakfast_and_brunch_restaurant","displayName":"Breakfast and Brunch Restaurant","basicCategory":"restaurant","children":[{"name":"pancake_house","displayName":"Pancake House","basicCategory":"restaurant"},{"name":"waffle_restaurant","displayName":"Waffle Restaurant","basicCategory":"restaurant"}]},{"name":"buffet_restaurant","displayName":"Buffet Restaurant","basicCategory":"restaurant"},{"name":"cafeteria","displayName":"Cafeteria","basicCategory":"restaurant"},{"name":"comfort_food_restaurant","displayName":"Comfort Food Restaurant","basicCategory":"restaurant"},{"name":"diy_foods_restaurant","displayName":"DIY Foods Restaurant","basicCategory":"restaurant"},{"name":"dumpling_restaurant","displayName":"Dumpling Restaurant","basicCategory":"restaurant"},{"name":"european_restaurant","displayName":"European Restaurant","basicCategory":"restaurant","children":[{"name":"central_european_restaurant","displayName":"Central European Restaurant","basicCategory":"restaurant","children":[{"name":"austrian_restaurant","displayName":"Austrian Restaurant","basicCategory":"restaurant"},{"name":"czech_restaurant","displayName":"Czech Restaurant","basicCategory":"restaurant"},{"name":"german_restaurant","displayName":"German Restaurant","basicCategory":"restaurant","children":[{"name":"fischbrotchen_restaurant","displayName":"Fischbrotchen Restaurant","basicCategory":"restaurant"}]},{"name":"hungarian_restaurant","displayName":"Hungarian Restaurant","basicCategory":"restaurant"},{"name":"polish_restaurant","displayName":"Polish Restaurant","basicCategory":"restaurant"},{"name":"schnitzel_restaurant","displayName":"Schnitzel Restaurant","basicCategory":"restaurant"},{"name":"slovakian_restaurant","displayName":"Slovakian Restaurant","basicCategory":"restaurant"},{"name":"swiss_restaurant","displayName":"Swiss Restaurant","basicCategory":"restaurant"}]},{"name":"eastern_european_restaurant","displayName":"Eastern European Restaurant","basicCategory":"restaurant","children":[{"name":"belarusian_restaurant","displayName":"Belarusian Restaurant","basicCategory":"restaurant"},{"name":"bulgarian_restaurant","displayName":"Bulgarian Restaurant","basicCategory":"restaurant"},{"name":"lithuanian_restaurant","displayName":"Lithuanian Restaurant","basicCategory":"restaurant"},{"name":"romanian_restaurant","displayName":"Romanian Restaurant","basicCategory":"restaurant"},{"name":"russian_restaurant","displayName":"Russian Restaurant","basicCategory":"restaurant","children":[{"name":"tatar_restaurant","displayName":"Tatar Restaurant","basicCategory":"restaurant"}]},{"name":"serbo_croatian_restaurant","displayName":"Serbo-Croatian Restaurant","basicCategory":"restaurant"},{"name":"ukrainian_restaurant","displayName":"Ukrainian Restaurant","basicCategory":"restaurant"}]},{"name":"iberian_restaurant","displayName":"Iberian Restaurant","basicCategory":"restaurant","children":[{"name":"portuguese_restaurant","displayName":"Portuguese Restaurant","basicCategory":"restaurant"},{"name":"spanish_restaurant","displayName":"Spanish Restaurant","basicCategory":"restaurant","children":[{"name":"basque_restaurant","displayName":"Basque Restaurant","basicCategory":"restaurant"},{"name":"catalan_restaurant","displayName":"Catalan Restaurant","basicCategory":"restaurant"}]}]},{"name":"mediterranean_restaurant","displayName":"Mediterranean Restaurant","basicCategory":"restaurant","children":[{"name":"greek_restaurant","displayName":"Greek Restaurant","basicCategory":"restaurant"},{"name":"italian_restaurant","displayName":"Italian Restaurant","basicCategory":"restaurant","children":[{"name":"piadina_restaurant","displayName":"Piadina Restaurant","basicCategory":"restaurant"},{"name":"pizza_restaurant","displayName":"Pizza Restaurant","basicCategory":"restaurant"}]},{"name":"maltese_restaurant","displayName":"Maltese Restaurant","basicCategory":"restaurant"}]},{"name":"scandinavian_restaurant","displayName":"Scandinavian Restaurant","basicCategory":"restaurant","children":[{"name":"danish_restaurant","displayName":"Danish Restaurant","basicCategory":"restaurant"},{"name":"finnish_restaurant","displayName":"Finnish Restaurant","basicCategory":"restaurant"},{"name":"icelandic_restaurant","displayName":"Icelandic Restaurant","basicCategory":"restaurant"},{"name":"norwegian_restaurant","displayName":"Norwegian Restaurant","basicCategory":"restaurant"},{"name":"swedish_restaurant","displayName":"Swedish Restaurant","basicCategory":"restaurant"}]},{"name":"western_european_restaurant","displayName":"Western European Restaurant","basicCategory":"restaurant","children":[{"name":"belgian_restaurant","displayName":"Belgian Restaurant","basicCategory":"restaurant"},{"name":"british_restaurant","displayName":"British Restaurant","basicCategory":"restaurant"},{"name":"dutch_restaurant","displayName":"Dutch Restaurant","basicCategory":"restaurant"},{"name":"french_restaurant","displayName":"French Restaurant","basicCategory":"restaurant","children":[{"name":"brasserie","displayName":"Brasserie","basicCategory":"restaurant"}]},{"name":"irish_restaurant","displayName":"Irish Restaurant","basicCategory":"restaurant"},{"name":"scottish_restaurant","displayName":"Scottish Restaurant","basicCategory":"restaurant"},{"name":"welsh_restaurant","displayName":"Welsh Restaurant","basicCategory":"restaurant"}]}]},{"name":"haute_cuisine_restaurant","displayName":"Haute Cuisine Restaurant","basicCategory":"restaurant"},{"name":"international_fusion_restaurant","displayName":"International Fusion Restaurant","basicCategory":"restaurant","children":[{"name":"asian_fusion_restaurant","displayName":"Asian Fusion Restaurant","basicCategory":"restaurant"},{"name":"latin_fusion_restaurant","displayName":"Latin Fusion Restaurant","basicCategory":"restaurant"},{"name":"pan_asian_restaurant","displayName":"Pan Asian Restaurant","basicCategory":"restaurant"}]},{"name":"latin_american_restaurant","displayName":"Latin American Restaurant","basicCategory":"restaurant","children":[{"name":"caribbean_restaurant","displayName":"Caribbean Restaurant","basicCategory":"restaurant","children":[{"name":"cuban_restaurant","displayName":"Cuban Restaurant","basicCategory":"restaurant"},{"name":"dominican_restaurant","displayName":"Dominican Restaurant","basicCategory":"restaurant"},{"name":"haitian_restaurant","displayName":"Haitian Restaurant","basicCategory":"restaurant"},{"name":"jamaican_restaurant","displayName":"Jamaican Restaurant","basicCategory":"restaurant"},{"name":"puerto_rican_restaurant","displayName":"Puerto Rican Restaurant","basicCategory":"restaurant"},{"name":"trinidadian_restaurant","displayName":"Trinidadian Restaurant","basicCategory":"restaurant"}]},{"name":"central_american_restaurant","displayName":"Central American Restaurant","basicCategory":"restaurant","children":[{"name":"belizean_restaurant","displayName":"Belizean Restaurant","basicCategory":"restaurant"},{"name":"costa_rican_restaurant","displayName":"Costa Rican Restaurant","basicCategory":"restaurant"},{"name":"guatemalan_restaurant","displayName":"Guatemalan Restaurant","basicCategory":"restaurant"},{"name":"honduran_restaurant","displayName":"Honduran Restaurant","basicCategory":"restaurant"},{"name":"nicaraguan_restaurant","displayName":"Nicaraguan Restaurant","basicCategory":"restaurant"},{"name":"panamanian_restaurant","displayName":"Panamanian Restaurant","basicCategory":"restaurant"},{"name":"salvadoran_restaurant","displayName":"Salvadoran Restaurant","basicCategory":"restaurant"}]},{"name":"empanada_restaurant","displayName":"Empanada Restaurant","basicCategory":"restaurant"},{"name":"mexican_restaurant","displayName":"Mexican Restaurant","basicCategory":"restaurant"},{"name":"south_american_restaurant","displayName":"South American Restaurant","basicCategory":"restaurant","children":[{"name":"argentine_restaurant","displayName":"Argentine Restaurant","basicCategory":"restaurant"},{"name":"bolivian_restaurant","displayName":"Bolivian Restaurant","basicCategory":"restaurant"},{"name":"brazilian_restaurant","displayName":"Brazilian Restaurant","basicCategory":"restaurant"},{"name":"chilean_restaurant","displayName":"Chilean Restaurant","basicCategory":"restaurant"},{"name":"colombian_restaurant","displayName":"Colombian Restaurant","basicCategory":"restaurant"},{"name":"ecuadorian_restaurant","displayName":"Ecuadorian Restaurant","basicCategory":"restaurant"},{"name":"paraguayan_restaurant","displayName":"Paraguayan Restaurant","basicCategory":"restaurant"},{"name":"peruvian_restaurant","displayName":"Peruvian Restaurant","basicCategory":"restaurant"},{"name":"surinamese_restaurant","displayName":"Surinamese Restaurant","basicCategory":"restaurant"},{"name":"uruguayan_restaurant","displayName":"Uruguayan Restaurant","basicCategory":"restaurant"},{"name":"venezuelan_restaurant","displayName":"Venezuelan Restaurant","basicCategory":"restaurant"}]},{"name":"taco_restaurant","displayName":"Taco Restaurant","basicCategory":"restaurant"},{"name":"texmex_restaurant","displayName":"Texmex Restaurant","basicCategory":"restaurant"}]},{"name":"meat_restaurant","displayName":"Meat Restaurant","basicCategory":"restaurant","children":[{"name":"barbecue_restaurant","displayName":"Barbecue Restaurant","basicCategory":"restaurant"},{"name":"burger_restaurant","displayName":"Burger Restaurant","basicCategory":"restaurant"},{"name":"cheesesteak_restaurant","displayName":"Cheesesteak Restaurant","basicCategory":"restaurant"},{"name":"chicken_restaurant","displayName":"Chicken Restaurant","basicCategory":"restaurant"},{"name":"chicken_wings_restaurant","displayName":"Chicken Wings Restaurant","basicCategory":"restaurant"},{"name":"curry_sausage_restaurant","displayName":"Curry Sausage Restaurant","basicCategory":"restaurant"},{"name":"hot_dog_restaurant","displayName":"Hot Dog Restaurant","basicCategory":"restaurant"},{"name":"meatball_restaurant","displayName":"Meatball Restaurant","basicCategory":"restaurant"},{"name":"rotisserie_chicken_restaurant","displayName":"Rotisserie Chicken Restaurant","basicCategory":"restaurant"},{"name":"steakhouse","displayName":"Steakhouse","basicCategory":"restaurant"},{"name":"venison_restaurant","displayName":"Venison Restaurant","basicCategory":"restaurant"},{"name":"wild_game_meats_restaurant","displayName":"Wild Game Meats Restaurant","basicCategory":"restaurant"}]},{"name":"middle_eastern_restaurant","displayName":"Middle Eastern Restaurant","basicCategory":"restaurant","children":[{"name":"arabian_restaurant","displayName":"Arabian Restaurant","basicCategory":"restaurant"},{"name":"armenian_restaurant","displayName":"Armenian Restaurant","basicCategory":"restaurant"},{"name":"azerbaijani_restaurant","displayName":"Azerbaijani Restaurant","basicCategory":"restaurant"},{"name":"falafel_restaurant","displayName":"Falafel Restaurant","basicCategory":"restaurant"},{"name":"georgian_restaurant","displayName":"Georgian Restaurant","basicCategory":"restaurant"},{"name":"israeli_restaurant","displayName":"Israeli Restaurant","basicCategory":"restaurant"},{"name":"kofta_restaurant","displayName":"Kofta Restaurant","basicCategory":"restaurant"},{"name":"kurdish_restaurant","displayName":"Kurdish Restaurant","basicCategory":"restaurant"},{"name":"lebanese_restaurant","displayName":"Lebanese Restaurant","basicCategory":"restaurant"},{"name":"palestinian_restaurant","displayName":"Palestinian Restaurant","basicCategory":"restaurant"},{"name":"persian_restaurant","displayName":"Persian Restaurant","basicCategory":"restaurant"},{"name":"syrian_restaurant","displayName":"Syrian Restaurant","basicCategory":"restaurant"},{"name":"turkish_restaurant","displayName":"Turkish Restaurant","basicCategory":"restaurant","children":[{"name":"doner_kebab_restaurant","displayName":"Doner Kebab Restaurant","basicCategory":"restaurant"}]},{"name":"turkmen_restaurant","displayName":"Turkmen Restaurant","basicCategory":"restaurant"},{"name":"yemenite_restaurant","displayName":"Yemenite Restaurant","basicCategory":"restaurant"}]},{"name":"north_american_restaurant","displayName":"North American Restaurant","basicCategory":"restaurant","children":[{"name":"american_restaurant","displayName":"American Restaurant","basicCategory":"restaurant","children":[{"name":"cajun_and_creole_restaurant","displayName":"Cajun and Creole Restaurant","basicCategory":"restaurant"},{"name":"southern_american_restaurant","displayName":"Southern American Restaurant","basicCategory":"restaurant"}]},{"name":"canadian_restaurant","displayName":"Canadian Restaurant","basicCategory":"restaurant","children":[{"name":"poutinerie_restaurant","displayName":"Poutinerie Restaurant","basicCategory":"restaurant"}]}]},{"name":"pacific_rim_restaurant","displayName":"Pacific Rim Restaurant","basicCategory":"restaurant","children":[{"name":"australian_restaurant","displayName":"Australian Restaurant","basicCategory":"restaurant"},{"name":"melanesian_restaurant","displayName":"Melanesian Restaurant","basicCategory":"restaurant","children":[{"name":"fijian_restaurant","displayName":"Fijian Restaurant","basicCategory":"restaurant"}]},{"name":"micronesian_restaurant","displayName":"Micronesian Restaurant","basicCategory":"restaurant","children":[{"name":"guamanian_restaurant","displayName":"Guamanian Restaurant","basicCategory":"restaurant"}]},{"name":"new_zealand_restaurant","displayName":"New Zealand Restaurant","basicCategory":"restaurant"},{"name":"polynesian_restaurant","displayName":"Polynesian Restaurant","basicCategory":"restaurant","children":[{"name":"hawaiian_restaurant","displayName":"Hawaiian Restaurant","basicCategory":"restaurant","children":[{"name":"poke_restaurant","displayName":"Poke Restaurant","basicCategory":"restaurant"}]}]}]},{"name":"pop_up_restaurant","displayName":"Pop Up Restaurant","basicCategory":"restaurant"},{"name":"salad_bar","displayName":"Salad Bar","basicCategory":"restaurant"},{"name":"seafood_restaurant","displayName":"Seafood Restaurant","basicCategory":"restaurant","children":[{"name":"fish_and_chips_restaurant","displayName":"Fish and Chips Restaurant","basicCategory":"restaurant"},{"name":"fish_restaurant","displayName":"Fish Restaurant","basicCategory":"restaurant"}]},{"name":"soul_food","displayName":"Soul Food","basicCategory":"restaurant"},{"name":"soup_restaurant","displayName":"Soup Restaurant","basicCategory":"restaurant"},{"name":"special_diet_restaurant","displayName":"Special Diet Restaurant","basicCategory":"restaurant","children":[{"name":"acai_bowls","displayName":"Acai Bowls","basicCategory":"restaurant"},{"name":"gluten_free_restaurant","displayName":"Gluten Free Restaurant","basicCategory":"restaurant"},{"name":"halal_restaurant","displayName":"Halal Restaurant","basicCategory":"restaurant"},{"name":"health_food_restaurant","displayName":"Health Food Restaurant","basicCategory":"restaurant"},{"name":"jewish_restaurant","displayName":"Jewish Restaurant","basicCategory":"restaurant"},{"name":"kosher_restaurant","displayName":"Kosher Restaurant","basicCategory":"restaurant"},{"name":"live_and_raw_food_restaurant","displayName":"Live and Raw Food Restaurant","basicCategory":"restaurant"},{"name":"molecular_gastronomy_restaurant","displayName":"Molecular Gastronomy Restaurant","basicCategory":"restaurant"},{"name":"vegan_restaurant","displayName":"Vegan Restaurant","basicCategory":"restaurant"},{"name":"vegetarian_restaurant","displayName":"Vegetarian Restaurant","basicCategory":"restaurant"}]},{"name":"supper_club","displayName":"Supper Club","basicCategory":"restaurant"},{"name":"theme_restaurant","displayName":"Theme Restaurant","basicCategory":"restaurant"},{"name":"wrap_restaurant","displayName":"Wrap Restaurant","basicCategory":"restaurant"}]}]},{"name":"geographic_entities","displayName":"Geographic Entities","isBasic":true,"children":[{"name":"built_feature","displayName":"Built Feature","isBasic":true,"children":[{"name":"bridge","displayName":"Bridge","isBasic":true},{"name":"building","displayName":"Building","isBasic":true,"children":[{"name":"skyscraper","displayName":"Skyscraper","basicCategory":"building"}]},{"name":"dam","displayName":"Dam","isBasic":true,"children":[{"name":"weir","displayName":"Weir","basicCategory":"dam"}]},{"name":"dock","displayName":"Dock","isBasic":true},{"name":"garden","displayName":"Garden","isBasic":true,"children":[{"name":"botanical_garden","displayName":"Botanical Garden","basicCategory":"garden"},{"name":"community_garden","displayName":"Community Garden","basicCategory":"garden"}]},{"name":"lookout","displayName":"Lookout","basicCategory":"built_feature"},{"name":"marina","displayName":"Marina","isBasic":true},{"name":"pier","displayName":"Pier","isBasic":true},{"name":"quay","displayName":"Quay","basicCategory":"built_feature"}]},{"name":"land_feature","displayName":"Land Feature","isBasic":true,"children":[{"name":"beach","displayName":"Beach","isBasic":true,"children":[{"name":"beach_combing_area","displayName":"Beach Combing Area","basicCategory":"beach"}]},{"name":"canyon","displayName":"Canyon","isBasic":true},{"name":"cave","displayName":"Cave","basicCategory":"land_feature"},{"name":"crater","displayName":"Crater","basicCategory":"land_feature"},{"name":"desert","displayName":"Desert","basicCategory":"land_feature"},{"name":"forest","displayName":"Forest","isBasic":true},{"name":"geologic_formation","displayName":"Geologic Formation","basicCategory":"land_feature"},{"name":"hill","displayName":"Hill","isBasic":true},{"name":"island","displayName":"Island","isBasic":true},{"name":"mountain","displayName":"Mountain","isBasic":true},{"name":"nature_reserve","displayName":"Nature Reserve","isBasic":true},{"name":"sand_dune","displayName":"Sand Dune","basicCategory":"land_feature"},{"name":"valley","displayName":"Valley","isBasic":true}]},{"name":"scenic_viewpoint","displayName":"Scenic Viewpoint","isBasic":true,"children":[{"name":"skyline","displayName":"Skyline","basicCategory":"scenic_viewpoint"},{"name":"stargazing_area","displayName":"Stargazing Area","basicCategory":"scenic_viewpoint"}]},{"name":"water_feature","displayName":"Water Feature","isBasic":true,"children":[{"name":"canal","displayName":"Canal","isBasic":true},{"name":"hot_springs","displayName":"Hot Springs","isBasic":true},{"name":"lake","displayName":"Lake","isBasic":true},{"name":"ocean","displayName":"Ocean","isBasic":true},{"name":"river","displayName":"River","isBasic":true},{"name":"sea","displayName":"Sea","isBasic":true},{"name":"waterfall","displayName":"Waterfall","isBasic":true}]}]},{"name":"health_care","displayName":"Health Care","isBasic":true,"children":[{"name":"emergency_or_urgent_care_facility","displayName":"Emergency or Urgent Care Facility","isBasic":true,"children":[{"name":"ambulance_or_ems_service","displayName":"Ambulance or EMS Service","basicCategory":"emergency_or_urgent_care_facility"},{"name":"emergency_department","displayName":"Emergency Department","isBasic":true},{"name":"urgent_care_clinic","displayName":"Urgent Care Clinic","isBasic":true},{"name":"walk_in_clinic","displayName":"Walk-In Clinic","isBasic":true}]},{"name":"hospital","displayName":"Hospital","isBasic":true,"children":[{"name":"general_hospital","displayName":"General Hospital","isBasic":true},{"name":"specialty_hospital","displayName":"Specialty Hospital","isBasic":true,"children":[{"name":"childrens_hospital","displayName":"Children's Hospital","basicCategory":"specialty_hospital"},{"name":"long_term_care_hospital","displayName":"Long Term Care Hospital","basicCategory":"specialty_hospital"},{"name":"psychiatric_hospital","displayName":"Psychiatric Hospital","basicCategory":"specialty_hospital"},{"name":"rehabilitation_hospital","displayName":"Rehabilitation Hospital","basicCategory":"specialty_hospital"},{"name":"veterans_hospital","displayName":"Veterans Hospital","basicCategory":"specialty_hospital"}]}]},{"name":"medical_service","displayName":"Medical Service","isBasic":true,"children":[{"name":"blood_and_plasma_donation_center","displayName":"Blood and Plasma Donation Center","basicCategory":"medical_service"},{"name":"ems_training","displayName":"EMS Training","basicCategory":"medical_service"},{"name":"health_insurance_office","displayName":"Health Insurance Office","basicCategory":"medical_service"},{"name":"home_health_care","displayName":"Home Health Care","basicCategory":"medical_service"},{"name":"hospice","displayName":"Hospice","basicCategory":"medical_service"},{"name":"medical_billing","displayName":"Medical Billing","basicCategory":"medical_service"},{"name":"medical_cannabis","displayName":"Medical Cannabis","basicCategory":"medical_service","children":[{"name":"cannabis_clinic","displayName":"Cannabis Clinic","basicCategory":"medical_service"},{"name":"cannabis_collective","displayName":"Cannabis Collective","basicCategory":"medical_service"},{"name":"medical_cannabis_referral","displayName":"Medical Cannabis Referral","basicCategory":"medical_service"}]},{"name":"medical_service_organization","displayName":"Medical Service Organization","basicCategory":"medical_service"},{"name":"medical_transportation","displayName":"Medical Transportation","basicCategory":"medical_service"},{"name":"sperm_clinic","displayName":"Sperm Clinic","basicCategory":"medical_service"}]},{"name":"outpatient_care_facility","displayName":"Outpatient Care Facility","isBasic":true,"children":[{"name":"behavioral_or_mental_health_clinic","displayName":"Behavioral or Mental Health Clinic","isBasic":true,"children":[{"name":"behavioral_or_crisis_service","displayName":"Behavioral or Crisis Service","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"behavior_analysis","displayName":"Behavior Analysis","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"crisis_intervention_service","displayName":"Crisis Intervention Service","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"stress_management_service","displayName":"Stress Management Service","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"suicide_prevention_service","displayName":"Suicide Prevention Service","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"counseling","displayName":"Counseling","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"family_counseling","displayName":"Family Counseling","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"marriage_or_relationship_counseling","displayName":"Marriage or Relationship Counseling","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"sex_therapy","displayName":"Sex Therapy","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychiatry_or_psychology_service","displayName":"Psychiatry or Psychology Service","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"psychiatry","displayName":"Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"child_psychiatry","displayName":"Child Psychiatry","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"geriatric_psychiatry","displayName":"Geriatric Psychiatry","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychoanalysis","displayName":"Psychoanalysis","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"psychology","displayName":"Psychology","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"sports_psychology","displayName":"Sports Psychology","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychotherapy","displayName":"Psychotherapy","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"art_therapy","displayName":"Art Therapy","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"hypnotherapy","displayName":"Hypnotherapy","basicCategory":"behavioral_or_mental_health_clinic"}]}]},{"name":"sophrology","displayName":"Sophrology","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"complementary_and_alternative_medicine","displayName":"Complementary and Alternative Medicine","isBasic":true,"children":[{"name":"acupuncture","displayName":"Acupuncture","basicCategory":"complementary_and_alternative_medicine"},{"name":"aromatherapy","displayName":"Aromatherapy","basicCategory":"complementary_and_alternative_medicine"},{"name":"ayurveda","displayName":"Ayurveda","basicCategory":"complementary_and_alternative_medicine"},{"name":"chiropractic","displayName":"Chiropractic","basicCategory":"complementary_and_alternative_medicine"},{"name":"homeopathy","displayName":"Homeopathy","basicCategory":"complementary_and_alternative_medicine"},{"name":"naturopathic_medicine","displayName":"Naturopathic Medicine","basicCategory":"complementary_and_alternative_medicine"},{"name":"reflexology","displayName":"Reflexology","basicCategory":"complementary_and_alternative_medicine"},{"name":"reiki","displayName":"Reiki","basicCategory":"complementary_and_alternative_medicine"},{"name":"traditional_chinese_medicine","displayName":"Traditional Chinese Medicine","basicCategory":"complementary_and_alternative_medicine","children":[{"name":"tui_na","displayName":"Tui Na","basicCategory":"complementary_and_alternative_medicine"}]}]},{"name":"dental_clinic","displayName":"Dental Clinic","isBasic":true,"children":[{"name":"cosmetic_dentistry","displayName":"Cosmetic Dentistry","basicCategory":"dental_clinic"},{"name":"dental_hygiene","displayName":"Dental Hygiene","basicCategory":"dental_clinic"},{"name":"endodontics","displayName":"Endodontics","basicCategory":"dental_clinic"},{"name":"general_dentistry","displayName":"General Dentistry","basicCategory":"dental_clinic"},{"name":"orthodontics","displayName":"Orthodontics","basicCategory":"dental_clinic"},{"name":"pediatric_dentistry","displayName":"Pediatric Dentistry","basicCategory":"dental_clinic"},{"name":"periodontics","displayName":"Periodontics","basicCategory":"dental_clinic"},{"name":"prosthodontics","displayName":"Prosthodontics","basicCategory":"dental_clinic"}]},{"name":"diagnostics_imaging_or_lab_service","displayName":"Diagnostics Imaging or Lab Service","isBasic":true,"children":[{"name":"diagnostic_imaging","displayName":"Diagnostic Imaging","basicCategory":"diagnostics_imaging_or_lab_service","children":[{"name":"ultrasound_imaging","displayName":"Ultrasound Imaging","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"doctors_office","displayName":"Doctors Office","basicCategory":"diagnostics_imaging_or_lab_service"},{"name":"laboratory_testing","displayName":"Laboratory Testing","basicCategory":"diagnostics_imaging_or_lab_service","children":[{"name":"paternity_testing","displayName":"Paternity Testing","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"pathology","displayName":"Pathology","basicCategory":"diagnostics_imaging_or_lab_service"},{"name":"radiology","displayName":"Radiology","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"pediatric_clinic","displayName":"Pediatric Clinic","isBasic":true,"children":[{"name":"general_pediatrics","displayName":"General Pediatrics","basicCategory":"pediatric_clinic"},{"name":"pediatric_anesthesiology","displayName":"Pediatric Anesthesiology","basicCategory":"pediatric_clinic"},{"name":"pediatric_cardiology","displayName":"Pediatric Cardiology","basicCategory":"pediatric_clinic"},{"name":"pediatric_endocrinology","displayName":"Pediatric Endocrinology","basicCategory":"pediatric_clinic"},{"name":"pediatric_gastroenterology","displayName":"Pediatric Gastroenterology","basicCategory":"pediatric_clinic"},{"name":"pediatric_infectious_disease","displayName":"Pediatric Infectious Disease","basicCategory":"pediatric_clinic"},{"name":"pediatric_nephrology","displayName":"Pediatric Nephrology","basicCategory":"pediatric_clinic"},{"name":"pediatric_neurology","displayName":"Pediatric Neurology","basicCategory":"pediatric_clinic"},{"name":"pediatric_oncology","displayName":"Pediatric Oncology","basicCategory":"pediatric_clinic"},{"name":"pediatric_pulmonology","displayName":"Pediatric Pulmonology","basicCategory":"pediatric_clinic"},{"name":"pediatric_radiology","displayName":"Pediatric Radiology","basicCategory":"pediatric_clinic"}]},{"name":"physical_medicine_and_rehabilitation","displayName":"Physical Medicine and Rehabilitation","isBasic":true,"children":[{"name":"animal_assisted_therapy","displayName":"Animal Assisted Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"occupational_therapy","displayName":"Occupational Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"orthotics","displayName":"Orthotics","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"physical_therapy","displayName":"Physical Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"prosthetics","displayName":"Prosthetics","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"psychomotor_therapy","displayName":"Psychomotor Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"rehabilitation_center","displayName":"Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","children":[{"name":"addiction_rehabilitation_center","displayName":"Addiction Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation"}]},{"name":"speech_therapy","displayName":"Speech Therapy","basicCategory":"physical_medicine_and_rehabilitation"}]},{"name":"primary_care_or_general_clinic","displayName":"Primary Care or General Clinic","isBasic":true,"children":[{"name":"community_health_center","displayName":"Community Health Center","basicCategory":"primary_care_or_general_clinic"},{"name":"concierge_medicine","displayName":"Concierge Medicine","basicCategory":"primary_care_or_general_clinic"},{"name":"family_practice","displayName":"Family Practice","basicCategory":"primary_care_or_general_clinic"},{"name":"mobile_clinic","displayName":"Mobile Clinic","basicCategory":"primary_care_or_general_clinic"},{"name":"public_health_clinic","displayName":"Public Health Clinic","basicCategory":"primary_care_or_general_clinic"},{"name":"storefront_clinic","displayName":"Storefront Clinic","basicCategory":"primary_care_or_general_clinic"}]},{"name":"reproductive_perinatal_and_womens_care","displayName":"Reproductive Perinatal and Women's Care","isBasic":true,"children":[{"name":"doula_service","displayName":"Doula Service","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"lactation_service","displayName":"Lactation Service","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"maternity_center","displayName":"Maternity Center","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"midwifery","displayName":"Midwifery","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"obstetrics_and_gynecology","displayName":"Obstetrics and Gynecology","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"prenatal_and_perinatal_care","displayName":"Prenatal and Perinatal Care","basicCategory":"reproductive_perinatal_and_womens_care"}]},{"name":"specialized_health_care","displayName":"Specialized Health Care","isBasic":true,"children":[{"name":"cardiovascular_and_vascular_medicine","displayName":"Cardiovascular and Vascular Medicine","basicCategory":"specialized_health_care","children":[{"name":"cardiology","displayName":"Cardiology","basicCategory":"specialized_health_care"},{"name":"phlebology","displayName":"Phlebology","basicCategory":"specialized_health_care"},{"name":"vascular_medicine","displayName":"Vascular Medicine","basicCategory":"specialized_health_care"}]},{"name":"ear_nose_and_throat","displayName":"Ear Nose and Throat","basicCategory":"specialized_health_care","children":[{"name":"audiology","displayName":"Audiology","basicCategory":"specialized_health_care"},{"name":"otolaryngology","displayName":"Otolaryngology","basicCategory":"specialized_health_care","children":[{"name":"neurotology","displayName":"Neurotology","basicCategory":"specialized_health_care"},{"name":"otology","displayName":"Otology","basicCategory":"specialized_health_care"}]}]},{"name":"endocrinology","displayName":"Endocrinology","basicCategory":"specialized_health_care"},{"name":"gastroenterology","displayName":"Gastroenterology","basicCategory":"specialized_health_care","children":[{"name":"endoscopy","displayName":"Endoscopy","basicCategory":"specialized_health_care"},{"name":"hepatology","displayName":"Hepatology","basicCategory":"specialized_health_care"},{"name":"proctology","displayName":"Proctology","basicCategory":"specialized_health_care"}]},{"name":"genetics","displayName":"Genetics","basicCategory":"specialized_health_care","children":[{"name":"gerontology","displayName":"Gerontology","basicCategory":"specialized_health_care"}]},{"name":"geriatric_medicine","displayName":"Geriatric Medicine","basicCategory":"specialized_health_care"},{"name":"internal_medicine","displayName":"Internal Medicine","basicCategory":"specialized_health_care","children":[{"name":"allergy_and_immunology","displayName":"Allergy and Immunology","basicCategory":"specialized_health_care"},{"name":"infectious_disease","displayName":"Infectious Disease","basicCategory":"specialized_health_care","children":[{"name":"tropical_medicine","displayName":"Tropical Medicine","basicCategory":"specialized_health_care"}]},{"name":"oncology","displayName":"Oncology","basicCategory":"specialized_health_care","children":[{"name":"hematology","displayName":"Hematology","basicCategory":"specialized_health_care"}]},{"name":"rheumatology","displayName":"Rheumatology","basicCategory":"specialized_health_care"}]},{"name":"medical_skin_care","displayName":"Medical Skin Care","basicCategory":"specialized_health_care","children":[{"name":"aesthetic_medicine","displayName":"Aesthetic Medicine","basicCategory":"specialized_health_care"},{"name":"body_contouring","displayName":"Body Contouring","basicCategory":"specialized_health_care"},{"name":"dermatology","displayName":"Dermatology","basicCategory":"specialized_health_care","children":[{"name":"immunodermatology","displayName":"Immunodermatology","basicCategory":"specialized_health_care"}]},{"name":"tattoo_removal","displayName":"Tattoo Removal","basicCategory":"specialized_health_care"}]},{"name":"musculoskeletal_medicine","displayName":"Musculoskeletal Medicine","basicCategory":"specialized_health_care","children":[{"name":"orthopedics","displayName":"Orthopedics","basicCategory":"specialized_health_care"},{"name":"podiatry","displayName":"Podiatry","basicCategory":"specialized_health_care"}]},{"name":"nephrology","displayName":"Nephrology","basicCategory":"specialized_health_care"},{"name":"neurology","displayName":"Neurology","basicCategory":"specialized_health_care","children":[{"name":"neuropathology","displayName":"Neuropathology","basicCategory":"specialized_health_care"}]},{"name":"nursing","displayName":"Nursing","basicCategory":"specialized_health_care"},{"name":"osteopathic_medicine","displayName":"Osteopathic Medicine","basicCategory":"specialized_health_care"},{"name":"pain_management","displayName":"Pain Management","basicCategory":"specialized_health_care","children":[{"name":"anesthesiology","displayName":"Anesthesiology","basicCategory":"specialized_health_care"}]},{"name":"preventive_medicine","displayName":"Preventive Medicine","basicCategory":"specialized_health_care","children":[{"name":"environmental_medicine","displayName":"Environmental Medicine","basicCategory":"specialized_health_care"},{"name":"hyperbaric_medicine","displayName":"Hyperbaric Medicine","basicCategory":"specialized_health_care"},{"name":"occupational_medicine","displayName":"Occupational Medicine","basicCategory":"specialized_health_care"},{"name":"toxicology","displayName":"Toxicology","basicCategory":"specialized_health_care"}]},{"name":"pulmonology","displayName":"Pulmonology","basicCategory":"specialized_health_care","children":[{"name":"sleep_medicine","displayName":"Sleep Medicine","basicCategory":"specialized_health_care"}]},{"name":"sports_medicine","displayName":"Sports Medicine","basicCategory":"specialized_health_care"},{"name":"urology","displayName":"Urology","basicCategory":"specialized_health_care"}]},{"name":"vision_or_eye_care_clinic","displayName":"Vision or Eye Care Clinic","isBasic":true,"children":[{"name":"ophthalmology","displayName":"Ophthalmology","basicCategory":"vision_or_eye_care_clinic","children":[{"name":"refractive_surgery_or_lasik","displayName":"Refractive Surgery or Lasik","basicCategory":"vision_or_eye_care_clinic"},{"name":"retina_services","displayName":"Retina Services","basicCategory":"vision_or_eye_care_clinic"}]},{"name":"optometry","displayName":"Optometry","basicCategory":"vision_or_eye_care_clinic"}]}]},{"name":"specialized_medical_facility","displayName":"Specialized Medical Facility","isBasic":true,"children":[{"name":"abortion_clinic","displayName":"Abortion Clinic","basicCategory":"specialized_medical_facility"},{"name":"abuse_and_addiction_treatment_center","displayName":"Abuse and Addiction Treatment Center","basicCategory":"specialized_medical_facility","children":[{"name":"alcohol_and_drug_treatment_center","displayName":"Alcohol and Drug Treatment Center","basicCategory":"specialized_medical_facility"}]},{"name":"cancer_treatment_center","displayName":"Cancer Treatment Center","basicCategory":"specialized_medical_facility"},{"name":"dialysis_clinic","displayName":"Dialysis Clinic","basicCategory":"specialized_medical_facility"},{"name":"eating_disorder_treatment_center","displayName":"Eating Disorder Treatment Center","basicCategory":"specialized_medical_facility"},{"name":"fertility_clinic","displayName":"Fertility Clinic","basicCategory":"specialized_medical_facility"},{"name":"organ_and_tissue_donor_service","displayName":"Organ and Tissue Donor Service","basicCategory":"specialized_medical_facility"},{"name":"surgery","displayName":"Surgery","isBasic":true,"children":[{"name":"cardiothoracic_surgery","displayName":"Cardiothoracic Surgery","basicCategory":"surgery"},{"name":"oral_and_maxillofacial_surgery","displayName":"Oral and Maxillofacial Surgery","basicCategory":"surgery"},{"name":"orthopedic_surgery","displayName":"Orthopedic Surgery","basicCategory":"surgery","children":[{"name":"pediatric_orthopedic_surgery","displayName":"Pediatric Orthopedic Surgery","basicCategory":"surgery"},{"name":"spine_surgery","displayName":"Spine Surgery","basicCategory":"surgery"}]},{"name":"pediatric_surgery","displayName":"Pediatric Surgery","basicCategory":"surgery"},{"name":"plastic_and_reconstructive_surgery","displayName":"Plastic and Reconstructive Surgery","basicCategory":"surgery","children":[{"name":"cosmetic_surgery","displayName":"Cosmetic Surgery","basicCategory":"surgery"}]},{"name":"surgery_center","displayName":"Surgery Center","basicCategory":"surgery"}]}]}]},{"name":"lifestyle_services","displayName":"Lifestyle Services","isBasic":true,"children":[{"name":"animal_or_pet_service","displayName":"Animal or Pet Service","isBasic":true,"children":[{"name":"animal_adoption_or_rescue","displayName":"Animal Adoption or Rescue","basicCategory":"animal_or_pet_service","children":[{"name":"animal_rescue_service","displayName":"Animal Rescue Service","basicCategory":"animal_or_pet_service"},{"name":"animal_shelter","displayName":"Animal Shelter","basicCategory":"animal_or_pet_service"},{"name":"pet_adoption","displayName":"Pet Adoption","basicCategory":"animal_or_pet_service"}]},{"name":"equine_service","displayName":"Equine Service","basicCategory":"animal_or_pet_service","children":[{"name":"farrier_service","displayName":"Farrier Service","basicCategory":"animal_or_pet_service"},{"name":"horse_boarding","displayName":"Horse Boarding","basicCategory":"animal_or_pet_service"},{"name":"horse_trainer","displayName":"Horse Trainer","basicCategory":"animal_or_pet_service"}]},{"name":"pet_breeder","displayName":"Pet Breeder","basicCategory":"animal_or_pet_service"},{"name":"pet_care_service","displayName":"Pet Care Service","basicCategory":"animal_or_pet_service","children":[{"name":"aquarium_service","displayName":"Aquarium Service","basicCategory":"animal_or_pet_service"},{"name":"dog_walker","displayName":"Dog Walker","basicCategory":"animal_or_pet_service"},{"name":"pet_boarding","displayName":"Pet Boarding","basicCategory":"animal_or_pet_service"},{"name":"pet_groomer","displayName":"Pet Groomer","basicCategory":"animal_or_pet_service"},{"name":"pet_sitting","displayName":"Pet Sitting","basicCategory":"animal_or_pet_service"},{"name":"pet_training","displayName":"Pet Training","basicCategory":"animal_or_pet_service","children":[{"name":"dog_trainer","displayName":"Dog Trainer","basicCategory":"animal_or_pet_service"}]},{"name":"pet_transportation","displayName":"Pet Transportation","basicCategory":"animal_or_pet_service"},{"name":"pet_waste_removal","displayName":"Pet Waste Removal","basicCategory":"animal_or_pet_service"}]},{"name":"pet_cemetery_and_crematorium_service","displayName":"Pet Cemetery and Crematorium Service","basicCategory":"animal_or_pet_service"},{"name":"pet_insurance","displayName":"Pet Insurance","basicCategory":"animal_or_pet_service"},{"name":"pet_photography","displayName":"Pet Photography","basicCategory":"animal_or_pet_service"},{"name":"veterinary_care","displayName":"Veterinary Care","basicCategory":"animal_or_pet_service","children":[{"name":"animal_hospital","displayName":"Animal Hospital","basicCategory":"animal_or_pet_service"},{"name":"animal_physical_therapy","displayName":"Animal Physical Therapy","basicCategory":"animal_or_pet_service"},{"name":"emergency_pet_hospital","displayName":"Emergency Pet Hospital","basicCategory":"animal_or_pet_service"},{"name":"holistic_animal_care","displayName":"Holistic Animal Care","basicCategory":"animal_or_pet_service"},{"name":"pet_hospice","displayName":"Pet Hospice","basicCategory":"animal_or_pet_service"},{"name":"veterinarian","displayName":"Veterinarian","basicCategory":"animal_or_pet_service"}]}]},{"name":"food_service","displayName":"Food Service","isBasic":true,"children":[{"name":"food_consultant","displayName":"Food Consultant","basicCategory":"food_service"},{"name":"food_delivery_service","displayName":"Food Delivery Service","basicCategory":"food_service","children":[{"name":"pizza_delivery_service","displayName":"Pizza Delivery Service","basicCategory":"food_service"}]}]},{"name":"personal_or_beauty_service","displayName":"Personal or Beauty Service","isBasic":true,"children":[{"name":"acne_treatment","displayName":"Acne Treatment","basicCategory":"personal_or_beauty_service"},{"name":"barber","displayName":"Barber","basicCategory":"personal_or_beauty_service","children":[{"name":"mens_grooming_salon","displayName":"Men's Grooming Salon","basicCategory":"personal_or_beauty_service"}]},{"name":"beauty_salon","displayName":"Beauty Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"teeth_jewelry_service","displayName":"Teeth Jewelry Service","basicCategory":"personal_or_beauty_service"}]},{"name":"body_modification","displayName":"Body Modification","basicCategory":"personal_or_beauty_service","children":[{"name":"body_art","displayName":"Body Art","basicCategory":"personal_or_beauty_service"},{"name":"mehndi_henna","displayName":"Mehndi Henna","basicCategory":"personal_or_beauty_service"},{"name":"scalp_micropigmentation","displayName":"Scalp Micropigmentation","basicCategory":"personal_or_beauty_service"},{"name":"tattoo_and_piercing","displayName":"Tattoo and Piercing","basicCategory":"personal_or_beauty_service","children":[{"name":"piercing","displayName":"Piercing","basicCategory":"personal_or_beauty_service"},{"name":"tattoo","displayName":"Tattoo","basicCategory":"personal_or_beauty_service"}]}]},{"name":"eyebrow_service","displayName":"Eyebrow Service","basicCategory":"personal_or_beauty_service"},{"name":"eyelash_service","displayName":"Eyelash Service","basicCategory":"personal_or_beauty_service"},{"name":"foot_care","displayName":"Foot Care","basicCategory":"personal_or_beauty_service"},{"name":"hair_removal","displayName":"Hair Removal","basicCategory":"personal_or_beauty_service","children":[{"name":"laser_hair_removal","displayName":"Laser Hair Removal","basicCategory":"personal_or_beauty_service"},{"name":"sugaring","displayName":"Sugaring","basicCategory":"personal_or_beauty_service"},{"name":"threading_service","displayName":"Threading Service","basicCategory":"personal_or_beauty_service"},{"name":"waxing","displayName":"Waxing","basicCategory":"personal_or_beauty_service"}]},{"name":"hair_replacement","displayName":"Hair Replacement","basicCategory":"personal_or_beauty_service","children":[{"name":"hair_extensions","displayName":"Hair Extensions","basicCategory":"personal_or_beauty_service"},{"name":"hair_loss_center","displayName":"Hair Loss Center","basicCategory":"personal_or_beauty_service"},{"name":"wig_hairpiece_service","displayName":"Wig Hairpiece Service","basicCategory":"personal_or_beauty_service"}]},{"name":"hair_salon","displayName":"Hair Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"blow_dry_blow_out_service","displayName":"Blow Dry Blow Out Service","basicCategory":"personal_or_beauty_service"},{"name":"hair_color_bar","displayName":"Hair Color Bar","basicCategory":"personal_or_beauty_service"},{"name":"hair_stylist","displayName":"Hair Stylist","basicCategory":"personal_or_beauty_service"},{"name":"kids_hair_salon","displayName":"Kids Hair Salon","basicCategory":"personal_or_beauty_service"}]},{"name":"image_consultant","displayName":"Image Consultant","basicCategory":"personal_or_beauty_service"},{"name":"life_coach","displayName":"Life Coach","basicCategory":"personal_or_beauty_service"},{"name":"matchmaker","displayName":"Matchmaker","basicCategory":"personal_or_beauty_service"},{"name":"nail_salon","displayName":"Nail Salon","basicCategory":"personal_or_beauty_service"},{"name":"shoe_repair","displayName":"Shoe Repair","basicCategory":"personal_or_beauty_service"},{"name":"shoe_shining_service","displayName":"Shoe Shining Service","basicCategory":"personal_or_beauty_service"},{"name":"skin_care_and_makeup","displayName":"Skin Care and Makeup","basicCategory":"personal_or_beauty_service","children":[{"name":"esthetician","displayName":"Esthetician","basicCategory":"personal_or_beauty_service"},{"name":"makeup_artist","displayName":"Makeup Artist","basicCategory":"personal_or_beauty_service"},{"name":"permanent_makeup","displayName":"Permanent Makeup","basicCategory":"personal_or_beauty_service"}]},{"name":"tanning_salon","displayName":"Tanning Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"spray_tanning","displayName":"Spray Tanning","basicCategory":"personal_or_beauty_service"},{"name":"tanning_bed","displayName":"Tanning Bed","basicCategory":"personal_or_beauty_service"}]},{"name":"teeth_whitening","displayName":"Teeth Whitening","basicCategory":"personal_or_beauty_service"}]},{"name":"wellness_service","displayName":"Wellness Service","isBasic":true,"children":[{"name":"colonic_hydrotherapy","displayName":"Colonic Hydrotherapy","basicCategory":"wellness_service"},{"name":"cryotherapy","displayName":"Cryotherapy","basicCategory":"wellness_service"},{"name":"halotherapy","displayName":"Halotherapy","basicCategory":"wellness_service"},{"name":"health_and_wellness_club","displayName":"Health and Wellness Club","basicCategory":"wellness_service"},{"name":"health_coaching","displayName":"Health Coaching","basicCategory":"wellness_service"},{"name":"hydrotherapy","displayName":"Hydrotherapy","basicCategory":"wellness_service"},{"name":"iv_hydration","displayName":"IV Hydration","basicCategory":"wellness_service"},{"name":"massage_therapy","displayName":"Massage Therapy","basicCategory":"wellness_service"},{"name":"meditation_center","displayName":"Meditation Center","basicCategory":"wellness_service"},{"name":"nutrition_service","displayName":"Nutrition Service","basicCategory":"wellness_service"},{"name":"oxygen_bar","displayName":"Oxygen Bar","basicCategory":"wellness_service"},{"name":"public_bath_house","displayName":"Public Bath House","basicCategory":"wellness_service","children":[{"name":"onsen","displayName":"Onsen","basicCategory":"wellness_service"},{"name":"turkish_bath","displayName":"Turkish Bath","basicCategory":"wellness_service"}]},{"name":"sauna","displayName":"Sauna","basicCategory":"wellness_service"},{"name":"snuggle_service","displayName":"Snuggle Service","basicCategory":"wellness_service"},{"name":"spa","displayName":"Spa","basicCategory":"wellness_service","children":[{"name":"day_spa","displayName":"Day Spa","basicCategory":"wellness_service"},{"name":"float_spa","displayName":"Float Spa","basicCategory":"wellness_service"},{"name":"health_spa","displayName":"Health Spa","basicCategory":"wellness_service"},{"name":"medical_spa","displayName":"Medical Spa","basicCategory":"wellness_service"}]},{"name":"weight_loss_center","displayName":"Weight Loss Center","basicCategory":"wellness_service"}]}]},{"name":"lodging","displayName":"Lodging","isBasic":true,"children":[{"name":"bed_and_breakfast","displayName":"Bed and Breakfast","isBasic":true},{"name":"cabin","displayName":"Cabin","basicCategory":"lodging"},{"name":"campground","displayName":"Campground","isBasic":true},{"name":"cottage","displayName":"Cottage","basicCategory":"lodging"},{"name":"country_house","displayName":"Country House","basicCategory":"lodging"},{"name":"holiday_park","displayName":"Holiday Park","basicCategory":"lodging"},{"name":"hostel","displayName":"Hostel","basicCategory":"lodging"},{"name":"hotel","displayName":"Hotel","isBasic":true,"children":[{"name":"motel","displayName":"Motel","basicCategory":"hotel"}]},{"name":"houseboat","displayName":"Houseboat","basicCategory":"lodging"},{"name":"inn","displayName":"Inn","isBasic":true},{"name":"lodge","displayName":"Lodge","basicCategory":"lodging"},{"name":"mountain_hut","displayName":"Mountain Hut","basicCategory":"lodging"},{"name":"private_lodging","displayName":"Private Lodging","isBasic":true,"children":[{"name":"guest_house","displayName":"Guest House","basicCategory":"private_lodging"},{"name":"holiday_rental_home","displayName":"Holiday Rental Home","basicCategory":"private_lodging"}]},{"name":"resort","displayName":"Resort","isBasic":true,"children":[{"name":"beach_resort","displayName":"Beach Resort","basicCategory":"resort"},{"name":"ski_resort","displayName":"Ski Resort","basicCategory":"resort"}]},{"name":"retreat","displayName":"Retreat","basicCategory":"lodging","children":[{"name":"health_retreat","displayName":"Health Retreat","basicCategory":"lodging"}]},{"name":"rv_park","displayName":"RV Park","isBasic":true},{"name":"ryokan","displayName":"Ryokan","basicCategory":"lodging"},{"name":"self_catering_accommodation","displayName":"Self Catering Accommodation","basicCategory":"lodging"},{"name":"service_apartment","displayName":"Service Apartment","basicCategory":"lodging"}]},{"name":"services_and_business","displayName":"Services and Business","isBasic":true,"children":[{"name":"agricultural_service","displayName":"Agricultural Service","isBasic":true,"children":[{"name":"agriculture_association","displayName":"Agriculture Association","basicCategory":"agricultural_service"},{"name":"farm","displayName":"Farm","isBasic":true,"children":[{"name":"dairy_farm","displayName":"Dairy Farm","basicCategory":"farm"},{"name":"orchard","displayName":"Orchard","basicCategory":"farm"},{"name":"pig_farm","displayName":"Pig Farm","basicCategory":"farm"},{"name":"poultry_farm","displayName":"Poultry Farm","basicCategory":"farm"},{"name":"ranch","displayName":"Ranch","basicCategory":"farm"},{"name":"urban_farm","displayName":"Urban Farm","basicCategory":"farm"}]},{"name":"farm_equipment_repair_service","displayName":"Farm Equipment Repair Service","basicCategory":"agricultural_service"}]},{"name":"b2b_service","displayName":"B2B Service","isBasic":true,"children":[{"name":"b2b_agriculture_service","displayName":"B2B Agriculture Service","basicCategory":"b2b_service","children":[{"name":"agricultural_cooperative","displayName":"Agricultural Cooperative","basicCategory":"b2b_service"},{"name":"agriculture","displayName":"Agriculture","basicCategory":"b2b_service"},{"name":"apiary_beekeeper","displayName":"Apiary Beekeeper","basicCategory":"b2b_service"},{"name":"b2b_dairy","displayName":"B2B Dairy","basicCategory":"b2b_service"},{"name":"b2b_farming","displayName":"B2B Farming","basicCategory":"b2b_service","children":[{"name":"b2b_farm","displayName":"B2B Farm","basicCategory":"b2b_service"},{"name":"farm_equipment_and_supply","displayName":"Farm Equipment and Supply","basicCategory":"b2b_service","children":[{"name":"fertilizer_store","displayName":"Fertilizer Store","basicCategory":"b2b_service"},{"name":"grain_elevator","displayName":"Grain Elevator","basicCategory":"b2b_service"},{"name":"greenhouse","displayName":"Greenhouse","basicCategory":"b2b_service"}]},{"name":"farming_service","displayName":"Farming Service","basicCategory":"b2b_service"}]},{"name":"b2b_food_products","displayName":"B2B Food Products","basicCategory":"b2b_service"},{"name":"crops_production","displayName":"Crops Production","basicCategory":"b2b_service","children":[{"name":"grain_production","displayName":"Grain Production","basicCategory":"b2b_service"},{"name":"orchards_production","displayName":"Orchards Production","basicCategory":"b2b_service"}]},{"name":"fish_farm_hatchery","displayName":"Fish Farm Hatchery","basicCategory":"b2b_service","children":[{"name":"fish_farm","displayName":"Fish Farm","basicCategory":"b2b_service"}]},{"name":"livestock_breeder","displayName":"Livestock Breeder","basicCategory":"b2b_service"},{"name":"livestock_dealer","displayName":"Livestock Dealer","basicCategory":"b2b_service"},{"name":"poultry_farming","displayName":"Poultry Farming","basicCategory":"b2b_service"}]},{"name":"b2b_energy_and_utility_service","displayName":"B2B Energy and Utility Service","isBasic":true,"children":[{"name":"b2b_mining","displayName":"B2B Mining","basicCategory":"b2b_energy_and_utility_service","children":[{"name":"b2b_coal_and_coke","displayName":"B2B Coal and Coke","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_quarry","displayName":"B2B Quarry","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_oil_and_gas","displayName":"B2B Oil and Gas","basicCategory":"b2b_energy_and_utility_service","children":[{"name":"b2b_oil_and_gas_equipment","displayName":"B2B Oil and Gas Equipment","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_and_gas_exploration_and_development","displayName":"B2B Oil and Gas Exploration and Development","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_and_gas_extraction","displayName":"B2B Oil and Gas Extraction","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_refinery","displayName":"B2B Oil Refinery","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_power_plants_and_power_plant_service","displayName":"B2B Power Plants and Power Plant Service","basicCategory":"b2b_energy_and_utility_service"},{"name":"energy_management_service","displayName":"Energy Management Service","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_environmental_service","displayName":"B2B Environmental Service","basicCategory":"b2b_service","children":[{"name":"b2b_cleaning_and_waste_management","displayName":"B2B Cleaning and Waste Management","basicCategory":"b2b_service"},{"name":"b2b_water_treatment_service","displayName":"B2B Water Treatment Service","basicCategory":"b2b_service"},{"name":"geological_service","displayName":"Geological Service","basicCategory":"b2b_service"},{"name":"logging_contractor","displayName":"Logging Contractor","basicCategory":"b2b_service"},{"name":"logging_equipment_and_supplies","displayName":"Logging Equipment and Supplies","basicCategory":"b2b_service"},{"name":"logging_service","displayName":"Logging Service","basicCategory":"b2b_service"}]},{"name":"b2b_industrial_and_machine_service","displayName":"B2B Industrial and Machine Service","isBasic":true,"children":[{"name":"automation_service","displayName":"Automation Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"b2b_equipment_maintenance_and_repair","displayName":"B2B Equipment Maintenance and Repair","basicCategory":"b2b_industrial_and_machine_service"},{"name":"casting_molding_service","displayName":"Casting Molding Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"chemical_plant","displayName":"Chemical Plant","basicCategory":"b2b_industrial_and_machine_service"},{"name":"inventory_control_service","displayName":"Inventory Control Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"laser_cutting_service","displayName":"Laser Cutting Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"manufacturing_and_industrial_consultant","displayName":"Manufacturing and Industrial Consultant","basicCategory":"b2b_industrial_and_machine_service"},{"name":"metal_plating_service","displayName":"Metal Plating Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"occupational_safety","displayName":"Occupational Safety","basicCategory":"b2b_industrial_and_machine_service"},{"name":"plastic_injection_molding_service","displayName":"Plastic Injection Molding Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"turnery","displayName":"Turnery","basicCategory":"b2b_industrial_and_machine_service"}]},{"name":"b2b_media_service","displayName":"B2B Media Service","basicCategory":"b2b_service","children":[{"name":"b2b_audio_visual_production","displayName":"B2B Audio Visual Production","basicCategory":"b2b_service"}]},{"name":"b2b_medical_support_service","displayName":"B2B Medical Support Service","basicCategory":"b2b_service","children":[{"name":"b2b_clinical_lab","displayName":"B2B Clinical Lab","basicCategory":"b2b_service"},{"name":"b2b_dental_lab","displayName":"B2B Dental Lab","basicCategory":"b2b_service"},{"name":"b2b_hospital_equipment_and_supplies","displayName":"B2B Hospital Equipment and Supplies","basicCategory":"b2b_service"},{"name":"b2b_surgical_appliances_and_supplies","displayName":"B2B Surgical Appliances and Supplies","basicCategory":"b2b_service"}]},{"name":"b2b_office_and_professional_service","displayName":"B2B Office and Professional Service","isBasic":true,"children":[{"name":"b2b_advertising_and_marketing_service","displayName":"B2B Advertising and Marketing Service","basicCategory":"b2b_office_and_professional_service","children":[{"name":"b2b_direct_mail_advertising","displayName":"B2B Direct Mail Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_marketing_consultant","displayName":"B2B Marketing Consultant","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_newspaper_advertising","displayName":"B2B Newspaper Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_outdoor_advertising","displayName":"B2B Outdoor Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_promotional_products_and_services","displayName":"B2B Promotional Products and Services","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_publicity_service","displayName":"B2B Publicity Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_radio_and_television_commercials","displayName":"B2B Radio and Television Commercials","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_signage_service","displayName":"B2B Signage Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_telemarketing_service","displayName":"B2B Telemarketing Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_background_check_service","displayName":"B2B Background Check Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_business_management_service","displayName":"B2B Business Management Service","basicCategory":"b2b_office_and_professional_service","children":[{"name":"b2b_executive_search_consultants","displayName":"B2B Executive Search Consultants","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_secretarial_service","displayName":"B2B Secretarial Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_domestic_trade_service","displayName":"B2B Domestic Trade Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_human_resource_service","displayName":"B2B Human Resource Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_international_trade_service","displayName":"B2B International Trade Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_records_storage_service","displayName":"B2B Records Storage Service","basicCategory":"b2b_office_and_professional_service"},{"name":"restaurant_management","displayName":"Restaurant Management","basicCategory":"b2b_office_and_professional_service"},{"name":"transcription_service","displayName":"Transcription Service","basicCategory":"b2b_office_and_professional_service"},{"name":"translating_and_interpreting_service","displayName":"Translating and Interpreting Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_science_and_technology_service","displayName":"B2B Science and Technology Service","isBasic":true,"children":[{"name":"b2b_scientific_equipment","displayName":"B2B Scientific Equipment","basicCategory":"b2b_science_and_technology_service"},{"name":"b2b_scientific_lab","displayName":"B2B Scientific Lab","basicCategory":"b2b_science_and_technology_service"}]},{"name":"b2b_telecommunications_service","displayName":"B2B Telecommunications Service","basicCategory":"b2b_service","children":[{"name":"tower_communication_service","displayName":"Tower Communication Service","basicCategory":"b2b_service"}]},{"name":"b2b_transportation_and_storage_service","displayName":"B2B Transportation and Storage Service","isBasic":true,"children":[{"name":"b2b_storage","displayName":"B2B Storage","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"warehouse","displayName":"Warehouse","basicCategory":"b2b_transportation_and_storage_service"},{"name":"warehouse_rental_service_yard","displayName":"Warehouse Rental Service Yard","basicCategory":"b2b_transportation_and_storage_service"}]},{"name":"freight_and_cargo_service","displayName":"Freight and Cargo Service","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"distribution_service","displayName":"Distribution Service","basicCategory":"b2b_transportation_and_storage_service"},{"name":"freight_forwarding_agency","displayName":"Freight Forwarding Agency","basicCategory":"b2b_transportation_and_storage_service"}]},{"name":"motor_freight_trucking","displayName":"Motor Freight Trucking","basicCategory":"b2b_transportation_and_storage_service"},{"name":"pipeline_transportation","displayName":"Pipeline Transportation","basicCategory":"b2b_transportation_and_storage_service"},{"name":"railroad_freight","displayName":"Railroad Freight","basicCategory":"b2b_transportation_and_storage_service"},{"name":"truck_and_industrial_vehicle_services","displayName":"Truck and Industrial Vehicle Services","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"tractor_dealer","displayName":"Tractor Dealer","basicCategory":"b2b_transportation_and_storage_service"},{"name":"truck_parts_and_accessories","displayName":"Truck Parts and Accessories","basicCategory":"b2b_transportation_and_storage_service"}]}]},{"name":"commercial_industrial","displayName":"Commercial Industrial","basicCategory":"b2b_service"},{"name":"manufacturer","displayName":"Manufacturer","isBasic":true,"children":[{"name":"apparel_manufacturer","displayName":"Apparel Manufacturer","basicCategory":"manufacturer","children":[{"name":"shoe_factory_manufacturer","displayName":"Shoe Factory Manufacturer","basicCategory":"manufacturer"}]},{"name":"appliance_manufacturer","displayName":"Appliance Manufacturer","basicCategory":"manufacturer"},{"name":"cosmetic_products_manufacturer","displayName":"Cosmetic Products Manufacturer","basicCategory":"manufacturer"},{"name":"furniture_manufacturer","displayName":"Furniture Manufacturer","basicCategory":"manufacturer"},{"name":"glass_manufacturer","displayName":"Glass Manufacturer","basicCategory":"manufacturer"},{"name":"hardware_and_fastener_manufacturer","displayName":"Hardware and Fastener Manufacturer","basicCategory":"manufacturer"},{"name":"jewelry_and_watches_manufacturer","displayName":"Jewelry and Watches Manufacturer","basicCategory":"manufacturer"},{"name":"jewelry_manufacturer","displayName":"Jewelry Manufacturer","basicCategory":"manufacturer"},{"name":"leather_products_manufacturer","displayName":"Leather Products Manufacturer","basicCategory":"manufacturer"},{"name":"lighting_fixture_manufacturer","displayName":"Lighting Fixture Manufacturer","basicCategory":"manufacturer"},{"name":"machinery_and_tool_manufacturer","displayName":"Machinery and Tool Manufacturer","basicCategory":"manufacturer","children":[{"name":"industrial_equipment_manufacturer","displayName":"Industrial Equipment Manufacturer","basicCategory":"manufacturer"}]},{"name":"mattress_manufacturing","displayName":"Mattress Manufacturing","basicCategory":"manufacturer"},{"name":"metal_fabricator","displayName":"Metal Fabricator","basicCategory":"manufacturer","children":[{"name":"iron_fabricator","displayName":"Iron Fabricator","basicCategory":"manufacturer"},{"name":"sheet_metal_fabricator","displayName":"Sheet Metal Fabricator","basicCategory":"manufacturer"},{"name":"steel_fabricator","displayName":"Steel Fabricator","basicCategory":"manufacturer"}]},{"name":"mill","displayName":"Mill","basicCategory":"manufacturer","children":[{"name":"cotton_mill","displayName":"Cotton Mill","basicCategory":"manufacturer"},{"name":"flour_mill","displayName":"Flour Mill","basicCategory":"manufacturer"},{"name":"paper_mill","displayName":"Paper Mill","basicCategory":"manufacturer"},{"name":"rice_mill","displayName":"Rice Mill","basicCategory":"manufacturer"},{"name":"sawmill","displayName":"Sawmill","basicCategory":"manufacturer"},{"name":"textile_mill","displayName":"Textile Mill","basicCategory":"manufacturer"},{"name":"weaving_mill","displayName":"Weaving Mill","basicCategory":"manufacturer"}]},{"name":"plastic_manufacturer","displayName":"Plastic Manufacturer","basicCategory":"manufacturer"},{"name":"rubber_and_plastics_manufacturer","displayName":"Rubber and Plastics Manufacturer","basicCategory":"manufacturer"},{"name":"sporting_goods_manufacturer","displayName":"Sporting Goods Manufacturer","basicCategory":"manufacturer"},{"name":"textile_manufacturer","displayName":"Textile Manufacturer","basicCategory":"manufacturer"},{"name":"vehicle_manufacturer","displayName":"Vehicle Manufacturer","basicCategory":"manufacturer","children":[{"name":"aircraft_manufacturer","displayName":"Aircraft Manufacturer","basicCategory":"manufacturer"},{"name":"auto_manufacturer","displayName":"Auto Manufacturer","basicCategory":"manufacturer"},{"name":"boat_and_ship_manufacturer","displayName":"Boat and Ship Manufacturer","basicCategory":"manufacturer"},{"name":"motorcycle_manufacturer","displayName":"Motorcycle Manufacturer","basicCategory":"manufacturer"}]},{"name":"vehicle_parts_manufacturer","displayName":"Vehicle Parts Manufacturer","basicCategory":"manufacturer","children":[{"name":"tires_manufacturer","displayName":"Tires Manufacturer","basicCategory":"manufacturer"}]}]},{"name":"supplier_or_distributor","displayName":"Supplier or Distributor","isBasic":true,"children":[{"name":"abrasives_supplier","displayName":"Abrasives Supplier","basicCategory":"supplier_or_distributor"},{"name":"aggregate_supplier","displayName":"Aggregate Supplier","basicCategory":"supplier_or_distributor"},{"name":"aluminum_supplier","displayName":"Aluminum Supplier","basicCategory":"supplier_or_distributor"},{"name":"awning_supplier","displayName":"Awning Supplier","basicCategory":"supplier_or_distributor"},{"name":"battery_inverter_supplier","displayName":"Battery Inverter Supplier","basicCategory":"supplier_or_distributor"},{"name":"bearing_supplier","displayName":"Bearing Supplier","basicCategory":"supplier_or_distributor"},{"name":"beauty_product_supplier","displayName":"Beauty Product Supplier","basicCategory":"supplier_or_distributor"},{"name":"beverage_supplier","displayName":"Beverage Supplier","basicCategory":"supplier_or_distributor"},{"name":"box_lunch_supplier","displayName":"Box Lunch Supplier","basicCategory":"supplier_or_distributor"},{"name":"business_office_supplies_and_stationery","displayName":"Business Office Supplies and Stationery","basicCategory":"supplier_or_distributor"},{"name":"cement_supplier","displayName":"Cement Supplier","basicCategory":"supplier_or_distributor"},{"name":"cleaning_products_supplier","displayName":"Cleaning Products Supplier","basicCategory":"supplier_or_distributor"},{"name":"corporate_gift_supplier","displayName":"Corporate Gift Supplier","basicCategory":"supplier_or_distributor"},{"name":"electronic_equipment_supplier","displayName":"Electronic Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"electronic_parts_supplier","displayName":"Electronic Parts Supplier","basicCategory":"supplier_or_distributor"},{"name":"fastener_supplier","displayName":"Fastener Supplier","basicCategory":"supplier_or_distributor"},{"name":"food_beverage_distributor","displayName":"Food Beverage Distributor","basicCategory":"supplier_or_distributor"},{"name":"granite_supplier","displayName":"Granite Supplier","basicCategory":"supplier_or_distributor"},{"name":"hotel_supply_service","displayName":"Hotel Supply Service","basicCategory":"supplier_or_distributor"},{"name":"hvac_supplier","displayName":"HVAC Supplier","basicCategory":"supplier_or_distributor"},{"name":"hydraulic_equipment_supplier","displayName":"Hydraulic Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"ice_supplier","displayName":"Ice Supplier","basicCategory":"supplier_or_distributor"},{"name":"import_export_service","displayName":"Import Export Service","basicCategory":"supplier_or_distributor","children":[{"name":"exporter","displayName":"Exporter","basicCategory":"supplier_or_distributor","children":[{"name":"food_and_beverage_exporter","displayName":"Food and Beverage Exporter","basicCategory":"supplier_or_distributor"}]},{"name":"importer","displayName":"Importer","basicCategory":"supplier_or_distributor"}]},{"name":"laboratory_equipment_supplier","displayName":"Laboratory Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"metal_supplier","displayName":"Metal Supplier","basicCategory":"supplier_or_distributor"},{"name":"pipe_supplier","displayName":"Pipe Supplier","basicCategory":"supplier_or_distributor"},{"name":"playground_equipment_supplier","displayName":"Playground Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"printing_equipment_supplier","displayName":"Printing Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"propane_supplier","displayName":"Propane Supplier","basicCategory":"supplier_or_distributor"},{"name":"restaurant_equipment_and_supply","displayName":"Restaurant Equipment and Supply","basicCategory":"supplier_or_distributor"},{"name":"retaining_wall_supplier","displayName":"Retaining Wall Supplier","basicCategory":"supplier_or_distributor"},{"name":"sand_and_gravel_supplier","displayName":"Sand and Gravel Supplier","basicCategory":"supplier_or_distributor"},{"name":"scale_supplier","displayName":"Scale Supplier","basicCategory":"supplier_or_distributor"},{"name":"seal_and_hanko_supplier","displayName":"Seal and Hanko Supplier","basicCategory":"supplier_or_distributor"},{"name":"spring_supplier","displayName":"Spring Supplier","basicCategory":"supplier_or_distributor"},{"name":"stone_supplier","displayName":"Stone Supplier","basicCategory":"supplier_or_distributor"},{"name":"tableware_supplier","displayName":"Tableware Supplier","basicCategory":"supplier_or_distributor"},{"name":"tent_house_supplier","displayName":"Tent House Supplier","basicCategory":"supplier_or_distributor"},{"name":"thread_supplier","displayName":"Thread Supplier","basicCategory":"supplier_or_distributor"},{"name":"vending_machine_supplier","displayName":"Vending Machine Supplier","basicCategory":"supplier_or_distributor"},{"name":"water_softening_equipment_supplier","displayName":"Water Softening Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"window_supplier","displayName":"Window Supplier","basicCategory":"supplier_or_distributor"}]},{"name":"wholesaler","displayName":"Wholesaler","isBasic":true,"children":[{"name":"computer_wholesaler","displayName":"Computer Wholesaler","basicCategory":"wholesaler"},{"name":"electrical_wholesaler","displayName":"Electrical Wholesaler","basicCategory":"wholesaler"},{"name":"fabric_wholesaler","displayName":"Fabric Wholesaler","basicCategory":"wholesaler"},{"name":"fitness_equipment_wholesaler","displayName":"Fitness Equipment Wholesaler","basicCategory":"wholesaler"},{"name":"fmcg_wholesaler","displayName":"Fmcg Wholesaler","basicCategory":"wholesaler"},{"name":"footwear_wholesaler","displayName":"Footwear Wholesaler","basicCategory":"wholesaler"},{"name":"furniture_wholesaler","displayName":"Furniture Wholesaler","basicCategory":"wholesaler"},{"name":"greengrocer","displayName":"Greengrocer","basicCategory":"wholesaler"},{"name":"industrial_spares_and_products_wholesaler","displayName":"Industrial Spares and Products Wholesaler","basicCategory":"wholesaler"},{"name":"iron_and_steel_store","displayName":"Iron and Steel Store","basicCategory":"wholesaler"},{"name":"lingerie_wholesaler","displayName":"Lingerie Wholesaler","basicCategory":"wholesaler"},{"name":"meat_wholesaler","displayName":"Meat Wholesaler","basicCategory":"wholesaler"},{"name":"optical_wholesaler","displayName":"Optical Wholesaler","basicCategory":"wholesaler"},{"name":"pharmaceutical_products_wholesaler","displayName":"Pharmaceutical Products Wholesaler","basicCategory":"wholesaler"},{"name":"produce_wholesaler","displayName":"Produce Wholesaler","basicCategory":"wholesaler"},{"name":"restaurant_wholesale","displayName":"Restaurant Wholesale","basicCategory":"wholesaler"},{"name":"seafood_wholesaler","displayName":"Seafood Wholesaler","basicCategory":"wholesaler"},{"name":"spices_wholesaler","displayName":"Spices Wholesaler","basicCategory":"wholesaler"},{"name":"tea_wholesaler","displayName":"Tea Wholesaler","basicCategory":"wholesaler"},{"name":"threads_and_yarns_wholesaler","displayName":"Threads and Yarns Wholesaler","basicCategory":"wholesaler"},{"name":"tools_wholesaler","displayName":"Tools Wholesaler","basicCategory":"wholesaler"},{"name":"wholesale_florist","displayName":"Wholesale Florist","basicCategory":"wholesaler"},{"name":"wholesale_grocer","displayName":"Wholesale Grocer","basicCategory":"wholesaler"},{"name":"wine_wholesaler","displayName":"Wine Wholesaler","basicCategory":"wholesaler"}]}]},{"name":"building_or_construction_service","displayName":"Building or Construction Service","isBasic":true,"children":[{"name":"blacksmith","displayName":"Blacksmith","basicCategory":"building_or_construction_service"},{"name":"blueprinter","displayName":"Blueprinter","basicCategory":"building_or_construction_service"},{"name":"civil_engineer","displayName":"Civil Engineer","basicCategory":"building_or_construction_service"},{"name":"construction_management","displayName":"Construction Management","basicCategory":"building_or_construction_service"},{"name":"crane_service","displayName":"Crane Service","basicCategory":"building_or_construction_service"},{"name":"engineering_service","displayName":"Engineering Service","basicCategory":"building_or_construction_service"},{"name":"gravel_professional","displayName":"Gravel Professional","basicCategory":"building_or_construction_service"},{"name":"inspection_service","displayName":"Inspection Service","basicCategory":"building_or_construction_service"},{"name":"instrumentation_engineer","displayName":"Instrumentation Engineer","basicCategory":"building_or_construction_service"},{"name":"ironworker","displayName":"Ironworker","basicCategory":"building_or_construction_service"},{"name":"lime_professional","displayName":"Lime Professional","basicCategory":"building_or_construction_service"},{"name":"marble_and_granite_professional","displayName":"Marble and Granite Professional","basicCategory":"building_or_construction_service"},{"name":"masonry_contractor","displayName":"Masonry Contractor","basicCategory":"building_or_construction_service"},{"name":"mechanical_engineer","displayName":"Mechanical Engineer","basicCategory":"building_or_construction_service"},{"name":"metal_material_expert","displayName":"Metal Material Expert","basicCategory":"building_or_construction_service"},{"name":"road_contractor","displayName":"Road Contractor","basicCategory":"building_or_construction_service"},{"name":"stone_and_masonry","displayName":"Stone and Masonry","basicCategory":"building_or_construction_service"},{"name":"welder","displayName":"Welder","basicCategory":"building_or_construction_service"}]},{"name":"corporate_or_business_office","displayName":"Corporate or Business Office","isBasic":true,"children":[{"name":"auto_company","displayName":"Auto Company","basicCategory":"corporate_or_business_office"},{"name":"bags_luggage_company","displayName":"Bags Luggage Company","basicCategory":"corporate_or_business_office"},{"name":"biotechnology_company","displayName":"Biotechnology Company","basicCategory":"corporate_or_business_office"},{"name":"bottled_water_company","displayName":"Bottled Water Company","basicCategory":"corporate_or_business_office"},{"name":"clothing_company","displayName":"Clothing Company","basicCategory":"corporate_or_business_office"},{"name":"energy_company","displayName":"Energy Company","basicCategory":"corporate_or_business_office"},{"name":"ferry_boat_company","displayName":"Ferry Boat Company","basicCategory":"corporate_or_business_office"},{"name":"industrial_company","displayName":"Industrial Company","basicCategory":"corporate_or_business_office"},{"name":"information_technology_company","displayName":"Information Technology Company","basicCategory":"corporate_or_business_office"},{"name":"pharmaceutical_company","displayName":"Pharmaceutical Company","basicCategory":"corporate_or_business_office"},{"name":"plastics_company","displayName":"Plastics Company","basicCategory":"corporate_or_business_office"},{"name":"private_association","displayName":"Private Association","basicCategory":"corporate_or_business_office"},{"name":"telecommunications_company","displayName":"Telecommunications Company","basicCategory":"corporate_or_business_office"},{"name":"tobacco_company","displayName":"Tobacco Company","basicCategory":"corporate_or_business_office"},{"name":"travel_company","displayName":"Travel Company","basicCategory":"corporate_or_business_office"}]},{"name":"design_service","displayName":"Design Service","isBasic":true,"children":[{"name":"architect","displayName":"Architect","basicCategory":"design_service"},{"name":"architectural_designer","displayName":"Architectural Designer","basicCategory":"design_service"},{"name":"graphic_designer","displayName":"Graphic Designer","basicCategory":"design_service"},{"name":"product_design","displayName":"Product Design","basicCategory":"design_service"},{"name":"sign_making","displayName":"Sign Making","basicCategory":"design_service"},{"name":"web_designer","displayName":"Web Designer","basicCategory":"design_service"}]},{"name":"environmental_or_ecological_service","displayName":"Environmental or Ecological Service","isBasic":true,"children":[{"name":"environmental_abatement_service","displayName":"Environmental Abatement Service","basicCategory":"environmental_or_ecological_service"},{"name":"environmental_conservation_organization","displayName":"Environmental Conservation Organization","basicCategory":"environmental_or_ecological_service"},{"name":"environmental_testing_service","displayName":"Environmental Testing Service","basicCategory":"environmental_or_ecological_service"},{"name":"forestry_service","displayName":"Forestry Service","basicCategory":"environmental_or_ecological_service"},{"name":"wildlife_control","displayName":"Wildlife Control","basicCategory":"environmental_or_ecological_service"}]},{"name":"event_or_party_service","displayName":"Event or Party Service","isBasic":true,"children":[{"name":"audiovisual_equipment_rental","displayName":"Audiovisual Equipment Rental","basicCategory":"event_or_party_service"},{"name":"balloon_service","displayName":"Balloon Service","basicCategory":"event_or_party_service"},{"name":"bartender","displayName":"Bartender","basicCategory":"event_or_party_service"},{"name":"boat_charter","displayName":"Boat Charter","basicCategory":"event_or_party_service"},{"name":"bounce_house_rental","displayName":"Bounce House Rental","basicCategory":"event_or_party_service"},{"name":"caricature","displayName":"Caricature","basicCategory":"event_or_party_service"},{"name":"caterer","displayName":"Caterer","basicCategory":"event_or_party_service"},{"name":"clown","displayName":"Clown","basicCategory":"event_or_party_service"},{"name":"dj_service","displayName":"DJ Service","basicCategory":"event_or_party_service"},{"name":"event_technology_service","displayName":"Event Technology Service","basicCategory":"event_or_party_service"},{"name":"face_painting","displayName":"Face Painting","basicCategory":"event_or_party_service"},{"name":"floral_designer","displayName":"Floral Designer","basicCategory":"event_or_party_service"},{"name":"game_truck_rental","displayName":"Game Truck Rental","basicCategory":"event_or_party_service"},{"name":"golf_cart_rental","displayName":"Golf Cart Rental","basicCategory":"event_or_party_service"},{"name":"henna_artist","displayName":"Henna Artist","basicCategory":"event_or_party_service"},{"name":"karaoke_rental","displayName":"Karaoke Rental","basicCategory":"event_or_party_service"},{"name":"kids_recreation_and_party","displayName":"Kids Recreation and Party","basicCategory":"event_or_party_service"},{"name":"magician","displayName":"Magician","basicCategory":"event_or_party_service"},{"name":"mohel","displayName":"Mohel","basicCategory":"event_or_party_service"},{"name":"musician","displayName":"Musician","basicCategory":"event_or_party_service"},{"name":"officiating_service","displayName":"Officiating Service","basicCategory":"event_or_party_service"},{"name":"party_and_event_planning","displayName":"Party and Event Planning","basicCategory":"event_or_party_service"},{"name":"party_bike_rental","displayName":"Party Bike Rental","basicCategory":"event_or_party_service"},{"name":"party_bus_rental","displayName":"Party Bus Rental","basicCategory":"event_or_party_service"},{"name":"party_character","displayName":"Party Character","basicCategory":"event_or_party_service"},{"name":"party_equipment_rental","displayName":"Party Equipment Rental","basicCategory":"event_or_party_service"},{"name":"personal_chef","displayName":"Personal Chef","basicCategory":"event_or_party_service"},{"name":"photo_booth_rental","displayName":"Photo Booth Rental","basicCategory":"event_or_party_service"},{"name":"silent_disco","displayName":"Silent Disco","basicCategory":"event_or_party_service"},{"name":"sommelier_service","displayName":"Sommelier Service","basicCategory":"event_or_party_service"},{"name":"team_building_activity","displayName":"Team Building Activity","basicCategory":"event_or_party_service"},{"name":"trivia_host","displayName":"Trivia Host","basicCategory":"event_or_party_service"},{"name":"valet_service","displayName":"Valet Service","basicCategory":"event_or_party_service"},{"name":"videographer","displayName":"Videographer","basicCategory":"event_or_party_service"},{"name":"wedding_chapel","displayName":"Wedding Chapel","basicCategory":"event_or_party_service"},{"name":"wedding_planning","displayName":"Wedding Planning","basicCategory":"event_or_party_service"}]},{"name":"family_service","displayName":"Family Service","isBasic":true,"children":[{"name":"adoption_service","displayName":"Adoption Service","basicCategory":"family_service"},{"name":"child_care_and_day_care","displayName":"Child Care and Day Care","basicCategory":"family_service","children":[{"name":"day_care_preschool","displayName":"Day Care Preschool","basicCategory":"family_service"}]},{"name":"elder_care_planning","displayName":"Elder Care Planning","basicCategory":"family_service"},{"name":"family_service_center","displayName":"Family Service Center","basicCategory":"family_service"},{"name":"funeral_service","displayName":"Funeral Service","basicCategory":"family_service","children":[{"name":"cremation_service","displayName":"Cremation Service","basicCategory":"family_service"},{"name":"mortuary_service","displayName":"Mortuary Service","basicCategory":"family_service"}]},{"name":"genealogist","displayName":"Genealogist","basicCategory":"family_service"},{"name":"mobility_equipment_service","displayName":"Mobility Equipment Service","basicCategory":"family_service"},{"name":"nanny_service","displayName":"Nanny Service","basicCategory":"family_service"}]},{"name":"financial_service","displayName":"Financial Service","isBasic":true,"children":[{"name":"accountant","displayName":"Accountant","basicCategory":"financial_service"},{"name":"appraisal_service","displayName":"Appraisal Service","basicCategory":"financial_service"},{"name":"atm","displayName":"ATM","isBasic":true},{"name":"bank_or_credit_union","displayName":"Bank or Credit Union","isBasic":true,"children":[{"name":"bank","displayName":"Bank","basicCategory":"bank_or_credit_union"},{"name":"credit_union","displayName":"Credit Union","basicCategory":"bank_or_credit_union"}]},{"name":"broker","displayName":"Broker","basicCategory":"financial_service","children":[{"name":"business_broker","displayName":"Business Broker","basicCategory":"financial_service"},{"name":"stock_and_bond_broker","displayName":"Stock and Bond Broker","basicCategory":"financial_service"}]},{"name":"business_banking_service","displayName":"Business Banking Service","basicCategory":"financial_service"},{"name":"business_financing","displayName":"Business Financing","basicCategory":"financial_service"},{"name":"check_cashing_payday_loans","displayName":"Check Cashing Payday Loans","basicCategory":"financial_service"},{"name":"coin_dealer","displayName":"Coin Dealer","basicCategory":"financial_service"},{"name":"collection_agency","displayName":"Collection Agency","basicCategory":"financial_service"},{"name":"credit_and_debt_counseling","displayName":"Credit and Debt Counseling","basicCategory":"financial_service"},{"name":"currency_exchange","displayName":"Currency Exchange","basicCategory":"financial_service"},{"name":"customs_broker","displayName":"Customs Broker","basicCategory":"financial_service"},{"name":"debt_relief_service","displayName":"Debt Relief Service","basicCategory":"financial_service"},{"name":"financial_advising","displayName":"Financial Advising","basicCategory":"financial_service"},{"name":"gold_buyer","displayName":"Gold Buyer","basicCategory":"financial_service"},{"name":"holding_company","displayName":"Holding Company","basicCategory":"financial_service"},{"name":"installment_loans","displayName":"Installment Loans","basicCategory":"financial_service","children":[{"name":"auto_loan_provider","displayName":"Auto Loan Provider","basicCategory":"financial_service"},{"name":"mortgage_lender","displayName":"Mortgage Lender","basicCategory":"financial_service"}]},{"name":"insurance_agency","displayName":"Insurance Agency","basicCategory":"financial_service","children":[{"name":"auto_insurance","displayName":"Auto Insurance","basicCategory":"financial_service"},{"name":"farm_insurance","displayName":"Farm Insurance","basicCategory":"financial_service"},{"name":"fidelity_and_surety_bonds","displayName":"Fidelity and Surety Bonds","basicCategory":"financial_service"},{"name":"home_and_rental_insurance","displayName":"Home and Rental Insurance","basicCategory":"financial_service"},{"name":"life_insurance","displayName":"Life Insurance","basicCategory":"financial_service"}]},{"name":"investing","displayName":"Investing","basicCategory":"financial_service"},{"name":"investment_management_company","displayName":"Investment Management Company","basicCategory":"financial_service"},{"name":"money_transfer_service","displayName":"Money Transfer Service","basicCategory":"financial_service"},{"name":"mortgage_broker","displayName":"Mortgage Broker","basicCategory":"financial_service"},{"name":"private_equity_firm","displayName":"Private Equity Firm","basicCategory":"financial_service"},{"name":"public_adjuster","displayName":"Public Adjuster","basicCategory":"financial_service"},{"name":"real_estate_investment","displayName":"Real Estate Investment","basicCategory":"financial_service"},{"name":"tax_service","displayName":"Tax Service","basicCategory":"financial_service"},{"name":"trusts","displayName":"Trusts","basicCategory":"financial_service"}]},{"name":"home_service","displayName":"Home Service","isBasic":true,"children":[{"name":"air_duct_cleaning_service","displayName":"Air Duct Cleaning Service","basicCategory":"home_service"},{"name":"antenna_service","displayName":"Antenna Service","basicCategory":"home_service"},{"name":"appliance_repair_service","displayName":"Appliance Repair Service","basicCategory":"home_service"},{"name":"artificial_turf","displayName":"Artificial Turf","basicCategory":"home_service"},{"name":"bathroom_remodeling","displayName":"Bathroom Remodeling","basicCategory":"home_service"},{"name":"bathtub_and_sink_repair","displayName":"Bathtub and Sink Repair","basicCategory":"home_service"},{"name":"cabinet_sales_service","displayName":"Cabinet Sales Service","basicCategory":"home_service"},{"name":"carpenter","displayName":"Carpenter","basicCategory":"home_service"},{"name":"carpet_cleaning","displayName":"Carpet Cleaning","basicCategory":"home_service"},{"name":"carpet_dyeing","displayName":"Carpet Dyeing","basicCategory":"home_service"},{"name":"carpet_installation","displayName":"Carpet Installation","basicCategory":"home_service"},{"name":"ceiling_and_roofing_repair_and_service","displayName":"Ceiling and Roofing Repair and Service","basicCategory":"home_service","children":[{"name":"ceiling_service","displayName":"Ceiling Service","basicCategory":"home_service"},{"name":"roofing","displayName":"Roofing","basicCategory":"home_service"}]},{"name":"childproofing","displayName":"Childproofing","basicCategory":"home_service"},{"name":"chimney_service","displayName":"Chimney Service","basicCategory":"home_service","children":[{"name":"chimney_sweep","displayName":"Chimney Sweep","basicCategory":"home_service"}]},{"name":"clock_repair_service","displayName":"Clock Repair Service","basicCategory":"home_service"},{"name":"closet_remodeling","displayName":"Closet Remodeling","basicCategory":"home_service"},{"name":"community_book_box","displayName":"Community Book Box","basicCategory":"home_service"},{"name":"contractor","displayName":"Contractor","basicCategory":"home_service","children":[{"name":"altering_and_remodeling_contractor","displayName":"Altering and Remodeling Contractor","basicCategory":"home_service"},{"name":"building_contractor","displayName":"Building Contractor","basicCategory":"home_service"},{"name":"flooring_contractor","displayName":"Flooring Contractor","basicCategory":"home_service"},{"name":"paving_contractor","displayName":"Paving Contractor","basicCategory":"home_service"}]},{"name":"countertop_installation","displayName":"Countertop Installation","basicCategory":"home_service"},{"name":"damage_restoration","displayName":"Damage Restoration","basicCategory":"home_service","children":[{"name":"fire_and_water_damage_restoration","displayName":"Fire and Water Damage Restoration","basicCategory":"home_service"}]},{"name":"deck_and_railing_sales_service","displayName":"Deck and Railing Sales Service","basicCategory":"home_service"},{"name":"demolition_service","displayName":"Demolition Service","basicCategory":"home_service"},{"name":"donation_center","displayName":"Donation Center","basicCategory":"home_service"},{"name":"door_sales_service","displayName":"Door Sales Service","basicCategory":"home_service"},{"name":"drywall_service","displayName":"Drywall Service","basicCategory":"home_service"},{"name":"electrician","displayName":"Electrician","basicCategory":"home_service"},{"name":"excavation_service","displayName":"Excavation Service","basicCategory":"home_service"},{"name":"exterior_design","displayName":"Exterior Design","basicCategory":"home_service"},{"name":"fence_and_gate_sales_service","displayName":"Fence and Gate Sales Service","basicCategory":"home_service"},{"name":"feng_shui","displayName":"Feng Shui","basicCategory":"home_service"},{"name":"fire_protection_service","displayName":"Fire Protection Service","basicCategory":"home_service"},{"name":"fireplace_service","displayName":"Fireplace Service","basicCategory":"home_service"},{"name":"firewood","displayName":"Firewood","basicCategory":"home_service"},{"name":"foundation_repair","displayName":"Foundation Repair","basicCategory":"home_service"},{"name":"furniture_assembly","displayName":"Furniture Assembly","basicCategory":"home_service"},{"name":"furniture_rental_service","displayName":"Furniture Rental Service","basicCategory":"home_service"},{"name":"furniture_repair","displayName":"Furniture Repair","basicCategory":"home_service"},{"name":"furniture_reupholstery","displayName":"Furniture Reupholstery","basicCategory":"home_service"},{"name":"garage_door_service","displayName":"Garage Door Service","basicCategory":"home_service"},{"name":"glass_and_mirror_sales_service","displayName":"Glass and Mirror Sales Service","basicCategory":"home_service"},{"name":"grout_service","displayName":"Grout Service","basicCategory":"home_service"},{"name":"gutter_service","displayName":"Gutter Service","basicCategory":"home_service"},{"name":"handyman","displayName":"Handyman","basicCategory":"home_service"},{"name":"holiday_decorating_service","displayName":"Holiday Decorating Service","basicCategory":"home_service"},{"name":"home_automation","displayName":"Home Automation","basicCategory":"home_service"},{"name":"home_cleaning","displayName":"Home Cleaning","basicCategory":"home_service"},{"name":"home_energy_auditor","displayName":"Home Energy Auditor","basicCategory":"home_service"},{"name":"home_inspector","displayName":"Home Inspector","basicCategory":"home_service"},{"name":"home_network_installation","displayName":"Home Network Installation","basicCategory":"home_service"},{"name":"home_security","displayName":"Home Security","basicCategory":"home_service"},{"name":"home_window_tinting","displayName":"Home Window Tinting","basicCategory":"home_service"},{"name":"house_sitting","displayName":"House Sitting","basicCategory":"home_service"},{"name":"hvac_service","displayName":"HVAC Service","basicCategory":"home_service"},{"name":"hydro_jetting","displayName":"Hydro Jetting","basicCategory":"home_service"},{"name":"indoor_landscaping","displayName":"Indoor Landscaping","basicCategory":"home_service"},{"name":"insulation_installation","displayName":"Insulation Installation","basicCategory":"home_service"},{"name":"interior_design","displayName":"Interior Design","basicCategory":"home_service"},{"name":"irrigation_service","displayName":"Irrigation Service","basicCategory":"home_service"},{"name":"junk_removal_and_hauling","displayName":"Junk Removal and Hauling","basicCategory":"home_service"},{"name":"key_and_locksmith","displayName":"Key and Locksmith","basicCategory":"home_service"},{"name":"kitchen_remodeling","displayName":"Kitchen Remodeling","basicCategory":"home_service"},{"name":"knife_sharpening","displayName":"Knife Sharpening","basicCategory":"home_service"},{"name":"landscaping","displayName":"Landscaping","basicCategory":"home_service","children":[{"name":"gardener","displayName":"Gardener","basicCategory":"home_service"},{"name":"landscape_architect","displayName":"Landscape Architect","basicCategory":"home_service"},{"name":"lawn_service","displayName":"Lawn Service","basicCategory":"home_service"},{"name":"tree_service","displayName":"Tree Service","basicCategory":"home_service"}]},{"name":"lawn_mower_repair_service","displayName":"Lawn Mower Repair Service","basicCategory":"home_service"},{"name":"lighting_fixtures_and_equipment","displayName":"Lighting Fixtures and Equipment","basicCategory":"home_service"},{"name":"masonry_concrete","displayName":"Masonry Concrete","basicCategory":"home_service"},{"name":"misting_system_service","displayName":"Misting System Service","basicCategory":"home_service"},{"name":"mobile_home_repair","displayName":"Mobile Home Repair","basicCategory":"home_service"},{"name":"mover","displayName":"Mover","basicCategory":"home_service"},{"name":"packing_service","displayName":"Packing Service","basicCategory":"home_service"},{"name":"painting","displayName":"Painting","basicCategory":"home_service"},{"name":"patio_covers","displayName":"Patio Covers","basicCategory":"home_service"},{"name":"personal_assistant","displayName":"Personal Assistant","basicCategory":"home_service"},{"name":"pest_control_service","displayName":"Pest Control Service","basicCategory":"home_service"},{"name":"plasterer","displayName":"Plasterer","basicCategory":"home_service"},{"name":"plumbing","displayName":"Plumbing","basicCategory":"home_service","children":[{"name":"backflow_service","displayName":"Backflow Service","basicCategory":"home_service"}]},{"name":"pool_and_hot_tub_service","displayName":"Pool and Hot Tub Service","basicCategory":"home_service"},{"name":"pool_cleaning","displayName":"Pool Cleaning","basicCategory":"home_service"},{"name":"pressure_washing","displayName":"Pressure Washing","basicCategory":"home_service"},{"name":"recycling_center","displayName":"Recycling Center","basicCategory":"home_service"},{"name":"refinishing_service","displayName":"Refinishing Service","basicCategory":"home_service"},{"name":"security_systems","displayName":"Security Systems","basicCategory":"home_service"},{"name":"sewing_and_alterations","displayName":"Sewing and Alterations","basicCategory":"home_service","children":[{"name":"tailor","displayName":"Tailor","basicCategory":"home_service"}]},{"name":"shades_and_blinds","displayName":"Shades and Blinds","basicCategory":"home_service"},{"name":"shutters","displayName":"Shutters","basicCategory":"home_service"},{"name":"siding","displayName":"Siding","basicCategory":"home_service"},{"name":"snow_removal_service","displayName":"Snow Removal Service","basicCategory":"home_service"},{"name":"solar_installation","displayName":"Solar Installation","basicCategory":"home_service"},{"name":"solar_panel_cleaning","displayName":"Solar Panel Cleaning","basicCategory":"home_service"},{"name":"structural_engineer","displayName":"Structural Engineer","basicCategory":"home_service"},{"name":"stucco_service","displayName":"Stucco Service","basicCategory":"home_service"},{"name":"television_service_provider","displayName":"Television Service Provider","basicCategory":"home_service"},{"name":"tiling","displayName":"Tiling","basicCategory":"home_service"},{"name":"tv_mounting","displayName":"TV Mounting","basicCategory":"home_service"},{"name":"wallpaper_installer","displayName":"Wallpaper Installer","basicCategory":"home_service"},{"name":"washer_and_dryer_repair_service","displayName":"Washer and Dryer Repair Service","basicCategory":"home_service"},{"name":"water_delivery","displayName":"Water Delivery","basicCategory":"home_service"},{"name":"water_heater_installation_repair","displayName":"Water Heater Installation Repair","basicCategory":"home_service"},{"name":"water_purification_service","displayName":"Water Purification Service","basicCategory":"home_service"},{"name":"waterproofing","displayName":"Waterproofing","basicCategory":"home_service"},{"name":"well_drilling","displayName":"Well Drilling","basicCategory":"home_service"},{"name":"window_washing","displayName":"Window Washing","basicCategory":"home_service"},{"name":"windows_installation","displayName":"Windows Installation","basicCategory":"home_service","children":[{"name":"skylight_installation","displayName":"Skylight Installation","basicCategory":"home_service"}]}]},{"name":"housing_or_property_service","displayName":"Housing or Property Service","isBasic":true,"children":[{"name":"apartment","displayName":"Apartment","isBasic":true},{"name":"condominium","displayName":"Condominium","isBasic":true},{"name":"halfway_house","displayName":"Halfway House","basicCategory":"housing_or_property_service"},{"name":"low_income_housing","displayName":"Low Income Housing","basicCategory":"housing_or_property_service"},{"name":"mobile_home_park","displayName":"Mobile Home Park","basicCategory":"housing_or_property_service"},{"name":"senior_living_facility","displayName":"Senior Living Facility","isBasic":true,"children":[{"name":"assisted_living_facility","displayName":"Assisted Living Facility","basicCategory":"senior_living_facility"},{"name":"memory_care_facility","displayName":"Memory Care Facility","basicCategory":"senior_living_facility"},{"name":"retirement_home","displayName":"Retirement Home","basicCategory":"senior_living_facility"}]},{"name":"university_housing","displayName":"University Housing","basicCategory":"housing_or_property_service"}]},{"name":"industrial_facility_or_service","displayName":"Industrial Facility or Service","isBasic":true,"children":[{"name":"hazardous_waste_disposal","displayName":"Hazardous Waste Disposal","basicCategory":"industrial_facility_or_service"},{"name":"powder_coating_service","displayName":"Powder Coating Service","basicCategory":"industrial_facility_or_service"},{"name":"sandblasting_service","displayName":"Sandblasting Service","basicCategory":"industrial_facility_or_service"}]},{"name":"laundry_service","displayName":"Laundry Service","isBasic":true,"children":[{"name":"dry_cleaning","displayName":"Dry Cleaning","basicCategory":"laundry_service"},{"name":"laundromat","displayName":"Laundromat","basicCategory":"laundry_service"}]},{"name":"legal_service","displayName":"Legal Service","isBasic":true,"children":[{"name":"attorney_or_law_firm","displayName":"Attorney or Law Firm","isBasic":true,"children":[{"name":"appellate_practice_lawyer","displayName":"Appellate Practice Lawyer","basicCategory":"attorney_or_law_firm"},{"name":"bankruptcy_law","displayName":"Bankruptcy Law","basicCategory":"attorney_or_law_firm"},{"name":"business_law","displayName":"Business Law","basicCategory":"attorney_or_law_firm"},{"name":"civil_rights_lawyer","displayName":"Civil Rights Lawyer","basicCategory":"attorney_or_law_firm"},{"name":"contract_law","displayName":"Contract Law","basicCategory":"attorney_or_law_firm"},{"name":"criminal_defense_law","displayName":"Criminal Defense Law","basicCategory":"attorney_or_law_firm"},{"name":"disability_law","displayName":"Disability Law","basicCategory":"attorney_or_law_firm"},{"name":"divorce_and_family_law","displayName":"Divorce and Family Law","basicCategory":"attorney_or_law_firm"},{"name":"dui_law","displayName":"DUI Law","basicCategory":"attorney_or_law_firm"},{"name":"employment_law","displayName":"Employment Law","basicCategory":"attorney_or_law_firm"},{"name":"entertainment_law","displayName":"Entertainment Law","basicCategory":"attorney_or_law_firm"},{"name":"estate_planning_law","displayName":"Estate Planning Law","basicCategory":"attorney_or_law_firm"},{"name":"general_litigation","displayName":"General Litigation","basicCategory":"attorney_or_law_firm"},{"name":"immigration_law","displayName":"Immigration Law","basicCategory":"attorney_or_law_firm"},{"name":"ip_and_internet_law","displayName":"Ip and Internet Law","basicCategory":"attorney_or_law_firm"},{"name":"medical_law","displayName":"Medical Law","basicCategory":"attorney_or_law_firm"},{"name":"paralegal_service","displayName":"Paralegal Service","basicCategory":"attorney_or_law_firm"},{"name":"personal_injury_law","displayName":"Personal Injury Law","basicCategory":"attorney_or_law_firm"},{"name":"real_estate_law","displayName":"Real Estate Law","basicCategory":"attorney_or_law_firm"},{"name":"social_security_law","displayName":"Social Security Law","basicCategory":"attorney_or_law_firm"},{"name":"tax_law","displayName":"Tax Law","basicCategory":"attorney_or_law_firm"},{"name":"traffic_ticketing_law","displayName":"Traffic Ticketing Law","basicCategory":"attorney_or_law_firm"},{"name":"wills_trusts_and_probate","displayName":"Wills Trusts and Probate","basicCategory":"attorney_or_law_firm"},{"name":"workers_compensation_law","displayName":"Workers Compensation Law","basicCategory":"attorney_or_law_firm"}]},{"name":"bail_bonds_service","displayName":"Bail Bonds Service","basicCategory":"legal_service"},{"name":"court_reporter","displayName":"Court Reporter","basicCategory":"legal_service"},{"name":"mediator","displayName":"Mediator","basicCategory":"legal_service"},{"name":"notary_public","displayName":"Notary Public","basicCategory":"legal_service"},{"name":"patent_law","displayName":"Patent Law","basicCategory":"legal_service"},{"name":"private_investigation","displayName":"Private Investigation","basicCategory":"legal_service"},{"name":"process_server","displayName":"Process Server","basicCategory":"legal_service"},{"name":"tenant_and_eviction_law","displayName":"Tenant and Eviction Law","basicCategory":"legal_service"}]},{"name":"media_service","displayName":"Media Service","isBasic":true,"children":[{"name":"art_restoration_service","displayName":"Art Restoration Service","basicCategory":"media_service"},{"name":"bookbinding","displayName":"Bookbinding","basicCategory":"media_service"},{"name":"calligraphy","displayName":"Calligraphy","basicCategory":"media_service"},{"name":"commissioned_artist","displayName":"Commissioned Artist","basicCategory":"media_service"},{"name":"corporate_entertainment_service","displayName":"Corporate Entertainment Service","basicCategory":"media_service"},{"name":"digitizing_service","displayName":"Digitizing Service","basicCategory":"media_service"},{"name":"engraving","displayName":"Engraving","basicCategory":"media_service"},{"name":"media_critic","displayName":"Media Critic","basicCategory":"media_service","children":[{"name":"movie_critic","displayName":"Movie Critic","basicCategory":"media_service"},{"name":"music_critic","displayName":"Music Critic","basicCategory":"media_service"},{"name":"video_game_critic","displayName":"Video Game Critic","basicCategory":"media_service"}]},{"name":"media_news_company","displayName":"Media News Company","basicCategory":"media_service","children":[{"name":"animation_studio","displayName":"Animation Studio","basicCategory":"media_service"},{"name":"book_magazine_distribution","displayName":"Book Magazine Distribution","basicCategory":"media_service"},{"name":"broadcasting_media_production","displayName":"Broadcasting Media Production","basicCategory":"media_service"},{"name":"game_publisher","displayName":"Game Publisher","basicCategory":"media_service"},{"name":"media_agency","displayName":"Media Agency","basicCategory":"media_service"},{"name":"movie_television_studio","displayName":"Movie Television Studio","basicCategory":"media_service"},{"name":"music_production","displayName":"Music Production","basicCategory":"media_service"},{"name":"publisher","displayName":"Publisher","basicCategory":"media_service"},{"name":"radio_station","displayName":"Radio Station","isBasic":true},{"name":"social_media_company","displayName":"Social Media Company","basicCategory":"media_service"},{"name":"television_station","displayName":"Television Station","isBasic":true},{"name":"weather_forecast_service","displayName":"Weather Forecast Service","basicCategory":"media_service"}]},{"name":"media_news_website","displayName":"Media News Website","basicCategory":"media_service"},{"name":"media_restoration_service","displayName":"Media Restoration Service","basicCategory":"media_service"},{"name":"music_production_service","displayName":"Music Production Service","basicCategory":"media_service"},{"name":"musical_instrument_service","displayName":"Musical Instrument Service","basicCategory":"media_service","children":[{"name":"piano_service","displayName":"Piano Service","basicCategory":"media_service"},{"name":"vocal_coach","displayName":"Vocal Coach","basicCategory":"media_service"}]},{"name":"photography_service","displayName":"Photography Service","basicCategory":"media_service","children":[{"name":"boudoir_photography_service","displayName":"Boudoir Photography Service","basicCategory":"media_service"},{"name":"event_photography_service","displayName":"Event Photography Service","basicCategory":"media_service"},{"name":"session_photography_service","displayName":"Session Photography Service","basicCategory":"media_service"}]},{"name":"print_media","displayName":"Print Media","basicCategory":"media_service"},{"name":"record_label","displayName":"Record Label","basicCategory":"media_service"},{"name":"recording_and_rehearsal_studio","displayName":"Recording and Rehearsal Studio","basicCategory":"media_service"},{"name":"studio_taping","displayName":"Studio Taping","basicCategory":"media_service"},{"name":"theatrical_production","displayName":"Theatrical Production","basicCategory":"media_service"},{"name":"video_film_production","displayName":"Video Film Production","basicCategory":"media_service"},{"name":"weather_station","displayName":"Weather Station","basicCategory":"media_service"}]},{"name":"printing_service","displayName":"Printing Service","isBasic":true,"children":[{"name":"3d_printing_service","displayName":"3d Printing Service","basicCategory":"printing_service"},{"name":"commercial_printer","displayName":"Commercial Printer","basicCategory":"printing_service"},{"name":"duplication_service","displayName":"Duplication Service","basicCategory":"printing_service"},{"name":"screen_printing_service","displayName":"Screen Printing Service","basicCategory":"printing_service","children":[{"name":"t_shirt_printing_service","displayName":"T-shirt Printing Service","basicCategory":"printing_service"}]}]},{"name":"professional_service","displayName":"Professional Service","isBasic":true,"children":[{"name":"advertising_agency","displayName":"Advertising Agency","basicCategory":"professional_service"},{"name":"bank_equipment_service","displayName":"Bank Equipment Service","basicCategory":"professional_service"},{"name":"billing_service","displayName":"Billing Service","basicCategory":"professional_service"},{"name":"bookkeeper","displayName":"Bookkeeper","basicCategory":"professional_service"},{"name":"business_consulting","displayName":"Business Consulting","basicCategory":"professional_service"},{"name":"career_counseling","displayName":"Career Counseling","basicCategory":"professional_service"},{"name":"certification_agency","displayName":"Certification Agency","basicCategory":"professional_service"},{"name":"cleaning_service","displayName":"Cleaning Service","basicCategory":"professional_service","children":[{"name":"industrial_cleaning_service","displayName":"Industrial Cleaning Service","basicCategory":"professional_service"},{"name":"janitorial_service","displayName":"Janitorial Service","basicCategory":"professional_service"},{"name":"office_cleaning","displayName":"Office Cleaning","basicCategory":"professional_service"}]},{"name":"copywriting_service","displayName":"Copywriting Service","basicCategory":"professional_service"},{"name":"coworking_space","displayName":"Coworking Space","basicCategory":"professional_service"},{"name":"e_commerce_service","displayName":"E-commerce Service","basicCategory":"professional_service"},{"name":"editorial_service","displayName":"Editorial Service","basicCategory":"professional_service"},{"name":"employment_agency","displayName":"Employment Agency","basicCategory":"professional_service","children":[{"name":"temp_agency","displayName":"Temp Agency","basicCategory":"professional_service"}]},{"name":"food_and_beverage_consultant","displayName":"Food and Beverage Consultant","basicCategory":"professional_service"},{"name":"immigration_assistance_service","displayName":"Immigration Assistance Service","basicCategory":"professional_service"},{"name":"internet_marketing_service","displayName":"Internet Marketing Service","basicCategory":"professional_service"},{"name":"marketing_agency","displayName":"Marketing Agency","basicCategory":"professional_service"},{"name":"merchandising_service","displayName":"Merchandising Service","basicCategory":"professional_service"},{"name":"payroll_service","displayName":"Payroll Service","basicCategory":"professional_service"},{"name":"public_relations","displayName":"Public Relations","basicCategory":"professional_service"},{"name":"shredding_service","displayName":"Shredding Service","basicCategory":"professional_service"},{"name":"social_media_agency","displayName":"Social Media Agency","basicCategory":"professional_service"},{"name":"talent_agency","displayName":"Talent Agency","basicCategory":"professional_service"},{"name":"translation_service","displayName":"Translation Service","basicCategory":"professional_service"},{"name":"typing_service","displayName":"Typing Service","basicCategory":"professional_service"},{"name":"writing_service","displayName":"Writing Service","basicCategory":"professional_service"}]},{"name":"real_estate_service","displayName":"Real Estate Service","isBasic":true,"children":[{"name":"builder","displayName":"Builder","basicCategory":"real_estate_service","children":[{"name":"home_developer","displayName":"Home Developer","basicCategory":"real_estate_service"}]},{"name":"commercial_real_estate","displayName":"Commercial Real Estate","basicCategory":"real_estate_service"},{"name":"display_home_center","displayName":"Display Home Center","basicCategory":"real_estate_service"},{"name":"escrow_service","displayName":"Escrow Service","basicCategory":"real_estate_service"},{"name":"estate_liquidation","displayName":"Estate Liquidation","basicCategory":"real_estate_service"},{"name":"home_organization","displayName":"Home Organization","basicCategory":"real_estate_service"},{"name":"home_staging","displayName":"Home Staging","basicCategory":"real_estate_service"},{"name":"homeowner_association","displayName":"Homeowner Association","basicCategory":"real_estate_service"},{"name":"housing_cooperative","displayName":"Housing Cooperative","basicCategory":"real_estate_service"},{"name":"kitchen_incubator","displayName":"Kitchen Incubator","basicCategory":"real_estate_service"},{"name":"land_surveying","displayName":"Land Surveying","basicCategory":"real_estate_service"},{"name":"mobile_home_dealer","displayName":"Mobile Home Dealer","basicCategory":"real_estate_service"},{"name":"property_management","displayName":"Property Management","basicCategory":"real_estate_service"},{"name":"real_estate_agent","displayName":"Real Estate Agent","basicCategory":"real_estate_service","children":[{"name":"apartment_agent","displayName":"Apartment Agent","basicCategory":"real_estate_service"}]},{"name":"real_estate_photography","displayName":"Real Estate Photography","basicCategory":"real_estate_service"},{"name":"shared_office_space","displayName":"Shared Office Space","basicCategory":"real_estate_service"}]},{"name":"rental_service","displayName":"Rental Service","isBasic":true,"children":[{"name":"art_space_rental","displayName":"Art Space Rental","basicCategory":"rental_service"},{"name":"bus_rental","displayName":"Bus Rental","basicCategory":"rental_service"},{"name":"clothing_rental","displayName":"Clothing Rental","basicCategory":"rental_service"},{"name":"dumpster_rental","displayName":"Dumpster Rental","basicCategory":"rental_service"},{"name":"machine_and_tool_rental","displayName":"Machine and Tool Rental","basicCategory":"rental_service"},{"name":"rental_kiosk","displayName":"Rental Kiosk","basicCategory":"rental_service"},{"name":"vehicle_rental_service","displayName":"Vehicle Rental Service","basicCategory":"rental_service","children":[{"name":"car_rental_service","displayName":"Car Rental Service","basicCategory":"rental_service"},{"name":"motorcycle_rental_service","displayName":"Motorcycle Rental Service","basicCategory":"rental_service"},{"name":"rv_rental_service","displayName":"RV Rental Service","basicCategory":"rental_service"},{"name":"trailer_rental_service","displayName":"Trailer Rental Service","basicCategory":"rental_service"},{"name":"truck_rental_service","displayName":"Truck Rental Service","basicCategory":"rental_service"}]}]},{"name":"security_service","displayName":"Security Service","isBasic":true,"children":[{"name":"fingerprinting_service","displayName":"Fingerprinting Service","basicCategory":"security_service"}]},{"name":"shipping_or_delivery_service","displayName":"Shipping or Delivery Service","isBasic":true,"children":[{"name":"courier_and_delivery_service","displayName":"Courier and Delivery Service","basicCategory":"shipping_or_delivery_service"},{"name":"mailbox_center","displayName":"Mailbox Center","basicCategory":"shipping_or_delivery_service"},{"name":"packaging_contractors_and_service","displayName":"Packaging Contractors and Service","basicCategory":"shipping_or_delivery_service"},{"name":"post_office","displayName":"Post Office","basicCategory":"shipping_or_delivery_service"},{"name":"shipping_center","displayName":"Shipping Center","basicCategory":"shipping_or_delivery_service"},{"name":"shipping_collection_service","displayName":"Shipping Collection Service","basicCategory":"shipping_or_delivery_service"},{"name":"vehicle_shipping","displayName":"Vehicle Shipping","basicCategory":"shipping_or_delivery_service"}]},{"name":"storage_facility","displayName":"Storage Facility","isBasic":true,"children":[{"name":"automotive_storage_facility","displayName":"Automotive Storage Facility","basicCategory":"storage_facility"},{"name":"boat_storage_facility","displayName":"Boat Storage Facility","basicCategory":"storage_facility"},{"name":"package_locker","displayName":"Package Locker","basicCategory":"storage_facility"},{"name":"rv_storage_facility","displayName":"RV Storage Facility","basicCategory":"storage_facility"},{"name":"self_storage_facility","displayName":"Self Storage Facility","basicCategory":"storage_facility"}]},{"name":"technical_service","displayName":"Technical Service","isBasic":true,"children":[{"name":"acoustical_consultant","displayName":"Acoustical Consultant","basicCategory":"technical_service"},{"name":"bike_repair_maintenance","displayName":"Bike Repair Maintenance","basicCategory":"technical_service"},{"name":"commercial_refrigeration","displayName":"Commercial Refrigeration","basicCategory":"technical_service"},{"name":"computer_hardware_company","displayName":"Computer Hardware Company","basicCategory":"technical_service"},{"name":"electronics_repair_shop","displayName":"Electronics Repair Shop","basicCategory":"technical_service"},{"name":"elevator_service","displayName":"Elevator Service","basicCategory":"technical_service"},{"name":"generator_installation_repair","displayName":"Generator Installation Repair","basicCategory":"technical_service"},{"name":"hydraulic_repair_service","displayName":"Hydraulic Repair Service","basicCategory":"technical_service"},{"name":"internet_service_provider","displayName":"Internet Service Provider","basicCategory":"technical_service","children":[{"name":"web_hosting_service","displayName":"Web Hosting Service","basicCategory":"technical_service"}]},{"name":"it_service_and_computer_repair","displayName":"IT Service and Computer Repair","basicCategory":"technical_service","children":[{"name":"it_consultant","displayName":"IT Consultant","basicCategory":"technical_service"},{"name":"mobile_phone_repair","displayName":"Mobile Phone Repair","basicCategory":"technical_service"}]},{"name":"jewelry_repair_service","displayName":"Jewelry Repair Service","basicCategory":"technical_service"},{"name":"laboratory","displayName":"Laboratory","basicCategory":"technical_service"},{"name":"machine_shop","displayName":"Machine Shop","basicCategory":"technical_service"},{"name":"metal_detector_service","displayName":"Metal Detector Service","basicCategory":"technical_service"},{"name":"software_development","displayName":"Software Development","basicCategory":"technical_service"},{"name":"taxidermist","displayName":"Taxidermist","basicCategory":"technical_service"},{"name":"telephone_service","displayName":"Telephone Service","basicCategory":"technical_service"},{"name":"watch_repair_service","displayName":"Watch Repair Service","basicCategory":"technical_service"}]},{"name":"telecommunications_service","displayName":"Telecommunications Service","isBasic":true},{"name":"utility_energy_infrastructure","displayName":"Utility Energy Infrastructure","isBasic":true,"children":[{"name":"wind_energy","displayName":"Wind Energy","basicCategory":"utility_energy_infrastructure"}]}]},{"name":"shopping","displayName":"Shopping","isBasic":true,"children":[{"name":"convenience_store","displayName":"Convenience Store","isBasic":true},{"name":"department_store","displayName":"Department Store","isBasic":true},{"name":"discount_store","displayName":"Discount Store","isBasic":true},{"name":"fashion_and_apparel_store","displayName":"Fashion and Apparel Store","isBasic":true,"children":[{"name":"baby_gear_and_nursery_store","displayName":"Baby Gear and Nursery Store","basicCategory":"fashion_and_apparel_store"},{"name":"clothing_store","displayName":"Clothing Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"bridal_shop","displayName":"Bridal Shop","basicCategory":"fashion_and_apparel_store"},{"name":"childrens_clothing_store","displayName":"Children's Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"custom_clothing_store","displayName":"Custom Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"denim_wear_store","displayName":"Denim Wear Store","basicCategory":"fashion_and_apparel_store"},{"name":"designer_clothing","displayName":"Designer Clothing","basicCategory":"fashion_and_apparel_store"},{"name":"formal_wear_store","displayName":"Formal Wear Store","basicCategory":"fashion_and_apparel_store"},{"name":"fur_clothing","displayName":"Fur Clothing","basicCategory":"fashion_and_apparel_store"},{"name":"lingerie_store","displayName":"Lingerie Store","basicCategory":"fashion_and_apparel_store"},{"name":"maternity_wear","displayName":"Maternity Wear","basicCategory":"fashion_and_apparel_store"},{"name":"mens_clothing_store","displayName":"Men's Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"plus_size_clothing_store","displayName":"Plus Size Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"sleepwear","displayName":"Sleepwear","basicCategory":"fashion_and_apparel_store"},{"name":"t_shirt_store","displayName":"T-shirt Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"custom_t_shirt_store","displayName":"Custom T-shirt Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"traditional_clothing","displayName":"Traditional Clothing","basicCategory":"fashion_and_apparel_store","children":[{"name":"saree_shop","displayName":"Saree Shop","basicCategory":"fashion_and_apparel_store"}]},{"name":"uniform_store","displayName":"Uniform Store","basicCategory":"fashion_and_apparel_store"},{"name":"womens_clothing_store","displayName":"Women's Clothing Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"eyewear_store","displayName":"Eyewear Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"sunglasses_store","displayName":"Sunglasses Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"fashion_accessories_store","displayName":"Fashion Accessories Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"handbag_store","displayName":"Handbag Store","basicCategory":"fashion_and_apparel_store"},{"name":"hat_store","displayName":"Hat Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"fashion_boutique","displayName":"Fashion Boutique","basicCategory":"fashion_and_apparel_store"},{"name":"jewelry_store","displayName":"Jewelry Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"diamond_dealer","displayName":"Diamond Dealer","basicCategory":"fashion_and_apparel_store"},{"name":"goldsmith","displayName":"Goldsmith","basicCategory":"fashion_and_apparel_store"},{"name":"watch_store","displayName":"Watch Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"leather_goods_store","displayName":"Leather Goods Store","basicCategory":"fashion_and_apparel_store"},{"name":"luggage_store","displayName":"Luggage Store","basicCategory":"fashion_and_apparel_store"},{"name":"shoe_store","displayName":"Shoe Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"orthopedic_shoe_store","displayName":"Orthopedic Shoe Store","basicCategory":"fashion_and_apparel_store"}]}]},{"name":"food_and_beverage_store","displayName":"Food and Beverage Store","isBasic":true,"children":[{"name":"beer_wine_spirits_store","displayName":"Beer Wine Spirits Store","basicCategory":"food_and_beverage_store"},{"name":"brewing_supply_store","displayName":"Brewing Supply Store","basicCategory":"food_and_beverage_store"},{"name":"butcher_shop","displayName":"Butcher Shop","basicCategory":"food_and_beverage_store"},{"name":"cheese_shop","displayName":"Cheese Shop","basicCategory":"food_and_beverage_store"},{"name":"coffee_and_tea_supplies","displayName":"Coffee and Tea Supplies","basicCategory":"food_and_beverage_store"},{"name":"csa_farm","displayName":"Csa Farm","basicCategory":"food_and_beverage_store"},{"name":"fishmonger","displayName":"Fishmonger","basicCategory":"food_and_beverage_store"},{"name":"grocery_store","displayName":"Grocery Store","basicCategory":"food_and_beverage_store","children":[{"name":"asian_grocery_store","displayName":"Asian Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"ethical_grocery_store","displayName":"Ethical Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"indian_grocery_store","displayName":"Indian Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"international_grocery_store","displayName":"International Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"japanese_grocery_store","displayName":"Japanese Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"korean_grocery_store","displayName":"Korean Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"kosher_grocery_store","displayName":"Kosher Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"mexican_grocery_store","displayName":"Mexican Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"organic_grocery_store","displayName":"Organic Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"russian_grocery_store","displayName":"Russian Grocery Store","basicCategory":"food_and_beverage_store"}]},{"name":"health_food_store","displayName":"Health Food Store","basicCategory":"food_and_beverage_store"},{"name":"herb_and_spice_store","displayName":"Herb and Spice Store","basicCategory":"food_and_beverage_store"},{"name":"honey_farm_shop","displayName":"Honey Farm Shop","basicCategory":"food_and_beverage_store"},{"name":"imported_food_store","displayName":"Imported Food Store","basicCategory":"food_and_beverage_store"},{"name":"liquor_store","displayName":"Liquor Store","basicCategory":"food_and_beverage_store"},{"name":"olive_oil_store","displayName":"Olive Oil Store","basicCategory":"food_and_beverage_store"},{"name":"patisserie_cake_shop","displayName":"Patisserie Cake Shop","basicCategory":"food_and_beverage_store","children":[{"name":"custom_cakes_shop","displayName":"Custom Cakes Shop","basicCategory":"food_and_beverage_store"}]},{"name":"pick_your_own_farm","displayName":"Pick Your Own Farm","basicCategory":"food_and_beverage_store"},{"name":"seafood_market","displayName":"Seafood Market","basicCategory":"food_and_beverage_store"},{"name":"smokehouse","displayName":"Smokehouse","basicCategory":"food_and_beverage_store"},{"name":"specialty_foods_store","displayName":"Specialty Foods Store","basicCategory":"food_and_beverage_store","children":[{"name":"dairy_store","displayName":"Dairy Store","basicCategory":"food_and_beverage_store"},{"name":"frozen_foods_store","displayName":"Frozen Foods Store","basicCategory":"food_and_beverage_store"},{"name":"pasta_store","displayName":"Pasta Store","basicCategory":"food_and_beverage_store"},{"name":"produce_store","displayName":"Produce Store","basicCategory":"food_and_beverage_store"},{"name":"rice_store","displayName":"Rice Store","basicCategory":"food_and_beverage_store"}]},{"name":"tobacco_shop","displayName":"Tobacco Shop","basicCategory":"food_and_beverage_store"},{"name":"vitamin_and_supplement_store","displayName":"Vitamin and Supplement Store","basicCategory":"food_and_beverage_store"},{"name":"water_store","displayName":"Water Store","basicCategory":"food_and_beverage_store"}]},{"name":"kiosk","displayName":"Kiosk","isBasic":true},{"name":"market","displayName":"Market","isBasic":true,"children":[{"name":"bazaar","displayName":"Bazaar","basicCategory":"market"},{"name":"farmers_market","displayName":"Farmers Market","isBasic":true},{"name":"health_market","displayName":"Health Market","basicCategory":"market"},{"name":"holiday_market","displayName":"Holiday Market","basicCategory":"market"},{"name":"market_stall","displayName":"Market Stall","basicCategory":"market"},{"name":"night_market","displayName":"Night Market","basicCategory":"market"},{"name":"public_market","displayName":"Public Market","basicCategory":"market"},{"name":"shopping_passage","displayName":"Shopping Passage","basicCategory":"market"},{"name":"street_vendor","displayName":"Street Vendor","basicCategory":"market"}]},{"name":"second_hand_store","displayName":"Second Hand Store","isBasic":true,"children":[{"name":"antique_store","displayName":"Antique Store","basicCategory":"second_hand_store"},{"name":"flea_market","displayName":"Flea Market","basicCategory":"second_hand_store"},{"name":"junkyard","displayName":"Junkyard","basicCategory":"second_hand_store"},{"name":"pawn_shop","displayName":"Pawn Shop","basicCategory":"second_hand_store"},{"name":"second_hand_clothing_store","displayName":"Second Hand Clothing Store","basicCategory":"second_hand_store"}]},{"name":"shopping_mall","displayName":"Shopping Mall","isBasic":true},{"name":"shopping_service","displayName":"Shopping Service","isBasic":true,"children":[{"name":"personal_shopper","displayName":"Personal Shopper","basicCategory":"shopping_service"}]},{"name":"specialty_store","displayName":"Specialty Store","isBasic":true,"children":[{"name":"adult_store","displayName":"Adult Store","basicCategory":"specialty_store"},{"name":"animal_and_pet_store","displayName":"Animal and Pet Store","isBasic":true,"children":[{"name":"horse_equipment_shop","displayName":"Horse Equipment Shop","basicCategory":"animal_and_pet_store"},{"name":"livestock_feed_and_supply_store","displayName":"Livestock Feed and Supply Store","basicCategory":"animal_and_pet_store"},{"name":"pet_store","displayName":"Pet Store","basicCategory":"animal_and_pet_store","children":[{"name":"aquatic_pet_store","displayName":"Aquatic Pet Store","basicCategory":"animal_and_pet_store"},{"name":"bird_store","displayName":"Bird Store","basicCategory":"animal_and_pet_store"},{"name":"reptile_store","displayName":"Reptile Store","basicCategory":"animal_and_pet_store"}]}]},{"name":"arts_crafts_and_hobby_store","displayName":"Arts Crafts and Hobby Store","isBasic":true,"children":[{"name":"art_supply_store","displayName":"Art Supply Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"atelier","displayName":"Atelier","basicCategory":"arts_crafts_and_hobby_store"},{"name":"cooking_classes","displayName":"Cooking Classes","basicCategory":"arts_crafts_and_hobby_store"},{"name":"costume_store","displayName":"Costume Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"craft_store","displayName":"Craft Store","basicCategory":"arts_crafts_and_hobby_store","children":[{"name":"embroidery_and_crochet_store","displayName":"Embroidery and Crochet Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"knitting_supply_store","displayName":"Knitting Supply Store","basicCategory":"arts_crafts_and_hobby_store"}]},{"name":"fabric_store","displayName":"Fabric Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"framing_store","displayName":"Framing Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"hobby_shop","displayName":"Hobby Shop","basicCategory":"arts_crafts_and_hobby_store"}]},{"name":"auction_house","displayName":"Auction House","basicCategory":"specialty_store","children":[{"name":"car_auction","displayName":"Car Auction","basicCategory":"specialty_store"}]},{"name":"books_music_and_video_store","displayName":"Books Music and Video Store","isBasic":true,"children":[{"name":"bookstore","displayName":"Bookstore","basicCategory":"books_music_and_video_store","children":[{"name":"academic_bookstore","displayName":"Academic Bookstore","basicCategory":"books_music_and_video_store"},{"name":"comic_books_store","displayName":"Comic Books Store","basicCategory":"books_music_and_video_store"},{"name":"used_bookstore","displayName":"Used Bookstore","basicCategory":"books_music_and_video_store"}]},{"name":"music_and_dvd_store","displayName":"Music and DVD Store","basicCategory":"books_music_and_video_store"},{"name":"newspaper_and_magazines_store","displayName":"Newspaper and Magazines Store","basicCategory":"books_music_and_video_store"},{"name":"video_and_video_game_rental","displayName":"Video and Video Game Rental","basicCategory":"books_music_and_video_store"},{"name":"video_game_store","displayName":"Video Game Store","basicCategory":"books_music_and_video_store"},{"name":"vinyl_record_store","displayName":"Vinyl Record Store","basicCategory":"books_music_and_video_store"}]},{"name":"cards_and_stationery_store","displayName":"Cards and Stationery Store","basicCategory":"specialty_store"},{"name":"customized_merchandise_store","displayName":"Customized Merchandise Store","basicCategory":"specialty_store"},{"name":"duty_free_store","displayName":"Duty Free Store","basicCategory":"specialty_store"},{"name":"educational_supply_store","displayName":"Educational Supply Store","basicCategory":"specialty_store"},{"name":"electronics_store","displayName":"Electronics Store","isBasic":true,"children":[{"name":"audio_visual_equipment_store","displayName":"Audio Visual Equipment Store","basicCategory":"electronics_store"},{"name":"battery_store","displayName":"Battery Store","basicCategory":"electronics_store"},{"name":"camera_and_photography_store","displayName":"Camera and Photography Store","basicCategory":"electronics_store"},{"name":"car_stereo_store","displayName":"Car Stereo Store","basicCategory":"electronics_store"},{"name":"computer_store","displayName":"Computer Store","basicCategory":"electronics_store"},{"name":"drone_store","displayName":"Drone Store","basicCategory":"electronics_store"},{"name":"home_theater_systems_stores","displayName":"Home Theater Systems Stores","basicCategory":"electronics_store"},{"name":"mobile_phone_accessory_store","displayName":"Mobile Phone Accessory Store","basicCategory":"electronics_store"},{"name":"mobile_phone_store","displayName":"Mobile Phone Store","basicCategory":"electronics_store"}]},{"name":"farming_equipment_and_supply_store","displayName":"Farming Equipment and Supply Store","basicCategory":"specialty_store","children":[{"name":"agricultural_seed_store","displayName":"Agricultural Seed Store","basicCategory":"specialty_store"},{"name":"farming_equipment_store","displayName":"Farming Equipment Store","basicCategory":"specialty_store"}]},{"name":"fireworks_store","displayName":"Fireworks Store","basicCategory":"specialty_store"},{"name":"flowers_and_gifts_store","displayName":"Flowers and Gifts Store","isBasic":true,"children":[{"name":"florist","displayName":"Florist","basicCategory":"flowers_and_gifts_store"},{"name":"flower_market","displayName":"Flower Market","basicCategory":"flowers_and_gifts_store"},{"name":"gift_shop","displayName":"Gift Shop","basicCategory":"flowers_and_gifts_store"}]},{"name":"gemstone_and_mineral_store","displayName":"Gemstone and Mineral Store","basicCategory":"specialty_store"},{"name":"gun_and_ammo_store","displayName":"Gun and Ammo Store","basicCategory":"specialty_store","children":[{"name":"gunsmith","displayName":"Gunsmith","basicCategory":"specialty_store"}]},{"name":"hardware_home_and_garden_store","displayName":"Hardware Home and Garden Store","isBasic":true,"children":[{"name":"appliance_store","displayName":"Appliance Store","basicCategory":"hardware_home_and_garden_store"},{"name":"bedding_and_bath_store","displayName":"Bedding and Bath Store","basicCategory":"hardware_home_and_garden_store"},{"name":"building_supply_store","displayName":"Building Supply Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"lumber_store","displayName":"Lumber Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"candle_store","displayName":"Candle Store","basicCategory":"hardware_home_and_garden_store"},{"name":"carpet_store","displayName":"Carpet Store","basicCategory":"hardware_home_and_garden_store"},{"name":"christmas_tree_store","displayName":"Christmas Tree Store","basicCategory":"hardware_home_and_garden_store"},{"name":"do_it_yourself_store","displayName":"Do IT Yourself Store","basicCategory":"hardware_home_and_garden_store"},{"name":"electrical_supply_store","displayName":"Electrical Supply Store","basicCategory":"hardware_home_and_garden_store"},{"name":"flooring_store","displayName":"Flooring Store","basicCategory":"hardware_home_and_garden_store"},{"name":"furniture_accessory_store","displayName":"Furniture Accessory Store","basicCategory":"hardware_home_and_garden_store"},{"name":"furniture_store","displayName":"Furniture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"grilling_equipment_store","displayName":"Grilling Equipment Store","basicCategory":"hardware_home_and_garden_store"},{"name":"hardware_store","displayName":"Hardware Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"welding_supply_store","displayName":"Welding Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"holiday_decor_store","displayName":"Holiday Decor Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_decor_store","displayName":"Home Decor Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_goods_store","displayName":"Home Goods Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_improvement_store","displayName":"Home Improvement Store","basicCategory":"hardware_home_and_garden_store"},{"name":"hot_tub_and_pool_store","displayName":"Hot Tub and Pool Store","basicCategory":"hardware_home_and_garden_store"},{"name":"kitchen_and_bath_store","displayName":"Kitchen and Bath Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"bathroom_fixture_store","displayName":"Bathroom Fixture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"kitchen_supply_store","displayName":"Kitchen Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"lawn_mower_store","displayName":"Lawn Mower Store","basicCategory":"hardware_home_and_garden_store"},{"name":"lighting_store","displayName":"Lighting Store","basicCategory":"hardware_home_and_garden_store"},{"name":"linen_store","displayName":"Linen Store","basicCategory":"hardware_home_and_garden_store"},{"name":"mattress_store","displayName":"Mattress Store","basicCategory":"hardware_home_and_garden_store"},{"name":"nursery_and_gardening_store","displayName":"Nursery and Gardening Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"hydroponic_gardening_store","displayName":"Hydroponic Gardening Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"outdoor_furniture_store","displayName":"Outdoor Furniture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"paint_store","displayName":"Paint Store","basicCategory":"hardware_home_and_garden_store"},{"name":"rug_store","displayName":"Rug Store","basicCategory":"hardware_home_and_garden_store"},{"name":"tile_store","displayName":"Tile Store","basicCategory":"hardware_home_and_garden_store"},{"name":"wallpaper_store","displayName":"Wallpaper Store","basicCategory":"hardware_home_and_garden_store"},{"name":"window_treatment_store","displayName":"Window Treatment Store","basicCategory":"hardware_home_and_garden_store"},{"name":"woodworking_supply_store","displayName":"Woodworking Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"medical_supply_store","displayName":"Medical Supply Store","basicCategory":"specialty_store","children":[{"name":"dental_supply_store","displayName":"Dental Supply Store","basicCategory":"specialty_store"},{"name":"hearing_aid_store","displayName":"Hearing Aid Store","basicCategory":"specialty_store"}]},{"name":"musical_instrument_and_pro_audio_store","displayName":"Musical Instrument and Pro Audio Store","isBasic":true,"children":[{"name":"dj_equipment_store","displayName":"DJ Equipment Store","basicCategory":"musical_instrument_and_pro_audio_store"},{"name":"musical_instrument_store","displayName":"Musical Instrument Store","basicCategory":"musical_instrument_and_pro_audio_store","children":[{"name":"guitar_store","displayName":"Guitar Store","basicCategory":"musical_instrument_and_pro_audio_store"},{"name":"piano_store","displayName":"Piano Store","basicCategory":"musical_instrument_and_pro_audio_store"}]},{"name":"pro_audio_store","displayName":"Pro Audio Store","basicCategory":"musical_instrument_and_pro_audio_store"}]},{"name":"office_supply_store","displayName":"Office Supply Store","isBasic":true,"children":[{"name":"packing_supply_store","displayName":"Packing Supply Store","basicCategory":"office_supply_store"},{"name":"pen_store","displayName":"Pen Store","basicCategory":"office_supply_store"}]},{"name":"outlet_store","displayName":"Outlet Store","basicCategory":"specialty_store"},{"name":"party_supply_store","displayName":"Party Supply Store","basicCategory":"specialty_store"},{"name":"personal_care_and_beauty_store","displayName":"Personal Care and Beauty Store","isBasic":true,"children":[{"name":"bath_and_body_store","displayName":"Bath and Body Store","basicCategory":"personal_care_and_beauty_store"},{"name":"beauty_supply_store","displayName":"Beauty Supply Store","basicCategory":"personal_care_and_beauty_store","children":[{"name":"cosmetics_and_fragrance_store","displayName":"Cosmetics and Fragrance Store","basicCategory":"personal_care_and_beauty_store"},{"name":"hair_supply_store","displayName":"Hair Supply Store","basicCategory":"personal_care_and_beauty_store"},{"name":"wig_store","displayName":"Wig Store","basicCategory":"personal_care_and_beauty_store"}]}]},{"name":"pharmacy_and_drug_store","displayName":"Pharmacy and Drug Store","isBasic":true,"children":[{"name":"drugstore","displayName":"Drugstore","basicCategory":"pharmacy_and_drug_store"},{"name":"pharmacy","displayName":"Pharmacy","basicCategory":"pharmacy_and_drug_store"}]},{"name":"pop_up_store","displayName":"Pop Up Store","basicCategory":"specialty_store"},{"name":"religious_and_spiritual_goods_store","displayName":"Religious and Spiritual Goods Store","basicCategory":"specialty_store","children":[{"name":"buddhist_goods_store","displayName":"Buddhist Goods Store","basicCategory":"specialty_store"},{"name":"christian_goods_store","displayName":"Christian Goods Store","basicCategory":"specialty_store","children":[{"name":"church_supply_store","displayName":"Church Supply Store","basicCategory":"specialty_store"}]},{"name":"hindu_goods_store","displayName":"Hindu Goods Store","basicCategory":"specialty_store"},{"name":"islamic_goods_store","displayName":"Islamic Goods Store","basicCategory":"specialty_store"},{"name":"jewish_goods_store","displayName":"Jewish Goods Store","basicCategory":"specialty_store"},{"name":"mind_body_spirit_store","displayName":"Mind Body Spirit Store","basicCategory":"specialty_store"},{"name":"new_age_goods_store","displayName":"New Age Goods Store","basicCategory":"specialty_store"},{"name":"occult_store","displayName":"Occult Store","basicCategory":"specialty_store"},{"name":"pagan_goods_store","displayName":"Pagan Goods Store","basicCategory":"specialty_store"}]},{"name":"safe_store","displayName":"Safe Store","basicCategory":"specialty_store"},{"name":"safety_equipment_store","displayName":"Safety Equipment Store","basicCategory":"specialty_store"},{"name":"smoke_and_vape_store","displayName":"Smoke and Vape Store","basicCategory":"specialty_store","children":[{"name":"cannabis_dispensary","displayName":"Cannabis Dispensary","basicCategory":"specialty_store"}]},{"name":"souvenir_store","displayName":"Souvenir Store","basicCategory":"specialty_store"},{"name":"sporting_goods_store","displayName":"Sporting Goods Store","isBasic":true,"children":[{"name":"archery_store","displayName":"Archery Store","basicCategory":"sporting_goods_store"},{"name":"bike_store","displayName":"Bike Store","basicCategory":"sporting_goods_store"},{"name":"dive_store","displayName":"Dive Store","basicCategory":"sporting_goods_store"},{"name":"fitness_exercise_store","displayName":"Fitness Exercise Store","basicCategory":"sporting_goods_store"},{"name":"golf_equipment_store","displayName":"Golf Equipment Store","basicCategory":"sporting_goods_store"},{"name":"hockey_equipment_store","displayName":"Hockey Equipment Store","basicCategory":"sporting_goods_store"},{"name":"hunting_and_fishing_store","displayName":"Hunting and Fishing Store","basicCategory":"sporting_goods_store"},{"name":"outdoor_store","displayName":"Outdoor Store","basicCategory":"sporting_goods_store"},{"name":"pool_and_billiards_store","displayName":"Pool and Billiards Store","basicCategory":"sporting_goods_store"},{"name":"skate_store","displayName":"Skate Store","basicCategory":"sporting_goods_store"},{"name":"ski_and_snowboard_store","displayName":"Ski and Snowboard Store","basicCategory":"sporting_goods_store"},{"name":"sportswear_store","displayName":"Sportswear Store","basicCategory":"sporting_goods_store","children":[{"name":"dancewear_store","displayName":"Dancewear Store","basicCategory":"sporting_goods_store"}]},{"name":"surf_store","displayName":"Surf Store","basicCategory":"sporting_goods_store"},{"name":"swimwear_store","displayName":"Swimwear Store","basicCategory":"sporting_goods_store"}]},{"name":"tactical_supply_store","displayName":"Tactical Supply Store","basicCategory":"specialty_store","children":[{"name":"army_and_navy_store","displayName":"Army and Navy Store","basicCategory":"specialty_store"},{"name":"military_surplus_store","displayName":"Military Surplus Store","basicCategory":"specialty_store"}]},{"name":"toys_and_games_store","displayName":"Toys and Games Store","isBasic":true,"children":[{"name":"tabletop_games_store","displayName":"Tabletop Games Store","basicCategory":"toys_and_games_store"},{"name":"toy_store","displayName":"Toy Store","basicCategory":"toys_and_games_store"}]},{"name":"trophy_store","displayName":"Trophy Store","basicCategory":"specialty_store"},{"name":"vehicle_parts_store","displayName":"Vehicle Parts Store","isBasic":true,"children":[{"name":"auto_parts_store","displayName":"Auto Parts Store","basicCategory":"vehicle_parts_store"},{"name":"boat_parts_store","displayName":"Boat Parts Store","basicCategory":"vehicle_parts_store"},{"name":"motorcycle_parts_store","displayName":"Motorcycle Parts Store","basicCategory":"vehicle_parts_store"},{"name":"motorsports_store","displayName":"Motorsports Store","basicCategory":"vehicle_parts_store"},{"name":"rv_parts_store","displayName":"RV Parts Store","basicCategory":"vehicle_parts_store"}]}]},{"name":"superstore","displayName":"Superstore","isBasic":true},{"name":"vehicle_dealer","displayName":"Vehicle Dealer","isBasic":true,"children":[{"name":"aircraft_dealer","displayName":"Aircraft Dealer","basicCategory":"vehicle_dealer"},{"name":"auto_dealer","displayName":"Auto Dealer","isBasic":true,"children":[{"name":"auto_broker","displayName":"Auto Broker","basicCategory":"auto_dealer"},{"name":"auto_leasing","displayName":"Auto Leasing","basicCategory":"auto_dealer"},{"name":"used_auto_dealer","displayName":"Used Auto Dealer","basicCategory":"auto_dealer"}]},{"name":"boat_dealer","displayName":"Boat Dealer","basicCategory":"vehicle_dealer"},{"name":"commercial_vehicle_dealer","displayName":"Commercial Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"forklift_dealer","displayName":"Forklift Dealer","basicCategory":"vehicle_dealer"},{"name":"golf_cart_dealer","displayName":"Golf Cart Dealer","basicCategory":"vehicle_dealer"},{"name":"motorcycle_dealer","displayName":"Motorcycle Dealer","basicCategory":"vehicle_dealer"},{"name":"motorsport_vehicle_dealer","displayName":"Motorsport Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"recreational_vehicle_dealer","displayName":"Recreational Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"scooter_dealer","displayName":"Scooter Dealer","basicCategory":"vehicle_dealer"},{"name":"trailer_dealer","displayName":"Trailer Dealer","basicCategory":"vehicle_dealer"},{"name":"truck_dealer","displayName":"Truck Dealer","basicCategory":"vehicle_dealer"}]},{"name":"warehouse_club_store","displayName":"Warehouse Club Store","isBasic":true}]},{"name":"sports_and_recreation","displayName":"Sports and Recreation","isBasic":true,"children":[{"name":"park","displayName":"Park","isBasic":true,"children":[{"name":"dog_park","displayName":"Dog Park","isBasic":true},{"name":"mountain_bike_park","displayName":"Mountain Bike Park","basicCategory":"park"},{"name":"national_park","displayName":"National Park","isBasic":true},{"name":"playground","displayName":"Playground","isBasic":true},{"name":"state_park","displayName":"State Park","basicCategory":"park"},{"name":"water_park","displayName":"Water Park","basicCategory":"park"}]},{"name":"recreational_equipment_rental","displayName":"Recreational Equipment Rental","isBasic":true,"children":[{"name":"atv_rental_tour","displayName":"ATV Rental Tour","basicCategory":"recreational_equipment_rental"},{"name":"beach_equipment_rental","displayName":"Beach Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"bike_rental","displayName":"Bike Rental","basicCategory":"recreational_equipment_rental"},{"name":"boat_hire_service","displayName":"Boat Hire Service","basicCategory":"recreational_equipment_rental"},{"name":"boat_rental_and_training","displayName":"Boat Rental and Training","basicCategory":"recreational_equipment_rental"},{"name":"canoe_and_kayak_hire_service","displayName":"Canoe and Kayak Hire Service","basicCategory":"recreational_equipment_rental"},{"name":"jet_skis_rental","displayName":"Jet Skis Rental","basicCategory":"recreational_equipment_rental"},{"name":"paddleboard_rental","displayName":"Paddleboard Rental","basicCategory":"recreational_equipment_rental"},{"name":"scooter_rental","displayName":"Scooter Rental","basicCategory":"recreational_equipment_rental"},{"name":"sledding_rental","displayName":"Sledding Rental","basicCategory":"recreational_equipment_rental"},{"name":"snorkeling_equipment_rental","displayName":"Snorkeling Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"sport_equipment_rental","displayName":"Sport Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"surfboard_rental","displayName":"Surfboard Rental","basicCategory":"recreational_equipment_rental"}]},{"name":"recreational_trail_or_path","displayName":"Recreational Trail or Path","isBasic":true,"children":[{"name":"backpacking_area","displayName":"Backpacking Area","basicCategory":"recreational_trail_or_path"},{"name":"bike_path","displayName":"Bike Path","basicCategory":"recreational_trail_or_path"},{"name":"hiking_trail","displayName":"Hiking Trail","basicCategory":"recreational_trail_or_path"},{"name":"mountain_bike_trail","displayName":"Mountain Bike Trail","basicCategory":"recreational_trail_or_path"}]},{"name":"sport_league","displayName":"Sport League","isBasic":true,"children":[{"name":"amateur_sport_league","displayName":"Amateur Sport League","basicCategory":"sport_league"},{"name":"esports_league","displayName":"Esports League","basicCategory":"sport_league"},{"name":"professional_sport_league","displayName":"Professional Sport League","basicCategory":"sport_league"},{"name":"school_sport_league","displayName":"School Sport League","basicCategory":"sport_league"}]},{"name":"sport_or_fitness_facility","displayName":"Sport or Fitness Facility","isBasic":true,"children":[{"name":"adventure_sport","displayName":"Adventure Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"axe_throwing","displayName":"Axe Throwing","basicCategory":"sport_or_fitness_facility"},{"name":"bungee_jumping_center","displayName":"Bungee Jumping Center","basicCategory":"sport_or_fitness_facility"},{"name":"challenge_courses_center","displayName":"Challenge Courses Center","basicCategory":"sport_or_fitness_facility"},{"name":"cliff_jumping_center","displayName":"Cliff Jumping Center","basicCategory":"sport_or_fitness_facility"},{"name":"climbing_service","displayName":"Climbing Service","basicCategory":"sport_or_fitness_facility"},{"name":"high_gliding_center","displayName":"High Gliding Center","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_spot","displayName":"Rock Climbing Spot","basicCategory":"sport_or_fitness_facility"},{"name":"ziplining_center","displayName":"Ziplining Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"adventure_sports_center","displayName":"Adventure Sports Center","basicCategory":"sport_or_fitness_facility"},{"name":"atv_recreation_park","displayName":"ATV Recreation Park","basicCategory":"sport_or_fitness_facility"},{"name":"batting_cage","displayName":"Batting Cage","basicCategory":"sport_or_fitness_facility"},{"name":"bowling_alley","displayName":"Bowling Alley","basicCategory":"sport_or_fitness_facility"},{"name":"boxing_class","displayName":"Boxing Class","basicCategory":"sport_or_fitness_facility"},{"name":"boxing_gym","displayName":"Boxing Gym","basicCategory":"sport_or_fitness_facility"},{"name":"cardio_class","displayName":"Cardio Class","basicCategory":"sport_or_fitness_facility"},{"name":"climbing_class","displayName":"Climbing Class","basicCategory":"sport_or_fitness_facility"},{"name":"curling_center","displayName":"Curling Center","basicCategory":"sport_or_fitness_facility"},{"name":"curling_ice","displayName":"Curling Ice","basicCategory":"sport_or_fitness_facility"},{"name":"cycling_class","displayName":"Cycling Class","basicCategory":"sport_or_fitness_facility"},{"name":"dance_studio","displayName":"Dance Studio","basicCategory":"sport_or_fitness_facility"},{"name":"diving_center","displayName":"Diving Center","basicCategory":"sport_or_fitness_facility","children":[{"name":"free_diving_center","displayName":"Free Diving Center","basicCategory":"sport_or_fitness_facility"},{"name":"scuba_diving_center","displayName":"Scuba Diving Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"diving_instruction","displayName":"Diving Instruction","basicCategory":"sport_or_fitness_facility","children":[{"name":"free_diving_instruction","displayName":"Free Diving Instruction","basicCategory":"sport_or_fitness_facility"},{"name":"scuba_diving_instruction","displayName":"Scuba Diving Instruction","basicCategory":"sport_or_fitness_facility"}]},{"name":"fitness_studio","displayName":"Fitness Studio","isBasic":true,"children":[{"name":"aerial_fitness_center","displayName":"Aerial Fitness Center","basicCategory":"fitness_studio"},{"name":"barre_class","displayName":"Barre Class","basicCategory":"fitness_studio"},{"name":"boot_camp","displayName":"Boot Camp","basicCategory":"fitness_studio"},{"name":"pilates_studio","displayName":"Pilates Studio","basicCategory":"fitness_studio"},{"name":"qi_gong_studio","displayName":"Qi Gong Studio","basicCategory":"fitness_studio"},{"name":"tai_chi_studio","displayName":"Tai Chi Studio","basicCategory":"fitness_studio"},{"name":"yoga_studio","displayName":"Yoga Studio","basicCategory":"fitness_studio"}]},{"name":"fitness_trainer","displayName":"Fitness Trainer","basicCategory":"sport_or_fitness_facility"},{"name":"flyboarding_center","displayName":"Flyboarding Center","basicCategory":"sport_or_fitness_facility"},{"name":"flyboarding_rental","displayName":"Flyboarding Rental","basicCategory":"sport_or_fitness_facility"},{"name":"golf_course","displayName":"Golf Course","isBasic":true,"children":[{"name":"driving_range","displayName":"Driving Range","basicCategory":"golf_course"}]},{"name":"golf_instructor","displayName":"Golf Instructor","basicCategory":"sport_or_fitness_facility"},{"name":"gym","displayName":"Gym","isBasic":true,"children":[{"name":"cycle_studio","displayName":"Cycle Studio","basicCategory":"gym"}]},{"name":"gymnastics_center","displayName":"Gymnastics Center","basicCategory":"sport_or_fitness_facility"},{"name":"hang_gliding_center","displayName":"Hang Gliding Center","basicCategory":"sport_or_fitness_facility"},{"name":"hockey_rink","displayName":"Hockey Rink","basicCategory":"sport_or_fitness_facility","children":[{"name":"ice_hockey_rink","displayName":"Ice Hockey Rink","basicCategory":"sport_or_fitness_facility"},{"name":"roller_hockey_rink","displayName":"Roller Hockey Rink","basicCategory":"sport_or_fitness_facility"}]},{"name":"horse_riding","displayName":"Horse Riding","basicCategory":"sport_or_fitness_facility","children":[{"name":"equestrian_facility","displayName":"Equestrian Facility","basicCategory":"sport_or_fitness_facility"}]},{"name":"horseback_riding_service","displayName":"Horseback Riding Service","basicCategory":"sport_or_fitness_facility"},{"name":"indoor_playcenter","displayName":"Indoor Playcenter","basicCategory":"sport_or_fitness_facility"},{"name":"kiteboarding","displayName":"Kiteboarding","basicCategory":"sport_or_fitness_facility"},{"name":"kiteboarding_instruction","displayName":"Kiteboarding Instruction","basicCategory":"sport_or_fitness_facility"},{"name":"laser_tag","displayName":"Laser Tag","basicCategory":"sport_or_fitness_facility"},{"name":"miniature_golf_course","displayName":"Miniature Golf Course","basicCategory":"sport_or_fitness_facility"},{"name":"paddleboarding_center","displayName":"Paddleboarding Center","basicCategory":"sport_or_fitness_facility"},{"name":"paddleboarding_lessons","displayName":"Paddleboarding Lessons","basicCategory":"sport_or_fitness_facility"},{"name":"paintball","displayName":"Paintball","basicCategory":"sport_or_fitness_facility"},{"name":"parasailing_ride_service","displayName":"Parasailing Ride Service","basicCategory":"sport_or_fitness_facility"},{"name":"pool_billiards","displayName":"Pool Billiards","basicCategory":"sport_or_fitness_facility","children":[{"name":"pool_hall","displayName":"Pool Hall","basicCategory":"sport_or_fitness_facility"}]},{"name":"race_track","displayName":"Race Track","basicCategory":"sport_or_fitness_facility","children":[{"name":"go_kart_track","displayName":"Go Kart Track","basicCategory":"sport_or_fitness_facility"},{"name":"horse_racing_track","displayName":"Horse Racing Track","basicCategory":"sport_or_fitness_facility"},{"name":"motor_race_track","displayName":"Motor Race Track","basicCategory":"sport_or_fitness_facility"},{"name":"track_and_field_track","displayName":"Track and Field Track","basicCategory":"sport_or_fitness_facility"},{"name":"velodrome","displayName":"Velodrome","basicCategory":"sport_or_fitness_facility"}]},{"name":"racing_experience","displayName":"Racing Experience","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_gym","displayName":"Rock Climbing Gym","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_instructor","displayName":"Rock Climbing Instructor","basicCategory":"sport_or_fitness_facility"},{"name":"running_and_track","displayName":"Running and Track","basicCategory":"sport_or_fitness_facility","children":[{"name":"running","displayName":"Running","basicCategory":"sport_or_fitness_facility"},{"name":"track_field_event","displayName":"Track Field Event","basicCategory":"sport_or_fitness_facility"}]},{"name":"self_defense_class","displayName":"Self Defense Class","basicCategory":"sport_or_fitness_facility"},{"name":"shooting_range","displayName":"Shooting Range","basicCategory":"sport_or_fitness_facility","children":[{"name":"archery_range","displayName":"Archery Range","basicCategory":"sport_or_fitness_facility"}]},{"name":"skate_park","displayName":"Skate Park","isBasic":true},{"name":"skating_rink","displayName":"Skating Rink","isBasic":true,"children":[{"name":"ice_skating_rink","displayName":"Ice Skating Rink","basicCategory":"skating_rink"},{"name":"roller_skating_rink","displayName":"Roller Skating Rink","basicCategory":"skating_rink"}]},{"name":"ski_and_snowboard_school","displayName":"Ski and Snowboard School","basicCategory":"sport_or_fitness_facility"},{"name":"sky_diving","displayName":"Sky Diving","basicCategory":"sport_or_fitness_facility","children":[{"name":"sky_diving_drop_zone","displayName":"Sky Diving Drop Zone","basicCategory":"sport_or_fitness_facility"},{"name":"skydiving_center","displayName":"Skydiving Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"snow_sport","displayName":"Snow Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"bobsledding_field","displayName":"Bobsledding Field","basicCategory":"sport_or_fitness_facility"},{"name":"ski_area","displayName":"Ski Area","basicCategory":"sport_or_fitness_facility"},{"name":"ski_chairlift","displayName":"Ski Chairlift","basicCategory":"sport_or_fitness_facility"},{"name":"ski_chalet","displayName":"Ski Chalet","basicCategory":"sport_or_fitness_facility"},{"name":"ski_resort_area","displayName":"Ski Resort Area","basicCategory":"sport_or_fitness_facility"},{"name":"snowboarding_center","displayName":"Snowboarding Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"sport_court","displayName":"Sport Court","isBasic":true,"children":[{"name":"badminton_court","displayName":"Badminton Court","basicCategory":"sport_court"},{"name":"basketball_court","displayName":"Basketball Court","basicCategory":"sport_court"},{"name":"beach_volleyball_court","displayName":"Beach Volleyball Court","basicCategory":"sport_court"},{"name":"bocce_ball_court","displayName":"Bocce Ball Court","basicCategory":"sport_court"},{"name":"handball_court","displayName":"Handball Court","basicCategory":"sport_court"},{"name":"pickleball_court","displayName":"Pickleball Court","basicCategory":"sport_court"},{"name":"racquetball_court","displayName":"Racquetball Court","basicCategory":"sport_court"},{"name":"squash_court","displayName":"Squash Court","basicCategory":"sport_court"},{"name":"street_hockey_court","displayName":"Street Hockey Court","basicCategory":"sport_court"},{"name":"tennis_court","displayName":"Tennis Court","basicCategory":"sport_court"},{"name":"volleyball_court","displayName":"Volleyball Court","basicCategory":"sport_court"}]},{"name":"sport_field","displayName":"Sport Field","isBasic":true,"children":[{"name":"airsoft_field","displayName":"Airsoft Field","basicCategory":"sport_field"},{"name":"american_football_field","displayName":"American Football Field","basicCategory":"sport_field"},{"name":"baseball_field","displayName":"Baseball Field","basicCategory":"sport_field"},{"name":"disc_golf_course","displayName":"Disc Golf Course","basicCategory":"sport_field"},{"name":"futsal_field","displayName":"Futsal Field","basicCategory":"sport_field"},{"name":"hockey_field","displayName":"Hockey Field","basicCategory":"sport_field","children":[{"name":"field_hockey_pitch","displayName":"Field Hockey Pitch","basicCategory":"sport_field"}]},{"name":"lacrosse_field","displayName":"Lacrosse Field","basicCategory":"sport_field"},{"name":"rugby_pitch","displayName":"Rugby Pitch","basicCategory":"sport_field"},{"name":"soccer_field","displayName":"Soccer Field","basicCategory":"sport_field"},{"name":"softball_field","displayName":"Softball Field","basicCategory":"sport_field"}]},{"name":"sports_complex","displayName":"Sports Complex","isBasic":true},{"name":"surfing_school","displayName":"Surfing School","basicCategory":"sport_or_fitness_facility"},{"name":"swimming_pool","displayName":"Swimming Pool","isBasic":true,"children":[{"name":"swimming_instructor","displayName":"Swimming Instructor","basicCategory":"swimming_pool"}]},{"name":"trampoline_park","displayName":"Trampoline Park","basicCategory":"sport_or_fitness_facility"},{"name":"tubing_provider","displayName":"Tubing Provider","basicCategory":"sport_or_fitness_facility"},{"name":"water_sport","displayName":"Water Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"boating_place","displayName":"Boating Place","basicCategory":"sport_or_fitness_facility"},{"name":"fishing","displayName":"Fishing","basicCategory":"sport_or_fitness_facility","children":[{"name":"fishing_area","displayName":"Fishing Area","basicCategory":"sport_or_fitness_facility"},{"name":"fishing_charter","displayName":"Fishing Charter","basicCategory":"sport_or_fitness_facility"}]},{"name":"rafting_kayaking_area","displayName":"Rafting Kayaking Area","basicCategory":"sport_or_fitness_facility"},{"name":"sailing_area","displayName":"Sailing Area","basicCategory":"sport_or_fitness_facility"},{"name":"snorkeling","displayName":"Snorkeling","basicCategory":"sport_or_fitness_facility"},{"name":"surfing","displayName":"Surfing","basicCategory":"sport_or_fitness_facility","children":[{"name":"windsurfing_center","displayName":"Windsurfing Center","basicCategory":"sport_or_fitness_facility"}]}]},{"name":"wildlife_hunting_range","displayName":"Wildlife Hunting Range","basicCategory":"sport_or_fitness_facility"}]},{"name":"sport_or_recreation_club","displayName":"Sport or Recreation Club","isBasic":true,"children":[{"name":"beach_volleyball_club","displayName":"Beach Volleyball Club","basicCategory":"sport_or_recreation_club"},{"name":"curling_club","displayName":"Curling Club","basicCategory":"sport_or_recreation_club"},{"name":"fencing_club","displayName":"Fencing Club","basicCategory":"sport_or_recreation_club"},{"name":"fishing_club","displayName":"Fishing Club","basicCategory":"sport_or_recreation_club"},{"name":"football_club","displayName":"Football Club","basicCategory":"sport_or_recreation_club"},{"name":"go_kart_club","displayName":"Go Kart Club","basicCategory":"sport_or_recreation_club"},{"name":"golf_club","displayName":"Golf Club","basicCategory":"sport_or_recreation_club","children":[{"name":"indoor_golf_center","displayName":"Indoor Golf Center","basicCategory":"sport_or_recreation_club"}]},{"name":"gymnastics_club","displayName":"Gymnastics Club","basicCategory":"sport_or_recreation_club"},{"name":"hockey_club","displayName":"Hockey Club","basicCategory":"sport_or_recreation_club","children":[{"name":"field_hockey_club","displayName":"Field Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"ice_hockey_club","displayName":"Ice Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"roller_hockey_club","displayName":"Roller Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"street_hockey_club","displayName":"Street Hockey Club","basicCategory":"sport_or_recreation_club"}]},{"name":"lacrosse_club","displayName":"Lacrosse Club","basicCategory":"sport_or_recreation_club"},{"name":"lawn_bowling_club","displayName":"Lawn Bowling Club","basicCategory":"sport_or_recreation_club"},{"name":"martial_arts_club","displayName":"Martial Arts Club","basicCategory":"sport_or_recreation_club","children":[{"name":"brazilian_jiu_jitsu_club","displayName":"Brazilian Jiu Jitsu Club","basicCategory":"sport_or_recreation_club"},{"name":"chinese_martial_arts_club","displayName":"Chinese Martial Arts Club","basicCategory":"sport_or_recreation_club"},{"name":"karate_club","displayName":"Karate Club","basicCategory":"sport_or_recreation_club"},{"name":"kickboxing_club","displayName":"Kickboxing Club","basicCategory":"sport_or_recreation_club"},{"name":"muay_thai_club","displayName":"Muay Thai Club","basicCategory":"sport_or_recreation_club"},{"name":"taekwondo_club","displayName":"Taekwondo Club","basicCategory":"sport_or_recreation_club"}]},{"name":"naturist_club","displayName":"Naturist Club","basicCategory":"sport_or_recreation_club"},{"name":"paddle_tennis_club","displayName":"Paddle Tennis Club","basicCategory":"sport_or_recreation_club"},{"name":"pickleball_club","displayName":"Pickleball Club","basicCategory":"sport_or_recreation_club"},{"name":"rowing_club","displayName":"Rowing Club","basicCategory":"sport_or_recreation_club"},{"name":"running_and_track_club","displayName":"Running and Track Club","basicCategory":"sport_or_recreation_club","children":[{"name":"running_club","displayName":"Running Club","basicCategory":"sport_or_recreation_club"},{"name":"track_and_field_club","displayName":"Track and Field Club","basicCategory":"sport_or_recreation_club"}]},{"name":"sailing_club","displayName":"Sailing Club","basicCategory":"sport_or_recreation_club"},{"name":"soccer_club","displayName":"Soccer Club","basicCategory":"sport_or_recreation_club"},{"name":"surf_lifesaving_club","displayName":"Surf Lifesaving Club","basicCategory":"sport_or_recreation_club"},{"name":"table_tennis_club","displayName":"Table Tennis Club","basicCategory":"sport_or_recreation_club"},{"name":"volleyball_club","displayName":"Volleyball Club","basicCategory":"sport_or_recreation_club"}]},{"name":"sport_team","displayName":"Sport Team","isBasic":true,"children":[{"name":"amateur_sport_team","displayName":"Amateur Sport Team","basicCategory":"sport_team"},{"name":"esports_team","displayName":"Esports Team","basicCategory":"sport_team"},{"name":"professional_sport_team","displayName":"Professional Sport Team","basicCategory":"sport_team"},{"name":"school_sport_team","displayName":"School Sport Team","basicCategory":"sport_team"}]}]},{"name":"travel_and_transportation","displayName":"Travel and Transportation","isBasic":true,"children":[{"name":"air_transport_facility_or_service","displayName":"Air Transport Facility or Service","isBasic":true,"children":[{"name":"aircraft_parts_and_supplies","displayName":"Aircraft Parts and Supplies","basicCategory":"air_transport_facility_or_service","children":[{"name":"avionics_shop","displayName":"Avionics Shop","basicCategory":"air_transport_facility_or_service"}]},{"name":"airline","displayName":"Airline","basicCategory":"air_transport_facility_or_service"},{"name":"airline_ticket_agency","displayName":"Airline Ticket Agency","basicCategory":"air_transport_facility_or_service"},{"name":"airport","displayName":"Airport","isBasic":true,"children":[{"name":"airport_terminal","displayName":"Airport Terminal","basicCategory":"airport"},{"name":"balloon_port","displayName":"Balloon Port","basicCategory":"airport"},{"name":"glider_port","displayName":"Glider Port","basicCategory":"airport"},{"name":"heliport","displayName":"Heliport","basicCategory":"airport"},{"name":"seaplane_base","displayName":"Seaplane Base","basicCategory":"airport"},{"name":"ultralight_airport","displayName":"Ultralight Airport","basicCategory":"airport"}]},{"name":"airport_shuttle","displayName":"Airport Shuttle","basicCategory":"air_transport_facility_or_service"},{"name":"private_jet_charter","displayName":"Private Jet Charter","basicCategory":"air_transport_facility_or_service"}]},{"name":"fueling_station","displayName":"Fueling Station","isBasic":true,"children":[{"name":"ev_charging_station","displayName":"EV Charging Station","isBasic":true},{"name":"gas_station","displayName":"Gas Station","isBasic":true,"children":[{"name":"fuel_dock","displayName":"Fuel Dock","basicCategory":"gas_station"},{"name":"truck_gas_station","displayName":"Truck Gas Station","basicCategory":"gas_station"}]}]},{"name":"ground_transport_facility_or_service","displayName":"Ground Transport Facility or Service","isBasic":true,"children":[{"name":"bikes_and_bike_service","displayName":"Bikes and Bike Service","basicCategory":"ground_transport_facility_or_service","children":[{"name":"bike_sharing_location","displayName":"Bike Sharing Location","basicCategory":"ground_transport_facility_or_service"}]},{"name":"public_transit_facility_or_service","displayName":"Public Transit Facility or Service","isBasic":true,"children":[{"name":"bus_station","displayName":"Bus Station","basicCategory":"public_transit_facility_or_service"},{"name":"bus_ticket_agency","displayName":"Bus Ticket Agency","basicCategory":"public_transit_facility_or_service"},{"name":"cable_car_service","displayName":"Cable Car Service","basicCategory":"public_transit_facility_or_service"},{"name":"coach_bus","displayName":"Coach Bus","basicCategory":"public_transit_facility_or_service"},{"name":"light_rail_and_subway_station","displayName":"Light Rail and Subway Station","basicCategory":"public_transit_facility_or_service"},{"name":"metro_station","displayName":"Metro Station","basicCategory":"public_transit_facility_or_service"}]},{"name":"rail_facility_or_service","displayName":"Rail Facility or Service","isBasic":true,"children":[{"name":"railway_ticket_agent","displayName":"Railway Ticket Agent","basicCategory":"rail_facility_or_service"},{"name":"train","displayName":"Train","basicCategory":"rail_facility_or_service"},{"name":"train_station","displayName":"Train Station","isBasic":true}]},{"name":"road_structures_and_service","displayName":"Road Structures and Service","basicCategory":"ground_transport_facility_or_service","children":[{"name":"rest_stop","displayName":"Rest Stop","isBasic":true},{"name":"toll_station","displayName":"Toll Station","isBasic":true},{"name":"truck_stop","displayName":"Truck Stop","basicCategory":"ground_transport_facility_or_service"}]},{"name":"taxi_or_ride_share_service","displayName":"Taxi or Ride Share Service","isBasic":true,"children":[{"name":"car_sharing","displayName":"Car Sharing","basicCategory":"taxi_or_ride_share_service"},{"name":"limo_service","displayName":"Limo Service","basicCategory":"taxi_or_ride_share_service"},{"name":"pedicab_service","displayName":"Pedicab Service","basicCategory":"taxi_or_ride_share_service"},{"name":"ride_share_service","displayName":"Ride Share Service","basicCategory":"taxi_or_ride_share_service"},{"name":"taxi_service","displayName":"Taxi Service","basicCategory":"taxi_or_ride_share_service","children":[{"name":"taxi_stand","displayName":"Taxi Stand","basicCategory":"taxi_or_ride_share_service"}]},{"name":"town_car_service","displayName":"Town Car Service","basicCategory":"taxi_or_ride_share_service"}]}]},{"name":"parking","displayName":"Parking","isBasic":true,"children":[{"name":"bike_parking","displayName":"Bike Parking","basicCategory":"parking"},{"name":"motorcycle_parking","displayName":"Motorcycle Parking","basicCategory":"parking"},{"name":"park_and_ride","displayName":"Park and Ride","isBasic":true},{"name":"parking_garage","displayName":"Parking Garage","isBasic":true},{"name":"parking_lot","displayName":"Parking Lot","isBasic":true}]},{"name":"transport_interchange","displayName":"Transport Interchange","basicCategory":"travel_and_transportation"},{"name":"travel_service","displayName":"Travel Service","isBasic":true,"children":[{"name":"agritourism","displayName":"Agritourism","basicCategory":"travel_service"},{"name":"luggage_storage","displayName":"Luggage Storage","basicCategory":"travel_service"},{"name":"passport_and_visa_service","displayName":"Passport and Visa Service","basicCategory":"travel_service","children":[{"name":"visa_agent","displayName":"Visa Agent","basicCategory":"travel_service"}]},{"name":"tour_operator","displayName":"Tour Operator","basicCategory":"travel_service","children":[{"name":"aerial_tour","displayName":"Aerial Tour","basicCategory":"travel_service"},{"name":"architectural_tour","displayName":"Architectural Tour","basicCategory":"travel_service"},{"name":"art_tour","displayName":"Art Tour","basicCategory":"travel_service"},{"name":"beer_tour","displayName":"Beer Tour","basicCategory":"travel_service"},{"name":"bike_tour","displayName":"Bike Tour","basicCategory":"travel_service"},{"name":"boat_tour","displayName":"Boat Tour","basicCategory":"travel_service"},{"name":"bus_tour","displayName":"Bus Tour","basicCategory":"travel_service"},{"name":"cannabis_tour","displayName":"Cannabis Tour","basicCategory":"travel_service"},{"name":"food_tour","displayName":"Food Tour","basicCategory":"travel_service"},{"name":"historical_tour","displayName":"Historical Tour","basicCategory":"travel_service"},{"name":"hot_air_balloons_tour","displayName":"Hot Air Balloons Tour","basicCategory":"travel_service"},{"name":"scooter_tour","displayName":"Scooter Tour","basicCategory":"travel_service"},{"name":"sightseeing_tour_agency","displayName":"Sightseeing Tour Agency","basicCategory":"travel_service"},{"name":"walking_tour","displayName":"Walking Tour","basicCategory":"travel_service"},{"name":"whale_watching_tour","displayName":"Whale Watching Tour","basicCategory":"travel_service"},{"name":"wine_tour","displayName":"Wine Tour","basicCategory":"travel_service"}]},{"name":"travel_agent","displayName":"Travel Agent","basicCategory":"travel_service"},{"name":"vacation_rental_agent","displayName":"Vacation Rental Agent","basicCategory":"travel_service"},{"name":"visitor_center","displayName":"Visitor Center","basicCategory":"travel_service"}]},{"name":"vehicle_service","displayName":"Vehicle Service","isBasic":true,"children":[{"name":"aircraft_service","displayName":"Aircraft Service","basicCategory":"vehicle_service"},{"name":"automotive_service","displayName":"Automotive Service","isBasic":true,"children":[{"name":"auto_body_shop","displayName":"Auto Body Shop","basicCategory":"automotive_service"},{"name":"auto_customization","displayName":"Auto Customization","basicCategory":"automotive_service"},{"name":"auto_detailing","displayName":"Auto Detailing","basicCategory":"automotive_service"},{"name":"auto_glass_service","displayName":"Auto Glass Service","basicCategory":"automotive_service","children":[{"name":"car_window_tinting","displayName":"Car Window Tinting","basicCategory":"automotive_service"},{"name":"windshield_installation_and_repair","displayName":"Windshield Installation and Repair","basicCategory":"automotive_service"}]},{"name":"auto_restoration_service","displayName":"Auto Restoration Service","basicCategory":"automotive_service"},{"name":"auto_security","displayName":"Auto Security","basicCategory":"automotive_service"},{"name":"auto_upholstery","displayName":"Auto Upholstery","basicCategory":"automotive_service"},{"name":"automobile_registration_service","displayName":"Automobile Registration Service","basicCategory":"automotive_service"},{"name":"automotive_consultant","displayName":"Automotive Consultant","basicCategory":"automotive_service"},{"name":"automotive_repair","displayName":"Automotive Repair","basicCategory":"automotive_service","children":[{"name":"auto_electrical_repair","displayName":"Auto Electrical Repair","basicCategory":"automotive_service"},{"name":"brake_service_and_repair","displayName":"Brake Service and Repair","basicCategory":"automotive_service"},{"name":"diy_auto_shop","displayName":"DIY Auto Shop","basicCategory":"automotive_service"},{"name":"engine_repair_service","displayName":"Engine Repair Service","basicCategory":"automotive_service"},{"name":"exhaust_and_muffler_repair","displayName":"Exhaust and Muffler Repair","basicCategory":"automotive_service"},{"name":"hybrid_car_repair","displayName":"Hybrid Car Repair","basicCategory":"automotive_service"},{"name":"motorsport_vehicle_repair","displayName":"Motorsport Vehicle Repair","basicCategory":"automotive_service"},{"name":"tire_dealer_and_repair","displayName":"Tire Dealer and Repair","basicCategory":"automotive_service"},{"name":"trailer_repair","displayName":"Trailer Repair","basicCategory":"automotive_service"},{"name":"transmission_repair","displayName":"Transmission Repair","basicCategory":"automotive_service"},{"name":"wheel_and_rim_repair","displayName":"Wheel and Rim Repair","basicCategory":"automotive_service"}]},{"name":"automotive_wheel_polishing_service","displayName":"Automotive Wheel Polishing Service","basicCategory":"automotive_service"},{"name":"car_buyer","displayName":"Car Buyer","basicCategory":"automotive_service"},{"name":"car_inspection","displayName":"Car Inspection","basicCategory":"automotive_service"},{"name":"car_stereo_installation","displayName":"Car Stereo Installation","basicCategory":"automotive_service"},{"name":"car_wash","displayName":"Car Wash","basicCategory":"automotive_service"},{"name":"emergency_roadside_service","displayName":"Emergency Roadside Service","basicCategory":"automotive_service"},{"name":"emissions_inspection","displayName":"Emissions Inspection","basicCategory":"automotive_service"},{"name":"oil_change_station","displayName":"Oil Change Station","basicCategory":"automotive_service"},{"name":"tire_shop","displayName":"Tire Shop","basicCategory":"automotive_service"},{"name":"towing_service","displayName":"Towing Service","basicCategory":"automotive_service"},{"name":"truck_repair","displayName":"Truck Repair","basicCategory":"automotive_service"},{"name":"vehicle_wrap","displayName":"Vehicle Wrap","basicCategory":"automotive_service"}]},{"name":"boat_service","displayName":"Boat Service","basicCategory":"vehicle_service","children":[{"name":"mooring_service","displayName":"Mooring Service","basicCategory":"vehicle_service"}]},{"name":"delegated_driver_service","displayName":"Delegated Driver Service","basicCategory":"vehicle_service"},{"name":"motorcycle_service","displayName":"Motorcycle Service","basicCategory":"vehicle_service","children":[{"name":"motorcycle_repair","displayName":"Motorcycle Repair","basicCategory":"vehicle_service"}]},{"name":"recreation_vehicle_service","displayName":"Recreation Vehicle Service","basicCategory":"vehicle_service","children":[{"name":"recreation_vehicle_repair","displayName":"Recreation Vehicle Repair","basicCategory":"vehicle_service"}]},{"name":"roadside_assistance","displayName":"Roadside Assistance","basicCategory":"vehicle_service","children":[{"name":"mobile_dent_repair","displayName":"Mobile Dent Repair","basicCategory":"vehicle_service"}]}]},{"name":"water_transport_facility_or_service","displayName":"Water Transport Facility or Service","isBasic":true,"children":[{"name":"ferry_service","displayName":"Ferry Service","isBasic":true},{"name":"water_taxi_service","displayName":"Water Taxi Service","isBasic":true}]}]}]} diff --git a/vitest.config.js b/vitest.config.js index 4ece0d151..1aaa22543 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -6,10 +6,13 @@ export default defineConfig({ alias: { // Mirror the @site alias that Docusaurus/webpack provides at build time '@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. From 1b3576cbc8caa6ef6740b7a5fe29c65250a03135 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:00:11 -0400 Subject: [PATCH 02/19] fix central ring within sunburst Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 27 +++++++++++++++++ src/components/taxonomyViz.jsx | 29 ++++++++++++++++--- 2 files changed, 52 insertions(+), 4 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 740f438d9..39425a630 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -4,6 +4,7 @@ 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 } from '../taxonomyViz'; // A two-release fixture: one legacy CSV release and one canonical JSON release, // which is the combination the browser has to support during the transition. @@ -295,6 +296,32 @@ describe('TaxonomyBrowser', () => { expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBe(before); }); + // 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); + }); + }); + it('keeps the tree view as the default', async () => { render(); await screen.findByText('Food and Drink'); diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index b387a716c..4c58bd837 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -73,6 +73,28 @@ function buildColorScale(base, depthOffset) { }; } +/** + * 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, + }), + }; +} + /** Wrap the browser's node shape in a d3 hierarchy, counting leaves for size. */ function useLayout(treeChildren, sized) { return useMemo(() => { @@ -128,8 +150,7 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, const spanStart = base.x0; const span = base.x1 - base.x0 || 2 * Math.PI; const depthOffset = base.depth; - const ringCount = Math.max(1, laidOut.height - depthOffset); - const ringWidth = radius / ringCount; + const { holeRadius, ringFor } = sunburstGeometry(radius, laidOut.height - depthOffset); const colorOf = useMemo(() => buildColorScale(base, depthOffset), [base, depthOffset]); const arcGen = d3arc() @@ -146,7 +167,7 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, 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, r0: (rel - 1) * ringWidth, r1: rel * ringWidth }; + return { d, a0, a1, ...ringFor(rel) }; }) .filter(s => s.a1 - s.a0 > 0.0009); @@ -187,7 +208,7 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, ); })} {focused && ( - + Back to the previous view )} From 7626841b2d4afece592017b23c1ff9d0448035c3 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:10:41 -0400 Subject: [PATCH 03/19] fix pan and zoom Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 110 ++++++++++- src/components/taxonomyViz.jsx | 184 +++++++++++++++++- src/css/taxonomyBrowser.css | 47 +++++ 3 files changed, 328 insertions(+), 13 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 39425a630..07fab9012 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -4,7 +4,7 @@ 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 } from '../taxonomyViz'; +import { sunburstGeometry, zoomAt } from '../taxonomyViz'; // A two-release fixture: one legacy CSV release and one canonical JSON release, // which is the combination the browser has to support during the transition. @@ -175,7 +175,7 @@ describe('TaxonomyBrowser', () => { 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: 'Reset zoom' })).toBeInTheDocument(); + expect(screen.getByRole('button', { name: 'Top level' })).toBeInTheDocument(); }); it('dims non-basic categories when the basic filter is on', async () => { @@ -263,13 +263,13 @@ describe('TaxonomyBrowser', () => { expect(centreLabel()).toBe('Overture Places'); }); - it('Reset zoom returns to the root from any depth', async () => { + 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: 'Reset zoom' })); + fireEvent.click(screen.getByRole('button', { name: 'Top level' })); expect(centreLabel()).toBe('Overture Places'); - expect(screen.getByRole('button', { name: 'Reset zoom' })).toBeDisabled(); + expect(screen.getByRole('button', { name: 'Top level' })).toBeDisabled(); }); it('re-splits colour across the focused node\'s children when zoomed', async () => { @@ -322,6 +322,106 @@ describe('TaxonomyBrowser', () => { }); }); + 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('offers the same controls in the icicle view', async () => { + render(); + await screen.findByText('Food and Drink'); + fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); + expect(document.querySelectorAll('.taxonomy-viz-zoom button')).toHaveLength(3); + fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })); + expect(parseTransform().k).toBeGreaterThan(1); + }); + }); + it('keeps the tree view as the default', async () => { render(); await screen.findByText('Food and Drink'); diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index 4c58bd837..14d44b6b2 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -1,4 +1,4 @@ -import { useState, useMemo, useCallback } from 'react'; +import { useState, useMemo, useCallback, useRef, useEffect } from 'react'; import { hierarchy, partition } from 'd3-hierarchy'; import { arc as d3arc } from 'd3-shape'; @@ -73,6 +73,133 @@ function buildColorScale(base, depthOffset) { }; } +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 }; + +/** + * 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. * @@ -128,6 +255,25 @@ function Tooltip({ node, x, y }) { ); } +function ZoomControls({ zoomBy, resetView, view }) { + const atRest = Math.abs(view.k - 1) < 0.001 && view.x === 0 && view.y === 0; + return ( +
+ + + +
+ ); +} + function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, matches, showBasicOnly }) { const radius = size / 2; const laidOut = useMemo(() => { @@ -138,8 +284,13 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, const [hover, setHover] = useState(null); const [pointer, setPointer] = useState({ x: 0, y: 0 }); + const { view, stageProps, zoomBy, resetView, isPanning } = useViewTransform(); - // Zooming re-projects angles relative to the focused branch rather than + // 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), @@ -175,8 +326,14 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, const beneath = base.descendants().length - 1; return ( -
setPointer({ x: e.clientX, y: e.clientY })}> +
setPointer({ x: e.clientX, y: e.clientY })} + {...stageProps} + > + + {segments.map(seg => { const { d } = seg; @@ -217,6 +374,7 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, {`${beneath.toLocaleString()} categories`} +
@@ -232,6 +390,9 @@ function Icicle({ root, width, height, focus, onZoomIn, onSelect, selectedCode, const [hover, setHover] = useState(null); const [pointer, setPointer] = useState({ x: 0, y: 0 }); + const { view, stageProps, zoomBy, resetView, isPanning } = useViewTransform(); + + useEffect(() => resetView(), [focus, resetView]); const focused = useMemo( () => (focus ? (laidOut.descendants().find(d => d.data.code === focus) ?? null) : null), @@ -265,8 +426,14 @@ function Icicle({ root, width, height, focus, onZoomIn, onSelect, selectedCode, .filter(r => r.h > 1.2); return ( -
setPointer({ x: e.clientX, y: e.clientY })}> +
setPointer({ x: e.clientX, y: e.clientY })} + {...stageProps} + > + + {rows.map(({ d, x, y, w, h }) => { const isMatch = !matches || matches.has(d.data.code); const passesBasic = !showBasicOnly || d.data.isBasic; @@ -302,6 +469,7 @@ function Icicle({ root, width, height, focus, onZoomIn, onSelect, selectedCode, ); })} +
@@ -356,7 +524,7 @@ export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode onClick={resetZoom} disabled={focusStack.length === 0} > - Reset zoom + Top level
); diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 0790ab5f9..d5d0d4cbf 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -804,3 +804,50 @@ border-radius: 3px; font-size: 0.9em; } + +/* 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; +} + +.taxonomy-viz-stage--panning { + cursor: grabbing; +} + +.taxonomy-viz-zoom { + position: absolute; + top: 6px; + right: 6px; + z-index: 5; + display: flex; + flex-direction: column; + gap: 3px; +} + +.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; +} + +.taxonomy-viz-zoom button:hover:not(:disabled) { + border-color: var(--ifm-color-primary); + color: var(--ifm-color-primary); +} + +.taxonomy-viz-zoom button:disabled { + color: var(--ifm-color-emphasis-400); + cursor: default; +} From 9ef1e4519bbd1c06aea73896073b7ad4126b4495 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:21:19 -0400 Subject: [PATCH 04/19] increase window size Signed-off-by: Warren Ehrenfried --- docs/guides/places/taxonomy-browser.mdx | 1 + src/__mocks__/docusaurus-useBaseUrl.js | 7 +- .../__tests__/taxonomyBrowser.test.jsx | 110 ++++++++++++++++-- src/components/taxonomyBrowser.jsx | 52 ++++++++- src/components/taxonomyViz.jsx | 60 ++++++++-- src/css/taxonomyBrowser.css | 48 +++++++- 6 files changed, 250 insertions(+), 28 deletions(-) diff --git a/docs/guides/places/taxonomy-browser.mdx b/docs/guides/places/taxonomy-browser.mdx index 4423de86e..7270b5429 100644 --- a/docs/guides/places/taxonomy-browser.mdx +++ b/docs/guides/places/taxonomy-browser.mdx @@ -1,6 +1,7 @@ --- title: Taxonomy Browser description: Browse and explore the Overture Places taxonomy hierarchy +hide_table_of_contents: true --- import TaxonomyBrowser from '@site/src/components/taxonomyBrowser'; diff --git a/src/__mocks__/docusaurus-useBaseUrl.js b/src/__mocks__/docusaurus-useBaseUrl.js index 39ffa9e72..0d57cc914 100644 --- a/src/__mocks__/docusaurus-useBaseUrl.js +++ b/src/__mocks__/docusaurus-useBaseUrl.js @@ -5,8 +5,13 @@ * 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: url => url }; + return { withBaseUrl }; } export default function useBaseUrl(url) { diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 07fab9012..7197e0065 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -79,12 +79,14 @@ describe('TaxonomyBrowser', () => { 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-16.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')); @@ -98,6 +100,7 @@ describe('TaxonomyBrowser', () => { 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')); @@ -131,10 +134,32 @@ describe('TaxonomyBrowser', () => { it('still renders legacy CSV releases', async () => { render(); fireEvent.change(screen.getByRole('combobox'), { target: { value: 'december' } }); + + // A CSV-sourced release drives the visualization too, not just the tree. + expect(await screen.findByText('Overture Places')).toBeInTheDocument(); + expect(document.querySelectorAll('.taxonomy-viz-stage path').length).toBeGreaterThan(0); + + fireEvent.click(screen.getByRole('button', { name: 'Tree' })); expect(await screen.findByText('Food and Drink')).toBeInTheDocument(); expect(screen.queryByRole('link', { name: 'Taxonomy (JSON)' })).not.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: 'Icicle' })); + 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(); @@ -145,10 +170,11 @@ describe('TaxonomyBrowser', () => { }); 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.findByText('Food and Drink'); - fireEvent.click(screen.getByRole('button', { name: 'Sunburst' })); + await screen.findByText('Overture Places'); }; it('renders an arc for every category', async () => { @@ -203,7 +229,7 @@ describe('TaxonomyBrowser', () => { it('renders the icicle view with labels', async () => { render(); - await screen.findByText('Food and Drink'); + await screen.findByText('Overture Places'); fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBeGreaterThan(0); expect(document.querySelectorAll('.taxonomy-viz-cell-label').length).toBeGreaterThan(0); @@ -230,8 +256,7 @@ describe('TaxonomyBrowser', () => { const showDeepSunburst = async () => { global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); render(); - await screen.findByText('Food and Drink'); - fireEvent.click(screen.getByRole('button', { name: 'Sunburst' })); + await screen.findByText('Overture Places'); }; const hueSet = () => @@ -286,7 +311,7 @@ describe('TaxonomyBrowser', () => { it('steps back in the icicle view too', async () => { global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); render(); - await screen.findByText('Food and Drink'); + await screen.findByText('Overture Places'); fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); const before = document.querySelectorAll('.taxonomy-viz-stage rect').length; @@ -322,6 +347,66 @@ describe('TaxonomyBrowser', () => { }); }); + 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('gives cells more room as the canvas grows', async () => { + // With real data this is what surfaces deeper labels; on a small + // fixture the measurable effect is the cell geometry itself. + render(); + await screen.findByText('Overture Places'); + fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); + + sizeCanvas(400, 300); + const small = document.querySelector('.taxonomy-viz-stage rect'); + const smallBox = [small.getAttribute('width'), small.getAttribute('height')].map(Number); + + sizeCanvas(1600, 1000); + const large = document.querySelector('.taxonomy-viz-stage rect'); + const largeBox = [large.getAttribute('width'), large.getAttribute('height')].map(Number); + + expect(largeBox[0]).toBeGreaterThan(smallBox[0]); + expect(largeBox[1]).toBeGreaterThan(smallBox[1]); + }); + + 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('expands to full screen and leaves on Escape', async () => { + await showSunburst(); + const browser = document.querySelector('.taxonomy-browser'); + expect(browser.className).not.toContain('fullscreen'); + + fireEvent.click(screen.getByRole('button', { name: /Expand/ })); + expect(document.querySelector('.taxonomy-browser').className).toContain('fullscreen'); + + fireEvent.keyDown(window, { key: 'Escape' }); + expect(document.querySelector('.taxonomy-browser').className).not.toContain('fullscreen'); + }); + }); + describe('viewport zoom and pan', () => { const transformOf = () => document.querySelector('.taxonomy-viz-stage svg > g')?.getAttribute('transform'); @@ -414,7 +499,7 @@ describe('TaxonomyBrowser', () => { it('offers the same controls in the icicle view', async () => { render(); - await screen.findByText('Food and Drink'); + await screen.findByText('Overture Places'); fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); expect(document.querySelectorAll('.taxonomy-viz-zoom button')).toHaveLength(3); fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })); @@ -422,16 +507,21 @@ describe('TaxonomyBrowser', () => { }); }); - it('keeps the tree view as the default', async () => { + it('opens on the sunburst, with the tree one click away', async () => { render(); - await screen.findByText('Food and Drink'); - expect(screen.getByRole('button', { name: 'Tree' })).toHaveAttribute('aria-pressed', 'true'); + await screen.findByText('Overture Places'); + 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' }, diff --git a/src/components/taxonomyBrowser.jsx b/src/components/taxonomyBrowser.jsx index 0f27c3e45..90bdf9f65 100644 --- a/src/components/taxonomyBrowser.jsx +++ b/src/components/taxonomyBrowser.jsx @@ -646,7 +646,10 @@ export default function TaxonomyBrowser({ releases: allReleases }) { const [selected, setSelected] = useState(null); const [jsonReleases, setJsonReleases] = useState({}); const [loadErrors, setLoadErrors] = useState({}); - const [view, setView] = useState('tree'); + // 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 [fullscreen, setFullscreen] = useState(false); const { withBaseUrl } = useBaseUrlUtils(); @@ -654,12 +657,19 @@ export default function TaxonomyBrowser({ releases: allReleases }) { // 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(() => { - let cancelled = false; for (const r of releases) { if (!r.dataUrl || requested.current.has(r.id)) continue; requested.current.add(r.id); @@ -669,13 +679,16 @@ export default function TaxonomyBrowser({ releases: allReleases }) { return res.json(); }) .then(data => { - if (!cancelled) setJsonReleases(prev => ({ ...prev, [r.id]: buildJsonRelease(data) })); + if (mounted.current) setJsonReleases(prev => ({ ...prev, [r.id]: buildJsonRelease(data) })); }) .catch(err => { - if (!cancelled) setLoadErrors(prev => ({ ...prev, [r.id]: err.message })); + if (mounted.current) setLoadErrors(prev => ({ ...prev, [r.id]: err.message })); }); } - return () => { cancelled = true; }; + // 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]); // Parse all data CSVs. Releases sourced from JSON have no CSV to parse. @@ -860,12 +873,30 @@ export default function TaxonomyBrowser({ releases: allReleases }) { return hits; }, [tree, searchTerm]); + // Escape is the expected way out of anything that covers the page. + useEffect(() => { + if (!fullscreen) return undefined; + const onKey = e => { + if (e.key === 'Escape') setFullscreen(false); + }; + window.addEventListener('keydown', onKey); + return () => window.removeEventListener('keydown', onKey); + }, [fullscreen]); + const activeRelease = releases.find(r => r.id === activeTab); const loadError = loadErrors[activeTab] ?? null; const isLoading = Boolean(activeRelease?.dataUrl) && !jsonReleases[activeTab] && !loadError; return ( -
+
Choose a release: @@ -974,6 +1005,15 @@ export default function TaxonomyBrowser({ releases: allReleases }) { {v.label} ))} +
{ + 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. * @@ -274,7 +313,9 @@ function ZoomControls({ zoomBy, resetView, view }) { ); } -function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, matches, showBasicOnly }) { +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(); @@ -332,9 +373,9 @@ function Sunburst({ root, size, focus, onZoomIn, onBack, onSelect, selectedCode, {...stageProps} > - + - + {segments.map(seg => { const { d } = seg; const isMatch = !matches || matches.has(d.data.code); @@ -482,6 +523,7 @@ export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode // you were never looking at. const [focusStack, setFocusStack] = useState([]); const [showBasicOnly, setShowBasicOnly] = useState(false); + const [canvasRef, canvas] = useElementSize(); const root = useLayout(treeChildren, sized); const focus = focusStack.length > 0 ? focusStack[focusStack.length - 1] : null; @@ -535,11 +577,13 @@ export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode Highlight basic categories only
- {view === 'sunburst' ? ( - - ) : ( - - )} +
+ {view === 'sunburst' ? ( + + ) : ( + + )} +

{view === 'sunburst' ? 'Click a segment to drill into it; click the centre or Back to step out one level.' diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index d5d0d4cbf..813255981 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -2,11 +2,34 @@ 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. Going wider than the column is left to Expand, which + takes the whole viewport — a viewport-width rule here risks a horizontal + scrollbar on layouts I can't check. */ +.taxonomy-browser--viz { + width: calc(100% + 2 * var(--ifm-spacing-horizontal, 1rem)); + margin-left: calc(-1 * var(--ifm-spacing-horizontal, 1rem)); +} + +.taxonomy-browser--fullscreen { + position: fixed; + inset: 0; + z-index: 300; + width: 100%; + height: 100%; + max-height: none; + margin: 0; + border-radius: 0; +} + .taxonomy-browser-left { flex: 1; border-right: 1px solid var(--ifm-color-emphasis-200); @@ -644,6 +667,11 @@ padding: 8px 16px 0; } +.taxonomy-view-button--expand { + flex: 0 0 auto; + margin-left: 4px; +} + .taxonomy-view-button { flex: 1; padding: 4px 10px; @@ -668,15 +696,27 @@ .taxonomy-browser-viz { flex: 1; - overflow: auto; + min-height: 0; + overflow: hidden; padding: 8px 12px 12px; + display: flex; + flex-direction: column; } .taxonomy-viz { display: flex; flex-direction: column; - align-items: center; + align-items: stretch; gap: 8px; + height: 100%; + min-height: 0; +} + +.taxonomy-viz-canvas { + flex: 1; + min-height: 0; + display: flex; + justify-content: center; } .taxonomy-viz-controls { @@ -717,6 +757,8 @@ .taxonomy-viz-stage { position: relative; + flex: 1; + min-height: 0; } .taxonomy-viz-arc { From 937b8b3f23ba0724942494e2c1b8a976f99fdcd8 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:36:02 -0400 Subject: [PATCH 05/19] improved view Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 63 +++------- src/components/taxonomyBrowser.jsx | 80 ++++++------ src/components/taxonomyViz.jsx | 114 +----------------- src/css/taxonomyBrowser.css | 69 +++++++---- 4 files changed, 108 insertions(+), 218 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 7197e0065..28fffd915 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -153,7 +153,8 @@ describe('TaxonomyBrowser', () => { () => new Promise(resolve => { resolveFetch = () => resolve({ ok: true, json: () => Promise.resolve(CANONICAL_JSON) }); }) ); render(); - fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); + 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(); @@ -227,13 +228,6 @@ describe('TaxonomyBrowser', () => { expect(lit).toHaveLength(3); }); - it('renders the icicle view with labels', async () => { - render(); - await screen.findByText('Overture Places'); - fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); - expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBeGreaterThan(0); - expect(document.querySelectorAll('.taxonomy-viz-cell-label').length).toBeGreaterThan(0); - }); // A wider fixture: two branches under food_and_drink, so zooming has more // than one child to assign colour to. @@ -308,18 +302,6 @@ describe('TaxonomyBrowser', () => { expect(hueSet().size).toBe(2); }); - it('steps back in the icicle view too', async () => { - global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); - render(); - await screen.findByText('Overture Places'); - fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); - - const before = document.querySelectorAll('.taxonomy-viz-stage rect').length; - fireEvent.click(document.querySelector('.taxonomy-viz-stage rect')); - expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBeLessThan(before); - fireEvent.click(screen.getByRole('button', { name: '← Back' })); - expect(document.querySelectorAll('.taxonomy-viz-stage rect').length).toBe(before); - }); // 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 @@ -367,24 +349,6 @@ describe('TaxonomyBrowser', () => { ); }); - it('gives cells more room as the canvas grows', async () => { - // With real data this is what surfaces deeper labels; on a small - // fixture the measurable effect is the cell geometry itself. - render(); - await screen.findByText('Overture Places'); - fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); - - sizeCanvas(400, 300); - const small = document.querySelector('.taxonomy-viz-stage rect'); - const smallBox = [small.getAttribute('width'), small.getAttribute('height')].map(Number); - - sizeCanvas(1600, 1000); - const large = document.querySelector('.taxonomy-viz-stage rect'); - const largeBox = [large.getAttribute('width'), large.getAttribute('height')].map(Number); - - expect(largeBox[0]).toBeGreaterThan(smallBox[0]); - expect(largeBox[1]).toBeGreaterThan(smallBox[1]); - }); it('renders before it has been measured', async () => { // ResizeObserver has not fired yet on first paint; a zero-size canvas @@ -394,6 +358,21 @@ describe('TaxonomyBrowser', () => { 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']); + }); + + it('locks page scrolling while expanded and restores it after', async () => { + await showSunburst(); + expect(document.body.style.overflow).toBe(''); + fireEvent.click(screen.getByRole('button', { name: /Expand/ })); + expect(document.body.style.overflow).toBe('hidden'); + fireEvent.keyDown(window, { key: 'Escape' }); + expect(document.body.style.overflow).toBe(''); + }); + it('expands to full screen and leaves on Escape', async () => { await showSunburst(); const browser = document.querySelector('.taxonomy-browser'); @@ -497,14 +476,6 @@ describe('TaxonomyBrowser', () => { expect(parseTransform().k).toBeCloseTo(1, 6); }); - it('offers the same controls in the icicle view', async () => { - render(); - await screen.findByText('Overture Places'); - fireEvent.click(screen.getByRole('button', { name: 'Icicle' })); - expect(document.querySelectorAll('.taxonomy-viz-zoom button')).toHaveLength(3); - fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })); - expect(parseTransform().k).toBeGreaterThan(1); - }); }); it('opens on the sunburst, with the tree one click away', async () => { diff --git a/src/components/taxonomyBrowser.jsx b/src/components/taxonomyBrowser.jsx index 90bdf9f65..37ec37f40 100644 --- a/src/components/taxonomyBrowser.jsx +++ b/src/components/taxonomyBrowser.jsx @@ -873,14 +873,20 @@ export default function TaxonomyBrowser({ releases: allReleases }) { return hits; }, [tree, searchTerm]); - // Escape is the expected way out of anything that covers the page. + // Escape is the expected way out of anything that covers the page, and the + // page behind must not scroll while it is covered. useEffect(() => { if (!fullscreen) return undefined; const onKey = e => { if (e.key === 'Escape') setFullscreen(false); }; window.addEventListener('keydown', onKey); - return () => window.removeEventListener('keydown', onKey); + const previousOverflow = document.body.style.overflow; + document.body.style.overflow = 'hidden'; + return () => { + window.removeEventListener('keydown', onKey); + document.body.style.overflow = previousOverflow; + }; }, [fullscreen]); const activeRelease = releases.find(r => r.id === activeTab); @@ -899,9 +905,9 @@ export default function TaxonomyBrowser({ releases: allReleases }) { >

- Choose a release: +
+ {[ + { id: 'sunburst', label: 'Sunburst' }, + { id: 'tree', label: 'Tree' }, + ].map(v => ( + + ))} +
+
{(() => { const cfg = releases.find(r => r.id === activeTab); @@ -933,11 +964,10 @@ export default function TaxonomyBrowser({ releases: allReleases }) {
))} -
- {stats && stats.uniqueCategories > 0 && ( -
- {/* Place counts are published per release and may not be ready - when the taxonomy is; the structural counts always are. */} + {/* 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
@@ -965,11 +995,12 @@ export default function TaxonomyBrowser({ releases: allReleases }) {
-
- )} + + )} +
{cfg?.downloads?.length > 0 && (
-
+
Download
{cfg.downloads.map(d => ( @@ -989,32 +1020,6 @@ export default function TaxonomyBrowser({ releases: allReleases }) {
); })()} -
- {[ - { id: 'tree', label: 'Tree' }, - { id: 'sunburst', label: 'Sunburst' }, - { id: 'icicle', label: 'Icicle' }, - ].map(v => ( - - ))} - -
{ - const copy = root.copy(); - partition().size([height, width])(copy); - return copy; - }, [root, width, height]); - - const [hover, setHover] = useState(null); - const [pointer, setPointer] = useState({ x: 0, y: 0 }); - const { view, stageProps, zoomBy, resetView, isPanning } = useViewTransform(); - - useEffect(() => resetView(), [focus, resetView]); - - const focused = useMemo( - () => (focus ? (laidOut.descendants().find(d => d.data.code === focus) ?? null) : null), - [laidOut, focus] - ); - - // At full extent a leaf is a fraction of a pixel tall, so the whole taxonomy - // cannot be drawn at once. Re-projecting onto the focused branch is what makes - // the lower levels reachable, exactly as zooming does in the sunburst. - const base = focused ?? laidOut; - const spanStart = base.x0; - const span = base.x1 - base.x0 || height; - const depthOffset = base.depth; - const colCount = Math.max(1, laidOut.height - depthOffset); - const colWidth = width / colCount; - const colorOf = useMemo(() => buildColorScale(base, depthOffset), [base, depthOffset]); - - const rows = base - .descendants() - .filter(d => d.depth > depthOffset) - .map(d => { - const rel = d.depth - depthOffset; - return { - d, - y: ((d.x0 - spanStart) / span) * height, - h: ((d.x1 - d.x0) / span) * height, - x: (rel - 1) * colWidth, - w: colWidth, - }; - }) - .filter(r => r.h > 1.2); - - return ( -
setPointer({ x: e.clientX, y: e.clientY })} - {...stageProps} - > - - - - {rows.map(({ d, x, y, w, h }) => { - const isMatch = !matches || matches.has(d.data.code); - const passesBasic = !showBasicOnly || d.data.isBasic; - const dimmed = !isMatch || !passesBasic; - const isSelected = d.data.code === selectedCode; - return ( - - setHover(d)} - onMouseLeave={() => setHover(null)} - onClick={() => { - onSelect(d.data.code); - if (d.children) onZoomIn(d.data.code); - }} - /> - {h > 11 && w > 46 && ( - - {d.data.displayName} - - )} - - ); - })} - - - -
- ); -} - -export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode, matches, sized }) { +export default function TaxonomyViz({ treeChildren, onSelect, selectedCode, matches, sized }) { // 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. @@ -578,17 +482,11 @@ export default function TaxonomyViz({ treeChildren, view, onSelect, selectedCode
- {view === 'sunburst' ? ( - - ) : ( - - )} +

- {view === 'sunburst' - ? 'Click a segment to drill into it; click the centre or Back to step out one level.' - : 'Click a cell to drill into that branch; Back steps out one level.'} - {' '}Scroll to zoom and drag to pan. Outlined segments are basic categories. + Click a segment to drill in; the centre or Back steps out. Scroll to zoom, + drag to pan. Outlined segments are basic categories.

); diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 813255981..d091f8544 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -51,8 +51,13 @@ .taxonomy-browser-header { display: flex; align-items: center; - padding: 12px 16px 8px; - gap: 10px; + padding: 8px 12px 6px; + gap: 8px; +} + +.taxonomy-browser-header .taxonomy-browser-select { + flex: 1 1 auto; + min-width: 0; } .taxonomy-browser-header-label { @@ -85,32 +90,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 { @@ -129,20 +143,17 @@ /* 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 { - grid-template-columns: 1fr; - border-top: 1px solid var(--ifm-color-emphasis-200); - margin-top: 8px; + padding-top: 4px; } .taxonomy-download-links { display: flex; flex-wrap: wrap; - gap: 6px; - justify-content: center; + gap: 4px; } .taxonomy-download-link { - font-size: 0.75em; + font-size: 0.7em; padding: 2px 8px; border: 1px solid var(--ifm-color-emphasis-300); border-radius: 4px; @@ -167,9 +178,9 @@ /* Search */ .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: 6px 10px; border: 1px solid var(--ifm-color-emphasis-300); border-radius: 4px; font-size: 0.95em; @@ -653,18 +664,24 @@ 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: 2; + flex: 1; } +/* 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: 1; - min-width: 260px; + flex: 0 0 264px; + padding: 12px; +} + +.taxonomy-browser--fullscreen .taxonomy-browser-right { + flex: 0 0 320px; } .taxonomy-view-switch { display: flex; gap: 4px; - padding: 8px 16px 0; + flex: 0 0 auto; } .taxonomy-view-button--expand { @@ -673,7 +690,7 @@ } .taxonomy-view-button { - flex: 1; + flex: 0 0 auto; padding: 4px 10px; font-size: 0.76em; font-family: var(--ifm-font-family-base); From a6ea93f38e734513b3a5ff8a6f7bf124a23a47e3 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:44:10 -0400 Subject: [PATCH 06/19] remove text Signed-off-by: Warren Ehrenfried --- docs/guides/places/taxonomy-browser.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/guides/places/taxonomy-browser.mdx b/docs/guides/places/taxonomy-browser.mdx index 7270b5429..706fb0daf 100644 --- a/docs/guides/places/taxonomy-browser.mdx +++ b/docs/guides/places/taxonomy-browser.mdx @@ -116,7 +116,6 @@ See [Places Taxonomy](./taxonomy.mdx) for what the `taxonomy` and id: 'september', label: '2026 September (Canonical Taxonomy)', releaseUrl: 'https://docs.overturemaps.org/blog/', - note: "The taxonomy as published by the places pipeline. Earlier entries were working spreadsheets produced during the taxonomy project; from this release onward the browser is generated directly from the canonical source, and the legacy `categories` property is no longer part of the schema.", tags: [ { label: '16 September 2026', title: 'Date' }, { label: '2026-09-16.0', title: 'Data version' }, From f1e47556fa1e284814e923d6caeb6aa034c1f163 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 11:47:05 -0400 Subject: [PATCH 07/19] rename taxonomy browser to taxonomy explorer Signed-off-by: Warren Ehrenfried --- docs/guides/places/_README.md | 2 +- docs/guides/places/index.mdx | 4 ++-- docs/guides/places/taxonomy-browser.mdx | 6 +++--- docs/guides/places/taxonomy.mdx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md index a0327eb2e..867f0e9f9 100644 --- a/docs/guides/places/_README.md +++ b/docs/guides/places/_README.md @@ -1,4 +1,4 @@ -# Taxonomy Browser +# Taxonomy Explorer An interactive tool for exploring and comparing Overture Maps Places taxonomy releases. diff --git a/docs/guides/places/index.mdx b/docs/guides/places/index.mdx index f5091bbf7..55c65bf47 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-browser). ## 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-browser)**: 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 index 706fb0daf..2d6a67020 100644 --- a/docs/guides/places/taxonomy-browser.mdx +++ b/docs/guides/places/taxonomy-browser.mdx @@ -1,5 +1,5 @@ --- -title: Taxonomy Browser +title: Taxonomy Explorer description: Browse and explore the Overture Places taxonomy hierarchy hide_table_of_contents: true --- @@ -13,9 +13,9 @@ 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 +# Taxonomy Explorer -Explore and compare updates to the Overture Taxonomy. The browser opens on the +Explore and compare updates to the Overture Taxonomy. The explorer opens on the current release; use the dropdown to see how the taxonomy looked at any earlier point, and the download links to take a release away as JSON or CSV. diff --git a/docs/guides/places/taxonomy.mdx b/docs/guides/places/taxonomy.mdx index acbe4c848..88398aa1a 100644 --- a/docs/guides/places/taxonomy.mdx +++ b/docs/guides/places/taxonomy.mdx @@ -26,7 +26,7 @@ authoritative mapping. ::: You can browse any release of the taxonomy, and compare releases to each other, -in the [Taxonomy Browser](./taxonomy-browser.mdx). +in the [Taxonomy Explorer](./taxonomy-browser.mdx). ## The taxonomy at a glance @@ -110,7 +110,7 @@ by looking for an ancestor anywhere in the array. ## Downloads The taxonomy is published as a set of files with each release. These are the -September 2026 artifacts; the [Taxonomy Browser](./taxonomy-browser.mdx) links +September 2026 artifacts; the [Taxonomy Explorer](./taxonomy-browser.mdx) links the equivalents for every release it covers. | File | Contents | From fc191396f9cf9d80a00e38d30bf84fcf933fa1ee Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 12:49:05 -0400 Subject: [PATCH 08/19] further explorer transition Signed-off-by: Warren Ehrenfried --- docs/guides/places/_README.md | 8 ++++---- docs/guides/places/index.mdx | 4 ++-- .../{taxonomy-browser.mdx => taxonomy-explorer.mdx} | 0 docs/guides/places/taxonomy.mdx | 4 ++-- docusaurus.config.js | 5 +++++ sidebars.js | 2 +- 6 files changed, 14 insertions(+), 9 deletions(-) rename docs/guides/places/{taxonomy-browser.mdx => taxonomy-explorer.mdx} (100%) diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md index 867f0e9f9..082c45065 100644 --- a/docs/guides/places/_README.md +++ b/docs/guides/places/_README.md @@ -13,7 +13,7 @@ There are two kinds of release entry: Both kinds live in the same `releases` array and can be selected and compared against each other. Adding either one only requires editing -`taxonomy-browser.mdx` — no component changes. +`taxonomy-explorer.mdx` — no component changes. ## Adding a canonical release @@ -77,7 +77,7 @@ Place two CSV files in the `csv/` directory: ### 2. Add imports -At the top of `taxonomy-browser.mdx`, add raw-loader imports for your new files: +At the top of `taxonomy-explorer.mdx`, add raw-loader imports for your new files: ```js import newDataCsv from '!!raw-loader!./csv/YYYY-MM-DD-New-Release.csv'; @@ -86,7 +86,7 @@ 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`: +Add an object to the `releases` array in `taxonomy-explorer.mdx`: ```jsx { @@ -178,7 +178,7 @@ first. ### Visibility and missing data -Set `enabled: false` on a release entry in `taxonomy-browser.mdx` to exclude it from the built site: +Set `enabled: false` on a release entry in `taxonomy-explorer.mdx` to exclude it from the built site: ```jsx { diff --git a/docs/guides/places/index.mdx b/docs/guides/places/index.mdx index 55c65bf47..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 Explorer](./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 Explorer](./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-explorer.mdx similarity index 100% rename from docs/guides/places/taxonomy-browser.mdx rename to docs/guides/places/taxonomy-explorer.mdx diff --git a/docs/guides/places/taxonomy.mdx b/docs/guides/places/taxonomy.mdx index 88398aa1a..0c262031a 100644 --- a/docs/guides/places/taxonomy.mdx +++ b/docs/guides/places/taxonomy.mdx @@ -26,7 +26,7 @@ authoritative mapping. ::: You can browse any release of the taxonomy, and compare releases to each other, -in the [Taxonomy Explorer](./taxonomy-browser.mdx). +in the [Taxonomy Explorer](./taxonomy-explorer.mdx). ## The taxonomy at a glance @@ -110,7 +110,7 @@ by looking for an ancestor anywhere in the array. ## Downloads The taxonomy is published as a set of files with each release. These are the -September 2026 artifacts; the [Taxonomy Explorer](./taxonomy-browser.mdx) links +September 2026 artifacts; the [Taxonomy Explorer](./taxonomy-explorer.mdx) links the equivalents for every release it covers. | File | Contents | diff --git a/docusaurus.config.js b/docusaurus.config.js index 2da1c2fbb..86736402c 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -106,6 +106,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/sidebars.js b/sidebars.js index 0eea724e1..64a2e5492 100644 --- a/sidebars.js +++ b/sidebars.js @@ -85,7 +85,7 @@ const sidebars = { items: [ 'guides/places/index', 'guides/places/taxonomy', - 'guides/places/taxonomy-browser', + 'guides/places/taxonomy-explorer', ], }, { From 0356c571eaf967d2bc77294566e79eb2e107be63 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 12:58:13 -0400 Subject: [PATCH 09/19] wrap text Signed-off-by: Warren Ehrenfried --- src/components/taxonomyViz.jsx | 72 +++++++++++++++++++++++++++++++++- src/css/taxonomyBrowser.css | 2 +- 2 files changed, 71 insertions(+), 3 deletions(-) diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index ba08c941e..916712891 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -260,6 +260,52 @@ export function sunburstGeometry(radius, levelsBelow) { }; } +// 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. + */ +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 single word wider than the line still has to go somewhere. + let rest = word; + while (rest.length > maxChars) { + lines.push(`${rest.slice(0, maxChars - 1)}-`); + rest = rest.slice(maxChars - 1); + } + line = rest; + } + 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; +} + /** Wrap the browser's node shape in a d3 hierarchy, counting leaves for size. */ function useLayout(treeChildren, sized) { return useMemo(() => { @@ -365,6 +411,15 @@ function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, sele const label = focused ? focused.data.displayName : 'Overture Places'; 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; + return (
Back to the previous view )} - {label} - + + {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} + + ))} + + {`${beneath.toLocaleString()} categories`} diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index d091f8544..687c2ab76 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -791,8 +791,8 @@ cursor: pointer; } +/* Size is set on the element so the wrap calculation and the rendering agree. */ .taxonomy-viz-center-label { - font-size: 13px; font-weight: 600; fill: var(--ifm-font-color-base); pointer-events: none; From 12e19cdff52659f4a4d472dd7fb71b66284bae71 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 13:00:41 -0400 Subject: [PATCH 10/19] wrap text tests Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 52 +++++++++++++++++-- src/components/taxonomyViz.jsx | 22 +++++--- 2 files changed, 61 insertions(+), 13 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 28fffd915..41b804057 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -4,7 +4,7 @@ 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 } from '../taxonomyViz'; +import { sunburstGeometry, zoomAt, wrapLabel } from '../taxonomyViz'; // A two-release fixture: one legacy CSV release and one canonical JSON release, // which is the combination the browser has to support during the transition. @@ -136,7 +136,7 @@ describe('TaxonomyBrowser', () => { fireEvent.change(screen.getByRole('combobox'), { target: { value: 'december' } }); // A CSV-sourced release drives the visualization too, not just the tree. - expect(await screen.findByText('Overture Places')).toBeInTheDocument(); + expect(await screen.findByRole('img', { name: 'Taxonomy sunburst' })).toBeInTheDocument(); expect(document.querySelectorAll('.taxonomy-viz-stage path').length).toBeGreaterThan(0); fireEvent.click(screen.getByRole('button', { name: 'Tree' })); @@ -175,7 +175,7 @@ describe('TaxonomyBrowser', () => { // the signal that the fetched taxonomy has been laid out. const showSunburst = async () => { render(); - await screen.findByText('Overture Places'); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); }; it('renders an arc for every category', async () => { @@ -250,7 +250,7 @@ describe('TaxonomyBrowser', () => { const showDeepSunburst = async () => { global.fetch = vi.fn(() => Promise.resolve({ ok: true, json: () => Promise.resolve(DEEP) })); render(); - await screen.findByText('Overture Places'); + await screen.findByRole('img', { name: 'Taxonomy sunburst' }); }; const hueSet = () => @@ -386,6 +386,48 @@ describe('TaxonomyBrowser', () => { }); }); + // SVG text does not wrap, so the centre label is laid out by hand. Without + // this it spilled out over the surrounding ring. + 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('hyphenates a single word too wide for the line', () => { + const lines = wrapLabel('Antidisestablishmentarianism', 74, 13); + expect(lines.length).toBeGreaterThan(1); + expect(lines[0]).toMatch(/-$/); + }); + + 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('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'); @@ -480,7 +522,7 @@ describe('TaxonomyBrowser', () => { it('opens on the sunburst, with the tree one click away', async () => { render(); - await screen.findByText('Overture Places'); + 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(); diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index 916712891..6a6910607 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -420,6 +420,15 @@ function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, sele const blockHeight = labelLines.length * lineHeight + 12; const firstLineY = -blockHeight / 2 + labelSize; + // A circle narrows as you move away from its centre line, so a sub-label that + // clears the hole vertically can still stick out of the sides. Drop it when + // the chord at its baseline is too short to hold it. + const subText = `${beneath.toLocaleString()} categories`; + const subY = firstLineY + labelLines.length * lineHeight + 2; + const subHalfWidth = (subText.length * 10 * CHAR_WIDTH_RATIO) / 2; + const chordHalfWidth = Math.sqrt(Math.max(0, holeRadius ** 2 - (subY + 4) ** 2)); + const showSub = chordHalfWidth >= subHalfWidth; + return (
))} - - {`${beneath.toLocaleString()} categories`} - + {showSub && ( + + {subText} + + )} From 12805cc99090d5f51f385599cb6feb74d2868a99 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 13:30:28 -0400 Subject: [PATCH 11/19] fix wrapping Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 10 ++++++---- src/components/taxonomyViz.jsx | 16 ++++++++-------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 41b804057..81298112e 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -403,10 +403,12 @@ describe('TaxonomyBrowser', () => { expect(tight.length).toBeGreaterThan(roomy.length); }); - it('hyphenates a single word too wide for the line', () => { - const lines = wrapLabel('Antidisestablishmentarianism', 74, 13); - expect(lines.length).toBeGreaterThan(1); - expect(lines[0]).toMatch(/-$/); + 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', () => { diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index 6a6910607..13d9db6e7 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -271,6 +271,9 @@ const CHAR_WIDTH_RATIO = 0.6; * 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); @@ -288,13 +291,10 @@ export function wrapLabel(text, maxWidth, fontSize, maxLines = 3) { } if (line) lines.push(line); - // A single word wider than the line still has to go somewhere. - let rest = word; - while (rest.length > maxChars) { - lines.push(`${rest.slice(0, maxChars - 1)}-`); - rest = rest.slice(maxChars - 1); - } - line = rest; + // 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); @@ -408,7 +408,7 @@ function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, sele }) .filter(s => s.a1 - s.a0 > 0.0009); - const label = focused ? focused.data.displayName : 'Overture Places'; + 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 From 702187da90dccd392a6eca4e67f23e4e85bc1c5f Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 14:50:19 -0400 Subject: [PATCH 12/19] fix search bar Signed-off-by: Warren Ehrenfried --- src/css/taxonomyBrowser.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 687c2ab76..5a52eacdd 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -70,12 +70,12 @@ .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; @@ -176,14 +176,18 @@ } /* 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% - 24px); margin: 0 12px 6px; - padding: 6px 10px; + 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; From 4b5ee3c486e363342beff43a0e38f79aabef8610 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 14:54:33 -0400 Subject: [PATCH 13/19] remove expand button Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 19 ---------- src/components/taxonomyBrowser.jsx | 36 +------------------ src/css/taxonomyBrowser.css | 25 ++----------- 3 files changed, 3 insertions(+), 77 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 81298112e..9f985fbec 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -364,26 +364,7 @@ describe('TaxonomyBrowser', () => { expect(views).toEqual(['Sunburst', 'Tree']); }); - it('locks page scrolling while expanded and restores it after', async () => { - await showSunburst(); - expect(document.body.style.overflow).toBe(''); - fireEvent.click(screen.getByRole('button', { name: /Expand/ })); - expect(document.body.style.overflow).toBe('hidden'); - fireEvent.keyDown(window, { key: 'Escape' }); - expect(document.body.style.overflow).toBe(''); - }); - - it('expands to full screen and leaves on Escape', async () => { - await showSunburst(); - const browser = document.querySelector('.taxonomy-browser'); - expect(browser.className).not.toContain('fullscreen'); - - fireEvent.click(screen.getByRole('button', { name: /Expand/ })); - expect(document.querySelector('.taxonomy-browser').className).toContain('fullscreen'); - fireEvent.keyDown(window, { key: 'Escape' }); - expect(document.querySelector('.taxonomy-browser').className).not.toContain('fullscreen'); - }); }); // SVG text does not wrap, so the centre label is laid out by hand. Without diff --git a/src/components/taxonomyBrowser.jsx b/src/components/taxonomyBrowser.jsx index 37ec37f40..e165e96dc 100644 --- a/src/components/taxonomyBrowser.jsx +++ b/src/components/taxonomyBrowser.jsx @@ -649,7 +649,6 @@ export default function TaxonomyBrowser({ releases: allReleases }) { // 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 [fullscreen, setFullscreen] = useState(false); const { withBaseUrl } = useBaseUrlUtils(); @@ -873,36 +872,12 @@ export default function TaxonomyBrowser({ releases: allReleases }) { return hits; }, [tree, searchTerm]); - // Escape is the expected way out of anything that covers the page, and the - // page behind must not scroll while it is covered. - useEffect(() => { - if (!fullscreen) return undefined; - const onKey = e => { - if (e.key === 'Escape') setFullscreen(false); - }; - window.addEventListener('keydown', onKey); - const previousOverflow = document.body.style.overflow; - document.body.style.overflow = 'hidden'; - return () => { - window.removeEventListener('keydown', onKey); - document.body.style.overflow = previousOverflow; - }; - }, [fullscreen]); - const activeRelease = releases.find(r => r.id === activeTab); const loadError = loadErrors[activeTab] ?? null; const isLoading = Boolean(activeRelease?.dataUrl) && !jsonReleases[activeTab] && !loadError; return ( -
+
setSizeByCount(e.target.checked)} + /> + Size by place count + + )}

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

); diff --git a/static/taxonomy/2026-09-16.0/basic_categories.csv b/static/taxonomy/2026-08-19.0/basic_categories.csv similarity index 74% rename from static/taxonomy/2026-09-16.0/basic_categories.csv rename to static/taxonomy/2026-08-19.0/basic_categories.csv index 6758ec9a3..77d408be4 100644 --- a/static/taxonomy/2026-09-16.0/basic_categories.csv +++ b/static/taxonomy/2026-08-19.0/basic_categories.csv @@ -1,299 +1,299 @@ basic_category,display_name,path,level,group,count -arts_and_entertainment,Arts and Entertainment,arts_and_entertainment,0,arts_and_entertainment, +arts_and_entertainment,Arts and Entertainment,arts_and_entertainment,0,arts_and_entertainment,300372 amusement_attraction,Amusement Attraction,arts_and_entertainment > amusement_attraction,1,arts_and_entertainment, -amusement_park,Amusement Park,arts_and_entertainment > amusement_attraction > amusement_park,2,arts_and_entertainment, +amusement_park,Amusement Park,arts_and_entertainment > amusement_attraction > amusement_park,2,arts_and_entertainment,43182 animal_attraction,Animal Attraction,arts_and_entertainment > animal_attraction,1,arts_and_entertainment, -aquarium,Aquarium,arts_and_entertainment > animal_attraction > aquarium,2,arts_and_entertainment, -zoo,Zoo,arts_and_entertainment > animal_attraction > zoo,2,arts_and_entertainment, -arts_and_crafts_space,Arts and Crafts Space,arts_and_entertainment > arts_and_crafts_space,1,arts_and_entertainment, -art_gallery,Art Gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,2,arts_and_entertainment, -sculpture_statue,Sculpture Statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,2,arts_and_entertainment, -street_art,Street Art,arts_and_entertainment > arts_and_crafts_space > street_art,2,arts_and_entertainment, -event_venue,Event Venue,arts_and_entertainment > event_venue,1,arts_and_entertainment, -festival_venue,Festival Venue,arts_and_entertainment > festival_venue,1,arts_and_entertainment, -fairgrounds,Fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,2,arts_and_entertainment, +aquarium,Aquarium,arts_and_entertainment > animal_attraction > aquarium,2,arts_and_entertainment,6904 +zoo,Zoo,arts_and_entertainment > animal_attraction > zoo,2,arts_and_entertainment,9589 +arts_and_crafts_space,Arts and Crafts Space,arts_and_entertainment > arts_and_crafts_space,1,arts_and_entertainment,15 +art_gallery,Art Gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,2,arts_and_entertainment,150708 +sculpture_statue,Sculpture Statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,2,arts_and_entertainment,4327 +street_art,Street Art,arts_and_entertainment > arts_and_crafts_space > street_art,2,arts_and_entertainment,1329 +event_venue,Event Venue,arts_and_entertainment > event_venue,1,arts_and_entertainment,22534 +festival_venue,Festival Venue,arts_and_entertainment > festival_venue,1,arts_and_entertainment,3327 +fairgrounds,Fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,2,arts_and_entertainment,10464 gaming_venue,Gaming Venue,arts_and_entertainment > gaming_venue,1,arts_and_entertainment, -arcade,Arcade,arts_and_entertainment > gaming_venue > arcade,2,arts_and_entertainment, -casino,Casino,arts_and_entertainment > gaming_venue > casino,2,arts_and_entertainment, -movie_theater,Movie Theater,arts_and_entertainment > movie_theater,1,arts_and_entertainment, -museum,Museum,arts_and_entertainment > museum,1,arts_and_entertainment, +arcade,Arcade,arts_and_entertainment > gaming_venue > arcade,2,arts_and_entertainment,29707 +casino,Casino,arts_and_entertainment > gaming_venue > casino,2,arts_and_entertainment,31753 +movie_theater,Movie Theater,arts_and_entertainment > movie_theater,1,arts_and_entertainment,59201 +museum,Museum,arts_and_entertainment > museum,1,arts_and_entertainment,76188 nightlife_venue,Nightlife Venue,arts_and_entertainment > nightlife_venue,1,arts_and_entertainment, -adult_entertainment_venue,Adult Entertainment Venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,2,arts_and_entertainment, -dance_club,Dance Club,arts_and_entertainment > nightlife_venue > dance_club,2,arts_and_entertainment, -performing_arts_venue,Performing Arts Venue,arts_and_entertainment > performing_arts_venue,1,arts_and_entertainment, -comedy_club,Comedy Club,arts_and_entertainment > performing_arts_venue > comedy_club,2,arts_and_entertainment, -music_venue,Music Venue,arts_and_entertainment > performing_arts_venue > music_venue,2,arts_and_entertainment, -theatre_venue,Theatre Venue,arts_and_entertainment > performing_arts_venue > theatre_venue,2,arts_and_entertainment, +adult_entertainment_venue,Adult Entertainment Venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,2,arts_and_entertainment,11462 +dance_club,Dance Club,arts_and_entertainment > nightlife_venue > dance_club,2,arts_and_entertainment,85287 +performing_arts_venue,Performing Arts Venue,arts_and_entertainment > performing_arts_venue,1,arts_and_entertainment,20329 +comedy_club,Comedy Club,arts_and_entertainment > performing_arts_venue > comedy_club,2,arts_and_entertainment,7335 +music_venue,Music Venue,arts_and_entertainment > performing_arts_venue > music_venue,2,arts_and_entertainment,187181 +theatre_venue,Theatre Venue,arts_and_entertainment > performing_arts_venue > theatre_venue,2,arts_and_entertainment,53142 rural_attraction,Rural Attraction,arts_and_entertainment > rural_attraction,1,arts_and_entertainment, -rodeo,Rodeo,arts_and_entertainment > rural_attraction > rodeo,2,arts_and_entertainment, +rodeo,Rodeo,arts_and_entertainment > rural_attraction > rodeo,2,arts_and_entertainment,2190 science_attraction,Science Attraction,arts_and_entertainment > science_attraction,1,arts_and_entertainment, -makerspace,Makerspace,arts_and_entertainment > science_attraction > makerspace,2,arts_and_entertainment, -planetarium,Planetarium,arts_and_entertainment > science_attraction > planetarium,2,arts_and_entertainment, -social_club,Social Club,arts_and_entertainment > social_club,1,arts_and_entertainment, -country_club,Country Club,arts_and_entertainment > social_club > country_club,2,arts_and_entertainment, -spiritual_advising,Spiritual Advising,arts_and_entertainment > spiritual_advising,1,arts_and_entertainment, -astrological_advising,Astrological Advising,arts_and_entertainment > spiritual_advising > astrological_advising,2,arts_and_entertainment, -psychic_advising,Psychic Advising,arts_and_entertainment > spiritual_advising > psychic_advising,2,arts_and_entertainment, -stadium_arena,Stadium Arena,arts_and_entertainment > stadium_arena,1,arts_and_entertainment, -ticket_office_or_booth,Ticket Office or Booth,arts_and_entertainment > ticket_office_or_booth,1,arts_and_entertainment, -community_and_government,Community and Government,community_and_government,0,community_and_government, -civic_organization,Civic Organization,community_and_government > civic_organization,1,community_and_government, -civic_center,Civic Center,community_and_government > civic_organization > civic_center,2,community_and_government, -labor_union,Labor Union,community_and_government > civic_organization > labor_union,2,community_and_government, -political_organization,Political Organization,community_and_government > civic_organization > political_organization,2,community_and_government, -government_office,Government Office,community_and_government > government_office,1,community_and_government, -courthouse,Courthouse,community_and_government > government_office > courthouse,2,community_and_government, -embassy,Embassy,community_and_government > government_office > embassy,2,community_and_government, +makerspace,Makerspace,arts_and_entertainment > science_attraction > makerspace,2,arts_and_entertainment,128 +planetarium,Planetarium,arts_and_entertainment > science_attraction > planetarium,2,arts_and_entertainment,1372 +social_club,Social Club,arts_and_entertainment > social_club,1,arts_and_entertainment,9343 +country_club,Country Club,arts_and_entertainment > social_club > country_club,2,arts_and_entertainment,989 +spiritual_advising,Spiritual Advising,arts_and_entertainment > spiritual_advising,1,arts_and_entertainment,234 +astrological_advising,Astrological Advising,arts_and_entertainment > spiritual_advising > astrological_advising,2,arts_and_entertainment,7919 +psychic_advising,Psychic Advising,arts_and_entertainment > spiritual_advising > psychic_advising,2,arts_and_entertainment,16324 +stadium_arena,Stadium Arena,arts_and_entertainment > stadium_arena,1,arts_and_entertainment,92811 +ticket_office_or_booth,Ticket Office or Booth,arts_and_entertainment > ticket_office_or_booth,1,arts_and_entertainment,1059 +community_and_government,Community and Government,community_and_government,0,community_and_government,232773 +civic_organization,Civic Organization,community_and_government > civic_organization,1,community_and_government,53685 +civic_center,Civic Center,community_and_government > civic_organization > civic_center,2,community_and_government,559 +labor_union,Labor Union,community_and_government > civic_organization > labor_union,2,community_and_government,28433 +political_organization,Political Organization,community_and_government > civic_organization > political_organization,2,community_and_government,26869 +government_office,Government Office,community_and_government > government_office,1,community_and_government,522622 +courthouse,Courthouse,community_and_government > government_office > courthouse,2,community_and_government,34811 +embassy,Embassy,community_and_government > government_office > embassy,2,community_and_government,16931 government_department,Government Department,community_and_government > government_office > government_department,2,community_and_government, -military_site,Military Site,community_and_government > military_site,1,community_and_government, +military_site,Military Site,community_and_government > military_site,1,community_and_government,35584 military_base,Military Base,community_and_government > military_site > military_base,2,community_and_government, military_office,Military Office,community_and_government > military_site > military_office,2,community_and_government, public_facility,Public Facility,community_and_government > public_facility,1,community_and_government, -public_fountain,Public Fountain,community_and_government > public_facility > public_fountain,2,community_and_government, +public_fountain,Public Fountain,community_and_government > public_facility > public_fountain,2,community_and_government,11910 public_pathway,Public Pathway,community_and_government > public_facility > public_pathway,2,community_and_government, -public_plaza,Public Plaza,community_and_government > public_facility > public_plaza,2,community_and_government, -public_restroom,Public Restroom,community_and_government > public_facility > public_restroom,2,community_and_government, +public_plaza,Public Plaza,community_and_government > public_facility > public_plaza,2,community_and_government,62362 +public_restroom,Public Restroom,community_and_government > public_facility > public_restroom,2,community_and_government,4616 public_safety_service,Public Safety Service,community_and_government > public_safety_service,1,community_and_government, -fire_station,Fire Station,community_and_government > public_safety_service > fire_station,2,community_and_government, -jail_or_prison,Jail or Prison,community_and_government > public_safety_service > jail_or_prison,2,community_and_government, -police_station,Police Station,community_and_government > public_safety_service > police_station,2,community_and_government, -public_utility,Public Utility,community_and_government > public_utility,1,community_and_government, -electric_utility_provider,Electric Utility Provider,community_and_government > public_utility > electric_utility_provider,2,community_and_government, -natural_gas_utility_provider,Natural Gas Utility Provider,community_and_government > public_utility > natural_gas_utility_provider,2,community_and_government, -water_utility_provider,Water Utility Provider,community_and_government > public_utility > water_utility_provider,2,community_and_government, -social_or_community_service,Social or Community Service,community_and_government > social_or_community_service,1,community_and_government, -community_center,Community Center,community_and_government > social_or_community_service > community_center,2,community_and_government, -food_bank,Food Bank,community_and_government > social_or_community_service > food_bank,2,community_and_government, -youth_organization,Youth Organization,community_and_government > social_or_community_service > youth_organization,2,community_and_government, +fire_station,Fire Station,community_and_government > public_safety_service > fire_station,2,community_and_government,83675 +jail_or_prison,Jail or Prison,community_and_government > public_safety_service > jail_or_prison,2,community_and_government,9083 +police_station,Police Station,community_and_government > public_safety_service > police_station,2,community_and_government,97337 +public_utility,Public Utility,community_and_government > public_utility,1,community_and_government,14646 +electric_utility_provider,Electric Utility Provider,community_and_government > public_utility > electric_utility_provider,2,community_and_government,23290 +natural_gas_utility_provider,Natural Gas Utility Provider,community_and_government > public_utility > natural_gas_utility_provider,2,community_and_government,10233 +water_utility_provider,Water Utility Provider,community_and_government > public_utility > water_utility_provider,2,community_and_government,17658 +social_or_community_service,Social or Community Service,community_and_government > social_or_community_service,1,community_and_government,821250 +community_center,Community Center,community_and_government > social_or_community_service > community_center,2,community_and_government,106008 +food_bank,Food Bank,community_and_government > social_or_community_service > food_bank,2,community_and_government,8346 +youth_organization,Youth Organization,community_and_government > social_or_community_service > youth_organization,2,community_and_government,57839 cultural_and_historic,Cultural and Historic,cultural_and_historic,0,cultural_and_historic, -cultural_center,Cultural Center,cultural_and_historic > cultural_center,1,cultural_and_historic, -historic_site,Historic Site,cultural_and_historic > historic_site,1,cultural_and_historic, -castle,Castle,cultural_and_historic > historic_site > castle,2,cultural_and_historic, -fort,Fort,cultural_and_historic > historic_site > fort,2,cultural_and_historic, -lighthouse,Lighthouse,cultural_and_historic > historic_site > lighthouse,2,cultural_and_historic, +cultural_center,Cultural Center,cultural_and_historic > cultural_center,1,cultural_and_historic,51870 +historic_site,Historic Site,cultural_and_historic > historic_site,1,cultural_and_historic,998562 +castle,Castle,cultural_and_historic > historic_site > castle,2,cultural_and_historic,15319 +fort,Fort,cultural_and_historic > historic_site > fort,2,cultural_and_historic,2330 +lighthouse,Lighthouse,cultural_and_historic > historic_site > lighthouse,2,cultural_and_historic,3747 memorial_site,Memorial Site,cultural_and_historic > memorial_site,1,cultural_and_historic, -cemetery,Cemetery,cultural_and_historic > memorial_site > cemetery,2,cultural_and_historic, -monument,Monument,cultural_and_historic > memorial_site > monument,2,cultural_and_historic, -place_of_worship,Place of Worship,cultural_and_historic > place_of_worship,1,cultural_and_historic, -buddhist_place_of_worship,Buddhist Place of Worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,2,cultural_and_historic, -christian_place_of_worship,Christian Place of Worship,cultural_and_historic > place_of_worship > christian_place_of_worship,2,cultural_and_historic, -hindu_place_of_worship,Hindu Place of Worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,2,cultural_and_historic, -jewish_place_of_worship,Jewish Place of Worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,2,cultural_and_historic, -muslim_place_of_worship,Muslim Place of Worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,2,cultural_and_historic, +cemetery,Cemetery,cultural_and_historic > memorial_site > cemetery,2,cultural_and_historic,3078 +monument,Monument,cultural_and_historic > memorial_site > monument,2,cultural_and_historic,46824 +place_of_worship,Place of Worship,cultural_and_historic > place_of_worship,1,cultural_and_historic,1408 +buddhist_place_of_worship,Buddhist Place of Worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,2,cultural_and_historic,110363 +christian_place_of_worship,Christian Place of Worship,cultural_and_historic > place_of_worship > christian_place_of_worship,2,cultural_and_historic,862941 +hindu_place_of_worship,Hindu Place of Worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,2,cultural_and_historic,128014 +jewish_place_of_worship,Jewish Place of Worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,2,cultural_and_historic,8295 +muslim_place_of_worship,Muslim Place of Worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,2,cultural_and_historic,122811 religious_landmark,Religious Landmark,cultural_and_historic > religious_landmark,1,cultural_and_historic, -religious_organization,Religious Organization,cultural_and_historic > religious_organization,1,cultural_and_historic, +religious_organization,Religious Organization,cultural_and_historic > religious_organization,1,cultural_and_historic,388911 religious_retreat_or_center,Religious Retreat or Center,cultural_and_historic > religious_retreat_or_center,1,cultural_and_historic, -education,Education,education,0,education, +education,Education,education,0,education,437216 education_office,Education Office,education > education_office,1,education, -school_district_office,School District Office,education > education_office > school_district_office,2,education, +school_district_office,School District Office,education > education_office > school_district_office,2,education,1983 educational_facility,Educational Facility,education > educational_facility,1,education, campus,Campus,education > educational_facility > campus,2,education, -campus_building,Campus Building,education > educational_facility > campus_building,2,education, -educational_service,Educational Service,education > educational_service,1,education, -tutoring_service,Tutoring Service,education > educational_service > tutoring_service,2,education, -library,Library,education > library,1,education, +campus_building,Campus Building,education > educational_facility > campus_building,2,education,82488 +educational_service,Educational Service,education > educational_service,1,education,69509 +tutoring_service,Tutoring Service,education > educational_service > tutoring_service,2,education,87959 +library,Library,education > library,1,education,136849 place_of_learning,Place of Learning,education > place_of_learning,1,education, academy,Academy,education > place_of_learning > academy,2,education, class_venue,Class Venue,education > place_of_learning > class_venue,2,education, -college_university,College University,education > place_of_learning > college_university,2,education, -elementary_school,Elementary School,education > place_of_learning > school > elementary_school,3,education, -high_school,High School,education > place_of_learning > school > high_school,3,education, +college_university,College University,education > place_of_learning > college_university,2,education,365741 +elementary_school,Elementary School,education > place_of_learning > school > elementary_school,3,education,423059 +high_school,High School,education > place_of_learning > school > high_school,3,education,168990 kindergarten,Kindergarten,education > place_of_learning > school > kindergarten,3,education, -middle_school,Middle School,education > place_of_learning > school > middle_school,3,education, -preschool,Preschool,education > place_of_learning > school > preschool,3,education, -specialty_school,Specialty School,education > place_of_learning > specialty_school,2,education, -research_institute,Research Institute,education > research_institute,1,education, -food_and_drink,Food and Drink,food_and_drink,0,food_and_drink, +middle_school,Middle School,education > place_of_learning > school > middle_school,3,education,66983 +preschool,Preschool,education > place_of_learning > school > preschool,3,education,282188 +specialty_school,Specialty School,education > place_of_learning > specialty_school,2,education,52024 +research_institute,Research Institute,education > research_institute,1,education,3210 +food_and_drink,Food and Drink,food_and_drink,0,food_and_drink,98464 alcoholic_beverage_venue,Alcoholic Beverage Venue,food_and_drink > alcoholic_beverage_venue,1,food_and_drink, -bar,Bar,food_and_drink > alcoholic_beverage_venue > bar,2,food_and_drink, -brewery,Brewery,food_and_drink > alcoholic_beverage_venue > brewery,2,food_and_drink, -distillery,Distillery,food_and_drink > alcoholic_beverage_venue > distillery,2,food_and_drink, -lounge,Lounge,food_and_drink > alcoholic_beverage_venue > lounge,2,food_and_drink, -winery,Winery,food_and_drink > alcoholic_beverage_venue > winery,2,food_and_drink, +bar,Bar,food_and_drink > alcoholic_beverage_venue > bar,2,food_and_drink,644080 +brewery,Brewery,food_and_drink > alcoholic_beverage_venue > brewery,2,food_and_drink,47917 +distillery,Distillery,food_and_drink > alcoholic_beverage_venue > distillery,2,food_and_drink,9919 +lounge,Lounge,food_and_drink > alcoholic_beverage_venue > lounge,2,food_and_drink,52495 +winery,Winery,food_and_drink > alcoholic_beverage_venue > winery,2,food_and_drink,76227 casual_eatery,Casual Eatery,food_and_drink > casual_eatery,1,food_and_drink, -cafe,Cafe,food_and_drink > casual_eatery > cafe,2,food_and_drink, -fast_food_restaurant,Fast Food Restaurant,food_and_drink > casual_eatery > fast_food_restaurant,2,food_and_drink, -food_court,Food Court,food_and_drink > casual_eatery > food_court,2,food_and_drink, -food_truck_stand,Food Truck or Stand,food_and_drink > casual_eatery > food_truck_stand,2,food_and_drink, -non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,food_and_drink > non_alcoholic_beverage_venue,1,food_and_drink, -coffee_shop,Coffee Shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,2,food_and_drink, -smoothie_juice_bar,Smoothie or Juice Bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,2,food_and_drink, -restaurant,Restaurant,food_and_drink > restaurant,1,food_and_drink, -geographic_entities,Geographic Entities,geographic_entities,0,geographic_entities, +cafe,Cafe,food_and_drink > casual_eatery > cafe,2,food_and_drink,700856 +fast_food_restaurant,Fast Food Restaurant,food_and_drink > casual_eatery > fast_food_restaurant,2,food_and_drink,409785 +food_court,Food Court,food_and_drink > casual_eatery > food_court,2,food_and_drink,2101 +food_truck_stand,Food Truck or Stand,food_and_drink > casual_eatery > food_truck_stand,2,food_and_drink,83367 +non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,food_and_drink > non_alcoholic_beverage_venue,1,food_and_drink,155 +coffee_shop,Coffee Shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,2,food_and_drink,610598 +smoothie_juice_bar,Smoothie or Juice Bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,2,food_and_drink,62736 +restaurant,Restaurant,food_and_drink > restaurant,1,food_and_drink,1812921 +geographic_entities,Geographic Entities,geographic_entities,0,geographic_entities,176263 built_feature,Built Feature,geographic_entities > built_feature,1,geographic_entities, -bridge,Bridge,geographic_entities > built_feature > bridge,2,geographic_entities, +bridge,Bridge,geographic_entities > built_feature > bridge,2,geographic_entities,43784 building,Building,geographic_entities > built_feature > building,2,geographic_entities, -dam,Dam,geographic_entities > built_feature > dam,2,geographic_entities, +dam,Dam,geographic_entities > built_feature > dam,2,geographic_entities,2 dock,Dock,geographic_entities > built_feature > dock,2,geographic_entities, garden,Garden,geographic_entities > built_feature > garden,2,geographic_entities, -marina,Marina,geographic_entities > built_feature > marina,2,geographic_entities, -pier,Pier,geographic_entities > built_feature > pier,2,geographic_entities, +marina,Marina,geographic_entities > built_feature > marina,2,geographic_entities,19183 +pier,Pier,geographic_entities > built_feature > pier,2,geographic_entities,4793 land_feature,Land Feature,geographic_entities > land_feature,1,geographic_entities, -beach,Beach,geographic_entities > land_feature > beach,2,geographic_entities, -canyon,Canyon,geographic_entities > land_feature > canyon,2,geographic_entities, -forest,Forest,geographic_entities > land_feature > forest,2,geographic_entities, +beach,Beach,geographic_entities > land_feature > beach,2,geographic_entities,177958 +canyon,Canyon,geographic_entities > land_feature > canyon,2,geographic_entities,12 +forest,Forest,geographic_entities > land_feature > forest,2,geographic_entities,7854 hill,Hill,geographic_entities > land_feature > hill,2,geographic_entities, -island,Island,geographic_entities > land_feature > island,2,geographic_entities, -mountain,Mountain,geographic_entities > land_feature > mountain,2,geographic_entities, -nature_reserve,Nature Reserve,geographic_entities > land_feature > nature_reserve,2,geographic_entities, +island,Island,geographic_entities > land_feature > island,2,geographic_entities,2613 +mountain,Mountain,geographic_entities > land_feature > mountain,2,geographic_entities,131189 +nature_reserve,Nature Reserve,geographic_entities > land_feature > nature_reserve,2,geographic_entities,24277 valley,Valley,geographic_entities > land_feature > valley,2,geographic_entities, scenic_viewpoint,Scenic Viewpoint,geographic_entities > scenic_viewpoint,1,geographic_entities, water_feature,Water Feature,geographic_entities > water_feature,1,geographic_entities, -canal,Canal,geographic_entities > water_feature > canal,2,geographic_entities, -hot_springs,Hot Springs,geographic_entities > water_feature > hot_springs,2,geographic_entities, -lake,Lake,geographic_entities > water_feature > lake,2,geographic_entities, +canal,Canal,geographic_entities > water_feature > canal,2,geographic_entities,2621 +hot_springs,Hot Springs,geographic_entities > water_feature > hot_springs,2,geographic_entities,5642 +lake,Lake,geographic_entities > water_feature > lake,2,geographic_entities,215556 ocean,Ocean,geographic_entities > water_feature > ocean,2,geographic_entities, -river,River,geographic_entities > water_feature > river,2,geographic_entities, +river,River,geographic_entities > water_feature > river,2,geographic_entities,134916 sea,Sea,geographic_entities > water_feature > sea,2,geographic_entities, -waterfall,Waterfall,geographic_entities > water_feature > waterfall,2,geographic_entities, -health_care,Health Care,health_care,0,health_care, -emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,health_care > emergency_or_urgent_care_facility,1,health_care, -emergency_department,Emergency Department,health_care > emergency_or_urgent_care_facility > emergency_department,2,health_care, -urgent_care_clinic,Urgent Care Clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,2,health_care, -walk_in_clinic,Walk-In Clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,2,health_care, -hospital,Hospital,health_care > hospital,1,health_care, +waterfall,Waterfall,geographic_entities > water_feature > waterfall,2,geographic_entities,8069 +health_care,Health Care,health_care,0,health_care,601038 +emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,health_care > emergency_or_urgent_care_facility,1,health_care,3986 +emergency_department,Emergency Department,health_care > emergency_or_urgent_care_facility > emergency_department,2,health_care,13985 +urgent_care_clinic,Urgent Care Clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,2,health_care,5530 +walk_in_clinic,Walk-In Clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,2,health_care,8395 +hospital,Hospital,health_care > hospital,1,health_care,483089 general_hospital,General Hospital,health_care > hospital > general_hospital,2,health_care, specialty_hospital,Specialty Hospital,health_care > hospital > specialty_hospital,2,health_care, medical_service,Medical Service,health_care > medical_service,1,health_care, -outpatient_care_facility,Outpatient Care Facility,health_care > outpatient_care_facility,1,health_care, -behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,2,health_care, -complementary_and_alternative_medicine,Complementary and Alternative Medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,2,health_care, -dental_clinic,Dental Clinic,health_care > outpatient_care_facility > dental_clinic,2,health_care, +outpatient_care_facility,Outpatient Care Facility,health_care > outpatient_care_facility,1,health_care,210956 +behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,2,health_care,32418 +complementary_and_alternative_medicine,Complementary and Alternative Medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,2,health_care,19458 +dental_clinic,Dental Clinic,health_care > outpatient_care_facility > dental_clinic,2,health_care,505874 diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,2,health_care, -pediatric_clinic,Pediatric Clinic,health_care > outpatient_care_facility > pediatric_clinic,2,health_care, +pediatric_clinic,Pediatric Clinic,health_care > outpatient_care_facility > pediatric_clinic,2,health_care,58503 physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,2,health_care, primary_care_or_general_clinic,Primary Care or General Clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic,2,health_care, -reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,2,health_care, -specialized_health_care,Specialized Health Care,health_care > outpatient_care_facility > specialized_health_care,2,health_care, -vision_or_eye_care_clinic,Vision or Eye Care Clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,2,health_care, +reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,2,health_care,12735 +specialized_health_care,Specialized Health Care,health_care > outpatient_care_facility > specialized_health_care,2,health_care,9268 +vision_or_eye_care_clinic,Vision or Eye Care Clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,2,health_care,33767 specialized_medical_facility,Specialized Medical Facility,health_care > specialized_medical_facility,1,health_care, -surgery,Surgery,health_care > specialized_medical_facility > surgery,2,health_care, +surgery,Surgery,health_care > specialized_medical_facility > surgery,2,health_care,34095 lifestyle_services,Lifestyle Services,lifestyle_services,0,lifestyle_services, -animal_or_pet_service,Animal or Pet Service,lifestyle_services > animal_or_pet_service,1,lifestyle_services, +animal_or_pet_service,Animal or Pet Service,lifestyle_services > animal_or_pet_service,1,lifestyle_services,80894 food_service,Food Service,lifestyle_services > food_service,1,lifestyle_services, -personal_or_beauty_service,Personal or Beauty Service,lifestyle_services > personal_or_beauty_service,1,lifestyle_services, -wellness_service,Wellness Service,lifestyle_services > wellness_service,1,lifestyle_services, -lodging,Lodging,lodging,0,lodging, -bed_and_breakfast,Bed and Breakfast,lodging > bed_and_breakfast,1,lodging, -campground,Campground,lodging > campground,1,lodging, -hotel,Hotel,lodging > hotel,1,lodging, -inn,Inn,lodging > inn,1,lodging, +personal_or_beauty_service,Personal or Beauty Service,lifestyle_services > personal_or_beauty_service,1,lifestyle_services,34051 +wellness_service,Wellness Service,lifestyle_services > wellness_service,1,lifestyle_services,6714 +lodging,Lodging,lodging,0,lodging,430223 +bed_and_breakfast,Bed and Breakfast,lodging > bed_and_breakfast,1,lodging,155160 +campground,Campground,lodging > campground,1,lodging,104128 +hotel,Hotel,lodging > hotel,1,lodging,1172978 +inn,Inn,lodging > inn,1,lodging,25854 private_lodging,Private Lodging,lodging > private_lodging,1,lodging, -resort,Resort,lodging > resort,1,lodging, -rv_park,RV Park,lodging > rv_park,1,lodging, +resort,Resort,lodging > resort,1,lodging,102837 +rv_park,RV Park,lodging > rv_park,1,lodging,23854 services_and_business,Services and Business,services_and_business,0,services_and_business, -agricultural_service,Agricultural Service,services_and_business > agricultural_service,1,services_and_business, -farm,Farm,services_and_business > agricultural_service > farm,2,services_and_business, -b2b_service,B2B Service,services_and_business > b2b_service,1,services_and_business, -b2b_energy_and_utility_service,B2B Energy and Utility Service,services_and_business > b2b_service > b2b_energy_and_utility_service,2,services_and_business, -b2b_industrial_and_machine_service,B2B Industrial and Machine Service,services_and_business > b2b_service > b2b_industrial_and_machine_service,2,services_and_business, +agricultural_service,Agricultural Service,services_and_business > agricultural_service,1,services_and_business,89225 +farm,Farm,services_and_business > agricultural_service > farm,2,services_and_business,254727 +b2b_service,B2B Service,services_and_business > b2b_service,1,services_and_business,50289 +b2b_energy_and_utility_service,B2B Energy and Utility Service,services_and_business > b2b_service > b2b_energy_and_utility_service,2,services_and_business,35130 +b2b_industrial_and_machine_service,B2B Industrial and Machine Service,services_and_business > b2b_service > b2b_industrial_and_machine_service,2,services_and_business,3478 b2b_office_and_professional_service,B2B Office and Professional Service,services_and_business > b2b_service > b2b_office_and_professional_service,2,services_and_business, -b2b_science_and_technology_service,B2B Science and Technology Service,services_and_business > b2b_service > b2b_science_and_technology_service,2,services_and_business, -b2b_transportation_and_storage_service,B2B Transportation and Storage Service,services_and_business > b2b_service > b2b_transportation_and_storage_service,2,services_and_business, -manufacturer,Manufacturer,services_and_business > b2b_service > manufacturer,2,services_and_business, -supplier_or_distributor,Supplier or Distributor,services_and_business > b2b_service > supplier_or_distributor,2,services_and_business, -wholesaler,Wholesaler,services_and_business > b2b_service > wholesaler,2,services_and_business, -building_or_construction_service,Building or Construction Service,services_and_business > building_or_construction_service,1,services_and_business, -corporate_or_business_office,Corporate or Business Office,services_and_business > corporate_or_business_office,1,services_and_business, +b2b_science_and_technology_service,B2B Science and Technology Service,services_and_business > b2b_service > b2b_science_and_technology_service,2,services_and_business,14826 +b2b_transportation_and_storage_service,B2B Transportation and Storage Service,services_and_business > b2b_service > b2b_transportation_and_storage_service,2,services_and_business,1110 +manufacturer,Manufacturer,services_and_business > b2b_service > manufacturer,2,services_and_business,258533 +supplier_or_distributor,Supplier or Distributor,services_and_business > b2b_service > supplier_or_distributor,2,services_and_business,5376 +wholesaler,Wholesaler,services_and_business > b2b_service > wholesaler,2,services_and_business,15756 +building_or_construction_service,Building or Construction Service,services_and_business > building_or_construction_service,1,services_and_business,343319 +corporate_or_business_office,Corporate or Business Office,services_and_business > corporate_or_business_office,1,services_and_business,164478 design_service,Design Service,services_and_business > design_service,1,services_and_business, -environmental_or_ecological_service,Environmental or Ecological Service,services_and_business > environmental_or_ecological_service,1,services_and_business, -event_or_party_service,Event or Party Service,services_and_business > event_or_party_service,1,services_and_business, +environmental_or_ecological_service,Environmental or Ecological Service,services_and_business > environmental_or_ecological_service,1,services_and_business,11061 +event_or_party_service,Event or Party Service,services_and_business > event_or_party_service,1,services_and_business,1 family_service,Family Service,services_and_business > family_service,1,services_and_business, -financial_service,Financial Service,services_and_business > financial_service,1,services_and_business, -atm,ATM,services_and_business > financial_service > atm,2,services_and_business, -bank_or_credit_union,Bank or Credit Union,services_and_business > financial_service > bank_or_credit_union,2,services_and_business, -home_service,Home Service,services_and_business > home_service,1,services_and_business, +financial_service,Financial Service,services_and_business > financial_service,1,services_and_business,313147 +atm,ATM,services_and_business > financial_service > atm,2,services_and_business,342719 +bank_or_credit_union,Bank or Credit Union,services_and_business > financial_service > bank_or_credit_union,2,services_and_business,358594 +home_service,Home Service,services_and_business > home_service,1,services_and_business,151878 housing_or_property_service,Housing or Property Service,services_and_business > housing_or_property_service,1,services_and_business, -apartment,Apartment,services_and_business > housing_or_property_service > apartment,2,services_and_business, -condominium,Condominium,services_and_business > housing_or_property_service > condominium,2,services_and_business, +apartment,Apartment,services_and_business > housing_or_property_service > apartment,2,services_and_business,28150 +condominium,Condominium,services_and_business > housing_or_property_service > condominium,2,services_and_business,13157 senior_living_facility,Senior Living Facility,services_and_business > housing_or_property_service > senior_living_facility,2,services_and_business, industrial_facility_or_service,Industrial Facility or Service,services_and_business > industrial_facility_or_service,1,services_and_business, -laundry_service,Laundry Service,services_and_business > laundry_service,1,services_and_business, -legal_service,Legal Service,services_and_business > legal_service,1,services_and_business, -attorney_or_law_firm,Attorney or Law Firm,services_and_business > legal_service > attorney_or_law_firm,2,services_and_business, -media_service,Media Service,services_and_business > media_service,1,services_and_business, -radio_station,Radio Station,services_and_business > media_service > media_news_company > radio_station,3,services_and_business, -television_station,Television Station,services_and_business > media_service > media_news_company > television_station,3,services_and_business, -printing_service,Printing Service,services_and_business > printing_service,1,services_and_business, -professional_service,Professional Service,services_and_business > professional_service,1,services_and_business, -real_estate_service,Real Estate Service,services_and_business > real_estate_service,1,services_and_business, -rental_service,Rental Service,services_and_business > rental_service,1,services_and_business, -security_service,Security Service,services_and_business > security_service,1,services_and_business, +laundry_service,Laundry Service,services_and_business > laundry_service,1,services_and_business,16277 +legal_service,Legal Service,services_and_business > legal_service,1,services_and_business,67183 +attorney_or_law_firm,Attorney or Law Firm,services_and_business > legal_service > attorney_or_law_firm,2,services_and_business,316077 +media_service,Media Service,services_and_business > media_service,1,services_and_business,13702 +radio_station,Radio Station,services_and_business > media_service > media_news_company > radio_station,3,services_and_business,24573 +television_station,Television Station,services_and_business > media_service > media_news_company > television_station,3,services_and_business,1073 +printing_service,Printing Service,services_and_business > printing_service,1,services_and_business,298475 +professional_service,Professional Service,services_and_business > professional_service,1,services_and_business,1267482 +real_estate_service,Real Estate Service,services_and_business > real_estate_service,1,services_and_business,740534 +rental_service,Rental Service,services_and_business > rental_service,1,services_and_business,69201 +security_service,Security Service,services_and_business > security_service,1,services_and_business,7724 shipping_or_delivery_service,Shipping or Delivery Service,services_and_business > shipping_or_delivery_service,1,services_and_business, -storage_facility,Storage Facility,services_and_business > storage_facility,1,services_and_business, +storage_facility,Storage Facility,services_and_business > storage_facility,1,services_and_business,80256 technical_service,Technical Service,services_and_business > technical_service,1,services_and_business, -telecommunications_service,Telecommunications Service,services_and_business > telecommunications_service,1,services_and_business, +telecommunications_service,Telecommunications Service,services_and_business > telecommunications_service,1,services_and_business,35375 utility_energy_infrastructure,Utility Energy Infrastructure,services_and_business > utility_energy_infrastructure,1,services_and_business, -shopping,Shopping,shopping,0,shopping, -convenience_store,Convenience Store,shopping > convenience_store,1,shopping, -department_store,Department Store,shopping > department_store,1,shopping, -discount_store,Discount Store,shopping > discount_store,1,shopping, -fashion_and_apparel_store,Fashion and Apparel Store,shopping > fashion_and_apparel_store,1,shopping, -food_and_beverage_store,Food and Beverage Store,shopping > food_and_beverage_store,1,shopping, -kiosk,Kiosk,shopping > kiosk,1,shopping, +shopping,Shopping,shopping,0,shopping,1225096 +convenience_store,Convenience Store,shopping > convenience_store,1,shopping,469802 +department_store,Department Store,shopping > department_store,1,shopping,86591 +discount_store,Discount Store,shopping > discount_store,1,shopping,124970 +fashion_and_apparel_store,Fashion and Apparel Store,shopping > fashion_and_apparel_store,1,shopping,97108 +food_and_beverage_store,Food and Beverage Store,shopping > food_and_beverage_store,1,shopping,65762 +kiosk,Kiosk,shopping > kiosk,1,shopping,1865 market,Market,shopping > market,1,shopping, -farmers_market,Farmers Market,shopping > market > farmers_market,2,shopping, -second_hand_store,Second Hand Store,shopping > second_hand_store,1,shopping, -shopping_mall,Shopping Mall,shopping > shopping_mall,1,shopping, +farmers_market,Farmers Market,shopping > market > farmers_market,2,shopping,60196 +second_hand_store,Second Hand Store,shopping > second_hand_store,1,shopping,84231 +shopping_mall,Shopping Mall,shopping > shopping_mall,1,shopping,186795 shopping_service,Shopping Service,shopping > shopping_service,1,shopping, -specialty_store,Specialty Store,shopping > specialty_store,1,shopping, +specialty_store,Specialty Store,shopping > specialty_store,1,shopping,53 animal_and_pet_store,Animal and Pet Store,shopping > specialty_store > animal_and_pet_store,2,shopping, -arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,shopping > specialty_store > arts_crafts_and_hobby_store,2,shopping, -books_music_and_video_store,Books Music and Video Store,shopping > specialty_store > books_music_and_video_store,2,shopping, -electronics_store,Electronics Store,shopping > specialty_store > electronics_store,2,shopping, -flowers_and_gifts_store,Flowers and Gifts Store,shopping > specialty_store > flowers_and_gifts_store,2,shopping, -hardware_home_and_garden_store,Hardware Home and Garden Store,shopping > specialty_store > hardware_home_and_garden_store,2,shopping, +arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,shopping > specialty_store > arts_crafts_and_hobby_store,2,shopping,142261 +books_music_and_video_store,Books Music and Video Store,shopping > specialty_store > books_music_and_video_store,2,shopping,5663 +electronics_store,Electronics Store,shopping > specialty_store > electronics_store,2,shopping,256895 +flowers_and_gifts_store,Flowers and Gifts Store,shopping > specialty_store > flowers_and_gifts_store,2,shopping,398227 +hardware_home_and_garden_store,Hardware Home and Garden Store,shopping > specialty_store > hardware_home_and_garden_store,2,shopping,30904 musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,shopping > specialty_store > musical_instrument_and_pro_audio_store,2,shopping, -office_supply_store,Office Supply Store,shopping > specialty_store > office_supply_store,2,shopping, +office_supply_store,Office Supply Store,shopping > specialty_store > office_supply_store,2,shopping,57124 personal_care_and_beauty_store,Personal Care and Beauty Store,shopping > specialty_store > personal_care_and_beauty_store,2,shopping, pharmacy_and_drug_store,Pharmacy and Drug Store,shopping > specialty_store > pharmacy_and_drug_store,2,shopping, -sporting_goods_store,Sporting Goods Store,shopping > specialty_store > sporting_goods_store,2,shopping, +sporting_goods_store,Sporting Goods Store,shopping > specialty_store > sporting_goods_store,2,shopping,128526 toys_and_games_store,Toys and Games Store,shopping > specialty_store > toys_and_games_store,2,shopping, vehicle_parts_store,Vehicle Parts Store,shopping > specialty_store > vehicle_parts_store,2,shopping, -superstore,Superstore,shopping > superstore,1,shopping, -vehicle_dealer,Vehicle Dealer,shopping > vehicle_dealer,1,shopping, -auto_dealer,Auto Dealer,shopping > vehicle_dealer > auto_dealer,2,shopping, -warehouse_club_store,Warehouse Club Store,shopping > warehouse_club_store,1,shopping, -sports_and_recreation,Sports and Recreation,sports_and_recreation,0,sports_and_recreation, -park,Park,sports_and_recreation > park,1,sports_and_recreation, -dog_park,Dog Park,sports_and_recreation > park > dog_park,2,sports_and_recreation, -national_park,National Park,sports_and_recreation > park > national_park,2,sports_and_recreation, -playground,Playground,sports_and_recreation > park > playground,2,sports_and_recreation, +superstore,Superstore,shopping > superstore,1,shopping,15014 +vehicle_dealer,Vehicle Dealer,shopping > vehicle_dealer,1,shopping,1512 +auto_dealer,Auto Dealer,shopping > vehicle_dealer > auto_dealer,2,shopping,542069 +warehouse_club_store,Warehouse Club Store,shopping > warehouse_club_store,1,shopping,121150 +sports_and_recreation,Sports and Recreation,sports_and_recreation,0,sports_and_recreation,198851 +park,Park,sports_and_recreation > park,1,sports_and_recreation,491407 +dog_park,Dog Park,sports_and_recreation > park > dog_park,2,sports_and_recreation,12924 +national_park,National Park,sports_and_recreation > park > national_park,2,sports_and_recreation,27732 +playground,Playground,sports_and_recreation > park > playground,2,sports_and_recreation,38750 recreational_equipment_rental,Recreational Equipment Rental,sports_and_recreation > recreational_equipment_rental,1,sports_and_recreation, -recreational_trail_or_path,Recreational Trail or Path,sports_and_recreation > recreational_trail_or_path,1,sports_and_recreation, +recreational_trail_or_path,Recreational Trail or Path,sports_and_recreation > recreational_trail_or_path,1,sports_and_recreation,24 sport_league,Sport League,sports_and_recreation > sport_league,1,sports_and_recreation, -sport_or_fitness_facility,Sport or Fitness Facility,sports_and_recreation > sport_or_fitness_facility,1,sports_and_recreation, +sport_or_fitness_facility,Sport or Fitness Facility,sports_and_recreation > sport_or_fitness_facility,1,sports_and_recreation,135796 fitness_studio,Fitness Studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio,2,sports_and_recreation, -golf_course,Golf Course,sports_and_recreation > sport_or_fitness_facility > golf_course,2,sports_and_recreation, -gym,Gym,sports_and_recreation > sport_or_fitness_facility > gym,2,sports_and_recreation, -skate_park,Skate Park,sports_and_recreation > sport_or_fitness_facility > skate_park,2,sports_and_recreation, -skating_rink,Skating Rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,2,sports_and_recreation, +golf_course,Golf Course,sports_and_recreation > sport_or_fitness_facility > golf_course,2,sports_and_recreation,37906 +gym,Gym,sports_and_recreation > sport_or_fitness_facility > gym,2,sports_and_recreation,541730 +skate_park,Skate Park,sports_and_recreation > sport_or_fitness_facility > skate_park,2,sports_and_recreation,18613 +skating_rink,Skating Rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,2,sports_and_recreation,669 sport_court,Sport Court,sports_and_recreation > sport_or_fitness_facility > sport_court,2,sports_and_recreation, sport_field,Sport Field,sports_and_recreation > sport_or_fitness_facility > sport_field,2,sports_and_recreation, sports_complex,Sports Complex,sports_and_recreation > sport_or_fitness_facility > sports_complex,2,sports_and_recreation, -swimming_pool,Swimming Pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,2,sports_and_recreation, -sport_or_recreation_club,Sport or Recreation Club,sports_and_recreation > sport_or_recreation_club,1,sports_and_recreation, +swimming_pool,Swimming Pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,2,sports_and_recreation,64630 +sport_or_recreation_club,Sport or Recreation Club,sports_and_recreation > sport_or_recreation_club,1,sports_and_recreation,10279 sport_team,Sport Team,sports_and_recreation > sport_team,1,sports_and_recreation, -travel_and_transportation,Travel and Transportation,travel_and_transportation,0,travel_and_transportation, +travel_and_transportation,Travel and Transportation,travel_and_transportation,0,travel_and_transportation,207498 air_transport_facility_or_service,Air Transport Facility or Service,travel_and_transportation > air_transport_facility_or_service,1,travel_and_transportation, -airport,Airport,travel_and_transportation > air_transport_facility_or_service > airport,2,travel_and_transportation, +airport,Airport,travel_and_transportation > air_transport_facility_or_service > airport,2,travel_and_transportation,53917 fueling_station,Fueling Station,travel_and_transportation > fueling_station,1,travel_and_transportation, -ev_charging_station,EV Charging Station,travel_and_transportation > fueling_station > ev_charging_station,2,travel_and_transportation, -gas_station,Gas Station,travel_and_transportation > fueling_station > gas_station,2,travel_and_transportation, +ev_charging_station,EV Charging Station,travel_and_transportation > fueling_station > ev_charging_station,2,travel_and_transportation,49715 +gas_station,Gas Station,travel_and_transportation > fueling_station > gas_station,2,travel_and_transportation,577515 ground_transport_facility_or_service,Ground Transport Facility or Service,travel_and_transportation > ground_transport_facility_or_service,1,travel_and_transportation, -public_transit_facility_or_service,Public Transit Facility or Service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,2,travel_and_transportation, -rail_facility_or_service,Rail Facility or Service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,2,travel_and_transportation, -train_station,Train Station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,3,travel_and_transportation, -rest_stop,Rest Stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,3,travel_and_transportation, -toll_station,Toll Station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,3,travel_and_transportation, +public_transit_facility_or_service,Public Transit Facility or Service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,2,travel_and_transportation,7875 +rail_facility_or_service,Rail Facility or Service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,2,travel_and_transportation,221 +train_station,Train Station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,3,travel_and_transportation,98033 +rest_stop,Rest Stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,3,travel_and_transportation,549 +toll_station,Toll Station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,3,travel_and_transportation,65 taxi_or_ride_share_service,Taxi or Ride Share Service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,2,travel_and_transportation, -parking,Parking,travel_and_transportation > parking,1,travel_and_transportation, -park_and_ride,Park and Ride,travel_and_transportation > parking > park_and_ride,2,travel_and_transportation, +parking,Parking,travel_and_transportation > parking,1,travel_and_transportation,143540 +park_and_ride,Park and Ride,travel_and_transportation > parking > park_and_ride,2,travel_and_transportation,164 parking_garage,Parking Garage,travel_and_transportation > parking > parking_garage,2,travel_and_transportation, parking_lot,Parking Lot,travel_and_transportation > parking > parking_lot,2,travel_and_transportation, -travel_service,Travel Service,travel_and_transportation > travel_service,1,travel_and_transportation, +travel_service,Travel Service,travel_and_transportation > travel_service,1,travel_and_transportation,395616 vehicle_service,Vehicle Service,travel_and_transportation > vehicle_service,1,travel_and_transportation, -automotive_service,Automotive Service,travel_and_transportation > vehicle_service > automotive_service,2,travel_and_transportation, +automotive_service,Automotive Service,travel_and_transportation > vehicle_service > automotive_service,2,travel_and_transportation,172801 water_transport_facility_or_service,Water Transport Facility or Service,travel_and_transportation > water_transport_facility_or_service,1,travel_and_transportation, -ferry_service,Ferry Service,travel_and_transportation > water_transport_facility_or_service > ferry_service,2,travel_and_transportation, -water_taxi_service,Water Taxi Service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,2,travel_and_transportation, +ferry_service,Ferry Service,travel_and_transportation > water_transport_facility_or_service > ferry_service,2,travel_and_transportation,369 +water_taxi_service,Water Taxi Service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,2,travel_and_transportation,2 diff --git a/static/taxonomy/2026-09-16.0/legacy_crosswalk.csv b/static/taxonomy/2026-08-19.0/legacy_crosswalk.csv similarity index 100% rename from static/taxonomy/2026-09-16.0/legacy_crosswalk.csv rename to static/taxonomy/2026-08-19.0/legacy_crosswalk.csv diff --git a/static/taxonomy/2026-09-16.0/taxonomy.csv b/static/taxonomy/2026-08-19.0/taxonomy.csv similarity index 80% rename from static/taxonomy/2026-09-16.0/taxonomy.csv rename to static/taxonomy/2026-08-19.0/taxonomy.csv index b35423185..71084846e 100644 --- a/static/taxonomy/2026-09-16.0/taxonomy.csv +++ b/static/taxonomy/2026-08-19.0/taxonomy.csv @@ -1,203 +1,203 @@ path,name,displayName,level,group,isBasic,basicCategory,count -arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,0,arts_and_entertainment,true,arts_and_entertainment, +arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,0,arts_and_entertainment,true,arts_and_entertainment,300372 arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,1,arts_and_entertainment,true,amusement_attraction, -arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,2,arts_and_entertainment,true,amusement_park, +arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,2,arts_and_entertainment,true,amusement_park,43182 arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,2,arts_and_entertainment,false,amusement_attraction, -arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,2,arts_and_entertainment,false,amusement_attraction, -arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,2,arts_and_entertainment,false,amusement_attraction, -arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,2,arts_and_entertainment,false,amusement_attraction, +arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,2,arts_and_entertainment,false,amusement_attraction,7 +arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,2,arts_and_entertainment,false,amusement_attraction,3854 +arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,2,arts_and_entertainment,false,amusement_attraction,2780 arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,1,arts_and_entertainment,true,animal_attraction, -arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,2,arts_and_entertainment,true,aquarium, -arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,2,arts_and_entertainment,false,animal_attraction, -arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,2,arts_and_entertainment,true,zoo, -arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,3,arts_and_entertainment,false,zoo, +arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,2,arts_and_entertainment,true,aquarium,6904 +arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,2,arts_and_entertainment,false,animal_attraction,10715 +arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,2,arts_and_entertainment,true,zoo,9589 +arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,3,arts_and_entertainment,false,zoo,2921 arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,3,arts_and_entertainment,false,zoo, -arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,1,arts_and_entertainment,true,arts_and_crafts_space, -arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,2,arts_and_entertainment,true,art_gallery, +arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,1,arts_and_entertainment,true,arts_and_crafts_space,15 +arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,2,arts_and_entertainment,true,art_gallery,150708 arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,2,arts_and_entertainment,false,arts_and_crafts_space, -arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,2,arts_and_entertainment,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,arts_and_entertainment,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,arts_and_entertainment,false,arts_and_crafts_space, +arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,2,arts_and_entertainment,false,arts_and_crafts_space,2481 +arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,Paint and Sip Venue,2,arts_and_entertainment,false,arts_and_crafts_space,313 +arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,Paint Your Own Pottery Venue,2,arts_and_entertainment,false,arts_and_crafts_space,183 arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,2,arts_and_entertainment,false,arts_and_crafts_space, -arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,2,arts_and_entertainment,true,sculpture_statue, -arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,2,arts_and_entertainment,true,street_art, -arts_and_entertainment > event_venue,event_venue,Event Venue,1,arts_and_entertainment,true,event_venue, -arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,2,arts_and_entertainment,false,event_venue, -arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,2,arts_and_entertainment,false,event_venue, -arts_and_entertainment > festival_venue,festival_venue,Festival Venue,1,arts_and_entertainment,true,festival_venue, -arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,2,arts_and_entertainment,true,fairgrounds, -arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,2,arts_and_entertainment,false,festival_venue, -arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,2,arts_and_entertainment,false,festival_venue, +arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,2,arts_and_entertainment,true,sculpture_statue,4327 +arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,2,arts_and_entertainment,true,street_art,1329 +arts_and_entertainment > event_venue,event_venue,Event Venue,1,arts_and_entertainment,true,event_venue,22534 +arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,2,arts_and_entertainment,false,event_venue,19652 +arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,2,arts_and_entertainment,false,event_venue,2303 +arts_and_entertainment > festival_venue,festival_venue,Festival Venue,1,arts_and_entertainment,true,festival_venue,3327 +arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,2,arts_and_entertainment,true,fairgrounds,10464 +arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,2,arts_and_entertainment,false,festival_venue,79 +arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,2,arts_and_entertainment,false,festival_venue,69 arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,1,arts_and_entertainment,true,gaming_venue, -arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,2,arts_and_entertainment,true,arcade, -arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,2,arts_and_entertainment,false,gaming_venue, -arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,2,arts_and_entertainment,false,gaming_venue, -arts_and_entertainment > gaming_venue > casino,casino,Casino,2,arts_and_entertainment,true,casino, -arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,2,arts_and_entertainment,false,gaming_venue, -arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,2,arts_and_entertainment,false,gaming_venue, -arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,2,arts_and_entertainment,false,gaming_venue, -arts_and_entertainment > movie_theater,movie_theater,Movie Theater,1,arts_and_entertainment,true,movie_theater, -arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive-In Theater,2,arts_and_entertainment,false,movie_theater, -arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,2,arts_and_entertainment,false,movie_theater, -arts_and_entertainment > museum,museum,Museum,1,arts_and_entertainment,true,museum, -arts_and_entertainment > museum > art_museum,art_museum,Art Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > history_museum,history_museum,History Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > military_museum,military_museum,Military Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > national_museum,national_museum,National Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > science_museum,science_museum,Science Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,3,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,2,arts_and_entertainment,false,museum, -arts_and_entertainment > museum > state_museum,state_museum,State Museum,2,arts_and_entertainment,false,museum, +arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,2,arts_and_entertainment,true,arcade,29707 +arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,2,arts_and_entertainment,false,gaming_venue,17181 +arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,2,arts_and_entertainment,false,gaming_venue,3073 +arts_and_entertainment > gaming_venue > casino,casino,Casino,2,arts_and_entertainment,true,casino,31753 +arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,2,arts_and_entertainment,false,gaming_venue,9907 +arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,2,arts_and_entertainment,false,gaming_venue,15960 +arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,2,arts_and_entertainment,false,gaming_venue,17 +arts_and_entertainment > movie_theater,movie_theater,Movie Theater,1,arts_and_entertainment,true,movie_theater,59201 +arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive-In Theater,2,arts_and_entertainment,false,movie_theater,3110 +arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,2,arts_and_entertainment,false,movie_theater,65 +arts_and_entertainment > museum,museum,Museum,1,arts_and_entertainment,true,museum,76188 +arts_and_entertainment > museum > art_museum,art_museum,Art Museum,2,arts_and_entertainment,false,museum,13036 +arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,3,arts_and_entertainment,false,museum,108 +arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,3,arts_and_entertainment,false,museum,69 +arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,3,arts_and_entertainment,false,museum,1189 +arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,3,arts_and_entertainment,false,museum,131 +arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,3,arts_and_entertainment,false,museum,184 +arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,3,arts_and_entertainment,false,museum,407 +arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,3,arts_and_entertainment,false,museum,967 +arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,3,arts_and_entertainment,false,museum,209 +arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,3,arts_and_entertainment,false,museum,418 +arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,2,arts_and_entertainment,false,museum,607 +arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,2,arts_and_entertainment,false,museum,1571 +arts_and_entertainment > museum > history_museum,history_museum,History Museum,2,arts_and_entertainment,false,museum,36377 +arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,3,arts_and_entertainment,false,museum,513 +arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,3,arts_and_entertainment,false,museum,2362 +arts_and_entertainment > museum > military_museum,military_museum,Military Museum,2,arts_and_entertainment,false,museum,34 +arts_and_entertainment > museum > national_museum,national_museum,National Museum,2,arts_and_entertainment,false,museum,8 +arts_and_entertainment > museum > science_museum,science_museum,Science Museum,2,arts_and_entertainment,false,museum,2934 +arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,3,arts_and_entertainment,false,museum,494 +arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,2,arts_and_entertainment,false,museum,475 +arts_and_entertainment > museum > state_museum,state_museum,State Museum,2,arts_and_entertainment,false,museum,201 arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,1,arts_and_entertainment,true,nightlife_venue, -arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,2,arts_and_entertainment,true,adult_entertainment_venue, -arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,3,arts_and_entertainment,false,adult_entertainment_venue, -arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,3,arts_and_entertainment,false,adult_entertainment_venue, -arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,2,arts_and_entertainment,false,nightlife_venue, -arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,2,arts_and_entertainment,false,nightlife_venue, -arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,2,arts_and_entertainment,true,dance_club, -arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,3,arts_and_entertainment,false,dance_club, -arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,1,arts_and_entertainment,true,performing_arts_venue, +arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,2,arts_and_entertainment,true,adult_entertainment_venue,11462 +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,3,arts_and_entertainment,false,adult_entertainment_venue,218 +arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,3,arts_and_entertainment,false,adult_entertainment_venue,795 +arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,2,arts_and_entertainment,false,nightlife_venue,16 +arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,2,arts_and_entertainment,false,nightlife_venue,8 +arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,2,arts_and_entertainment,true,dance_club,85287 +arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,3,arts_and_entertainment,false,dance_club,1210 +arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,1,arts_and_entertainment,true,performing_arts_venue,20329 arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,2,arts_and_entertainment,false,performing_arts_venue, -arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,2,arts_and_entertainment,false,performing_arts_venue, -arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,2,arts_and_entertainment,true,comedy_club, -arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,2,arts_and_entertainment,true,music_venue, -arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,3,arts_and_entertainment,false,music_venue, -arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,3,arts_and_entertainment,false,music_venue, -arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,3,arts_and_entertainment,false,music_venue, -arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,3,arts_and_entertainment,false,music_venue, -arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,3,arts_and_entertainment,false,music_venue, -arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,2,arts_and_entertainment,true,theatre_venue, -arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,3,arts_and_entertainment,false,theatre_venue, +arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,2,arts_and_entertainment,false,performing_arts_venue,36 +arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,2,arts_and_entertainment,true,comedy_club,7335 +arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,2,arts_and_entertainment,true,music_venue,187181 +arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,3,arts_and_entertainment,false,music_venue,420 +arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,3,arts_and_entertainment,false,music_venue,3809 +arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,3,arts_and_entertainment,false,music_venue,3219 +arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,3,arts_and_entertainment,false,music_venue,29368 +arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,3,arts_and_entertainment,false,music_venue,1242 +arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,2,arts_and_entertainment,true,theatre_venue,53142 +arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,3,arts_and_entertainment,false,theatre_venue,352 arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,1,arts_and_entertainment,true,rural_attraction, -arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,2,arts_and_entertainment,false,rural_attraction, +arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,2,arts_and_entertainment,false,rural_attraction,131 arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,2,arts_and_entertainment,false,rural_attraction, -arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,2,arts_and_entertainment,false,rural_attraction, -arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,2,arts_and_entertainment,false,rural_attraction, -arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,2,arts_and_entertainment,true,rodeo, +arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,2,arts_and_entertainment,false,rural_attraction,91 +arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,2,arts_and_entertainment,false,rural_attraction,145 +arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,2,arts_and_entertainment,true,rodeo,2190 arts_and_entertainment > science_attraction,science_attraction,Science Attraction,1,arts_and_entertainment,true,science_attraction, -arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,2,arts_and_entertainment,true,makerspace, -arts_and_entertainment > science_attraction > observatory,observatory,Observatory,2,arts_and_entertainment,false,science_attraction, -arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,2,arts_and_entertainment,true,planetarium, -arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,2,arts_and_entertainment,false,science_attraction, +arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,2,arts_and_entertainment,true,makerspace,128 +arts_and_entertainment > science_attraction > observatory,observatory,Observatory,2,arts_and_entertainment,false,science_attraction,2998 +arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,2,arts_and_entertainment,true,planetarium,1372 +arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,2,arts_and_entertainment,false,science_attraction,105 arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,3,arts_and_entertainment,false,science_attraction, -arts_and_entertainment > social_club,social_club,Social Club,1,arts_and_entertainment,true,social_club, -arts_and_entertainment > social_club > country_club,country_club,Country Club,2,arts_and_entertainment,true,country_club, -arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,2,arts_and_entertainment,false,social_club, -arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,2,arts_and_entertainment,false,social_club, -arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,1,arts_and_entertainment,true,spiritual_advising, -arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,2,arts_and_entertainment,true,astrological_advising, -arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,2,arts_and_entertainment,false,spiritual_advising, -arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,2,arts_and_entertainment,true,psychic_advising, -arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,1,arts_and_entertainment,true,stadium_arena, +arts_and_entertainment > social_club,social_club,Social Club,1,arts_and_entertainment,true,social_club,9343 +arts_and_entertainment > social_club > country_club,country_club,Country Club,2,arts_and_entertainment,true,country_club,989 +arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,2,arts_and_entertainment,false,social_club,2248 +arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,2,arts_and_entertainment,false,social_club,2871 +arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,1,arts_and_entertainment,true,spiritual_advising,234 +arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,2,arts_and_entertainment,true,astrological_advising,7919 +arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,2,arts_and_entertainment,false,spiritual_advising,74 +arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,2,arts_and_entertainment,true,psychic_advising,16324 +arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,1,arts_and_entertainment,true,stadium_arena,92811 arts_and_entertainment > stadium_arena > arena,arena,Arena,2,arts_and_entertainment,false,stadium_arena, arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,2,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,3,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,1,arts_and_entertainment,true,ticket_office_or_booth, -community_and_government,community_and_government,Community and Government,0,community_and_government,true,community_and_government, -community_and_government > civic_organization,civic_organization,Civic Organization,1,community_and_government,true,civic_organization, -community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,2,community_and_government,false,civic_organization, -community_and_government > civic_organization > civic_center,civic_center,Civic Center,2,community_and_government,true,civic_center, -community_and_government > civic_organization > labor_union,labor_union,Labor Union,2,community_and_government,true,labor_union, -community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,2,community_and_government,false,civic_organization, -community_and_government > civic_organization > political_organization,political_organization,Political Organization,2,community_and_government,true,political_organization, -community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,3,community_and_government,false,political_organization, -community_and_government > government_office,government_office,Government Office,1,community_and_government,true,government_office, -community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,2,community_and_government,false,government_office, -community_and_government > government_office > courthouse,courthouse,Courthouse,2,community_and_government,true,courthouse, -community_and_government > government_office > embassy,embassy,Embassy,2,community_and_government,true,embassy, +arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,3,arts_and_entertainment,false,stadium_arena,1671 +arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,3,arts_and_entertainment,false,stadium_arena,861 +arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,3,arts_and_entertainment,false,stadium_arena,5315 +arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,3,arts_and_entertainment,false,stadium_arena,9034 +arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,3,arts_and_entertainment,false,stadium_arena,1304 +arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,3,arts_and_entertainment,false,stadium_arena,572 +arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,3,arts_and_entertainment,false,stadium_arena,7758 +arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,3,arts_and_entertainment,false,stadium_arena,699 +arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,3,arts_and_entertainment,false,stadium_arena,2042 +arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,1,arts_and_entertainment,true,ticket_office_or_booth,1059 +community_and_government,community_and_government,Community and Government,0,community_and_government,true,community_and_government,232773 +community_and_government > civic_organization,civic_organization,Civic Organization,1,community_and_government,true,civic_organization,53685 +community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,2,community_and_government,false,civic_organization,114253 +community_and_government > civic_organization > civic_center,civic_center,Civic Center,2,community_and_government,true,civic_center,559 +community_and_government > civic_organization > labor_union,labor_union,Labor Union,2,community_and_government,true,labor_union,28433 +community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,2,community_and_government,false,civic_organization,57140 +community_and_government > civic_organization > political_organization,political_organization,Political Organization,2,community_and_government,true,political_organization,26869 +community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,3,community_and_government,false,political_organization,15780 +community_and_government > government_office,government_office,Government Office,1,community_and_government,true,government_office,522622 +community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,2,community_and_government,false,government_office,1909 +community_and_government > government_office > courthouse,courthouse,Courthouse,2,community_and_government,true,courthouse,34811 +community_and_government > government_office > embassy,embassy,Embassy,2,community_and_government,true,embassy,16931 community_and_government > government_office > government_department,government_department,Government Department,2,community_and_government,true,government_department, -community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,3,community_and_government,false,government_department, -community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,3,community_and_government,false,government_department, -community_and_government > government_office > government_department > health_department,health_department,Health Department,3,community_and_government,false,government_department, -community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,2,community_and_government,false,government_office, -community_and_government > government_office > national_security_service,national_security_service,National Security Service,2,community_and_government,false,government_office, -community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,2,community_and_government,false,government_office, -community_and_government > government_office > pension_office,pension_office,Pension Office,2,community_and_government,false,government_office, -community_and_government > government_office > registry_office,registry_office,Registry Office,2,community_and_government,false,government_office, -community_and_government > government_office > social_security_service,social_security_service,Social Security Service,2,community_and_government,false,government_office, -community_and_government > government_office > tax_office,tax_office,Tax Office,2,community_and_government,false,government_office, -community_and_government > government_office > town_hall,town_hall,Town Hall,2,community_and_government,false,government_office, -community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,2,community_and_government,false,government_office, -community_and_government > military_site,military_site,Military Site,1,community_and_government,true,military_site, +community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,3,community_and_government,false,government_department,9426 +community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,3,community_and_government,false,government_department,171 +community_and_government > government_office > government_department > health_department,health_department,Health Department,3,community_and_government,false,government_department,5845 +community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,2,community_and_government,false,government_office,778 +community_and_government > government_office > national_security_service,national_security_service,National Security Service,2,community_and_government,false,government_office,7 +community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,2,community_and_government,false,government_office,10 +community_and_government > government_office > pension_office,pension_office,Pension Office,2,community_and_government,false,government_office,316 +community_and_government > government_office > registry_office,registry_office,Registry Office,2,community_and_government,false,government_office,222 +community_and_government > government_office > social_security_service,social_security_service,Social Security Service,2,community_and_government,false,government_office,1081 +community_and_government > government_office > tax_office,tax_office,Tax Office,2,community_and_government,false,government_office,2046 +community_and_government > government_office > town_hall,town_hall,Town Hall,2,community_and_government,false,government_office,88703 +community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,2,community_and_government,false,government_office,147 +community_and_government > military_site,military_site,Military Site,1,community_and_government,true,military_site,35584 community_and_government > military_site > military_base,military_base,Military Base,2,community_and_government,true,military_base, community_and_government > military_site > military_office,military_office,Military Office,2,community_and_government,true,military_office, community_and_government > public_facility,public_facility,Public Facility,1,community_and_government,true,public_facility, -community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,2,community_and_government,true,public_fountain, -community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,3,community_and_government,false,public_fountain, +community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,2,community_and_government,true,public_fountain,11910 +community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,3,community_and_government,false,public_fountain,108 community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,2,community_and_government,true,public_pathway, -community_and_government > public_facility > public_phone,public_phone,Public Phone,2,community_and_government,false,public_facility, -community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,2,community_and_government,true,public_plaza, -community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,2,community_and_government,true,public_restroom, +community_and_government > public_facility > public_phone,public_phone,Public Phone,2,community_and_government,false,public_facility,2 +community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,2,community_and_government,true,public_plaza,62362 +community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,2,community_and_government,true,public_restroom,4616 community_and_government > public_safety_service,public_safety_service,Public Safety Service,1,community_and_government,true,public_safety_service, -community_and_government > public_safety_service > fire_station,fire_station,Fire Station,2,community_and_government,true,fire_station, -community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,2,community_and_government,true,jail_or_prison, -community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,3,community_and_government,false,jail_or_prison, -community_and_government > public_safety_service > police_station,police_station,Police Station,2,community_and_government,true,police_station, -community_and_government > public_utility,public_utility,Public Utility,1,community_and_government,true,public_utility, -community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,2,community_and_government,true,electric_utility_provider, -community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,2,community_and_government,false,public_utility, -community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,2,community_and_government,true,natural_gas_utility_provider, -community_and_government > public_utility > septic_service,septic_service,Septic Service,2,community_and_government,false,public_utility, -community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,2,community_and_government,true,water_utility_provider, -community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,1,community_and_government,true,social_or_community_service, -community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > community_center,community_center,Community Center,2,community_and_government,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,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,2,community_and_government,true,food_bank, -community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,2,community_and_government,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,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,2,community_and_government,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,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,2,community_and_government,false,social_or_community_service, -community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,2,community_and_government,true,youth_organization, +community_and_government > public_safety_service > fire_station,fire_station,Fire Station,2,community_and_government,true,fire_station,83675 +community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,2,community_and_government,true,jail_or_prison,9083 +community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,3,community_and_government,false,jail_or_prison,110 +community_and_government > public_safety_service > police_station,police_station,Police Station,2,community_and_government,true,police_station,97337 +community_and_government > public_utility,public_utility,Public Utility,1,community_and_government,true,public_utility,14646 +community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,2,community_and_government,true,electric_utility_provider,23290 +community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,2,community_and_government,false,public_utility,48292 +community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,2,community_and_government,true,natural_gas_utility_provider,10233 +community_and_government > public_utility > septic_service,septic_service,Septic Service,2,community_and_government,false,public_utility,7980 +community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,2,community_and_government,true,water_utility_provider,17658 +community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,1,community_and_government,true,social_or_community_service,821250 +community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,2,community_and_government,false,social_or_community_service,1522 +community_and_government > social_or_community_service > community_center,community_center,Community Center,2,community_and_government,true,community_center,106008 +community_and_government > social_or_community_service > disability_services_and_support_organization,disability_services_and_support_organization,Disability Services and Support Organization,2,community_and_government,false,social_or_community_service,23286 +community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,2,community_and_government,true,food_bank,8346 +community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,2,community_and_government,false,social_or_community_service,1922 +community_and_government > social_or_community_service > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,Gay and Lesbian Services Organization,2,community_and_government,false,social_or_community_service,163 +community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,2,community_and_government,false,social_or_community_service,7095 +community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,2,community_and_government,false,social_or_community_service,9404 +community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,2,community_and_government,false,social_or_community_service,9413 +community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,2,community_and_government,false,social_or_community_service,17107 +community_and_government > social_or_community_service > social_and_human_service,social_and_human_service,Social and Human Service,2,community_and_government,false,social_or_community_service,16422 +community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,2,community_and_government,false,social_or_community_service,604 +community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,2,community_and_government,false,social_or_community_service,1003 +community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,2,community_and_government,true,youth_organization,57839 cultural_and_historic,cultural_and_historic,Cultural and Historic,0,cultural_and_historic,true,cultural_and_historic, -cultural_and_historic > cultural_center,cultural_center,Cultural Center,1,cultural_and_historic,true,cultural_center, -cultural_and_historic > historic_site,historic_site,Historic Site,1,cultural_and_historic,true,historic_site, -cultural_and_historic > historic_site > castle,castle,Castle,2,cultural_and_historic,true,castle, -cultural_and_historic > historic_site > fort,fort,Fort,2,cultural_and_historic,true,fort, -cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,2,cultural_and_historic,false,historic_site, -cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,2,cultural_and_historic,false,historic_site, -cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,2,cultural_and_historic,true,lighthouse, -cultural_and_historic > historic_site > palace,palace,Palace,2,cultural_and_historic,false,historic_site, -cultural_and_historic > historic_site > ruin,ruin,Ruin,2,cultural_and_historic,false,historic_site, +cultural_and_historic > cultural_center,cultural_center,Cultural Center,1,cultural_and_historic,true,cultural_center,51870 +cultural_and_historic > historic_site,historic_site,Historic Site,1,cultural_and_historic,true,historic_site,998562 +cultural_and_historic > historic_site > castle,castle,Castle,2,cultural_and_historic,true,castle,15319 +cultural_and_historic > historic_site > fort,fort,Fort,2,cultural_and_historic,true,fort,2330 +cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,2,cultural_and_historic,false,historic_site,2116 +cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,2,cultural_and_historic,false,historic_site,10 +cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,2,cultural_and_historic,true,lighthouse,3747 +cultural_and_historic > historic_site > palace,palace,Palace,2,cultural_and_historic,false,historic_site,5324 +cultural_and_historic > historic_site > ruin,ruin,Ruin,2,cultural_and_historic,false,historic_site,29 cultural_and_historic > memorial_site,memorial_site,Memorial Site,1,cultural_and_historic,true,memorial_site, -cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,2,cultural_and_historic,true,cemetery, -cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,2,cultural_and_historic,false,memorial_site, -cultural_and_historic > memorial_site > monument,monument,Monument,2,cultural_and_historic,true,monument, -cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,1,cultural_and_historic,true,place_of_worship, -cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,2,cultural_and_historic,true,buddhist_place_of_worship, +cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,2,cultural_and_historic,true,cemetery,3078 +cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,2,cultural_and_historic,false,memorial_site,126 +cultural_and_historic > memorial_site > monument,monument,Monument,2,cultural_and_historic,true,monument,46824 +cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,1,cultural_and_historic,true,place_of_worship,1408 +cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,2,cultural_and_historic,true,buddhist_place_of_worship,110363 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,buddhist_place_of_worship, -cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,2,cultural_and_historic,true,christian_place_of_worship, +cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,2,cultural_and_historic,true,christian_place_of_worship,862941 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship, @@ -214,36 +214,36 @@ cultural_and_historic > place_of_worship > christian_place_of_worship > oriental 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,42812 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,24881 +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,cultural_and_historic,false,christian_place_of_worship,103210 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,42876 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,3185 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,135457 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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship, -cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,2,cultural_and_historic,true,hindu_place_of_worship, +cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,2,cultural_and_historic,true,hindu_place_of_worship,128014 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,hindu_place_of_worship, -cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,2,cultural_and_historic,true,jewish_place_of_worship, +cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,2,cultural_and_historic,true,jewish_place_of_worship,8295 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,jewish_place_of_worship, -cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,2,cultural_and_historic,true,muslim_place_of_worship, +cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,2,cultural_and_historic,true,muslim_place_of_worship,122811 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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,muslim_place_of_worship, -cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,2,cultural_and_historic,false,place_of_worship, +cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,2,cultural_and_historic,false,place_of_worship,5325 cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,1,cultural_and_historic,true,religious_landmark, cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,2,cultural_and_historic,false,religious_landmark, cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, @@ -252,9 +252,9 @@ cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_ cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, cultural_and_historic > religious_landmark > shrine,shrine,Shrine,2,cultural_and_historic,false,religious_landmark, cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,3,cultural_and_historic,false,religious_landmark, +cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,3,cultural_and_historic,false,religious_landmark,7 cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_organization,religious_organization,Religious Organization,1,cultural_and_historic,true,religious_organization, +cultural_and_historic > religious_organization,religious_organization,Religious Organization,1,cultural_and_historic,true,religious_organization,388911 cultural_and_historic > religious_organization > convent,convent,Convent,2,cultural_and_historic,false,religious_organization, cultural_and_historic > religious_organization > monastery,monastery,Monastery,2,cultural_and_historic,false,religious_organization, cultural_and_historic > religious_organization > seminary,seminary,Seminary,2,cultural_and_historic,false,religious_organization, @@ -262,211 +262,211 @@ cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center, cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,2,cultural_and_historic,false,religious_retreat_or_center, cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,2,cultural_and_historic,false,religious_retreat_or_center, cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,2,cultural_and_historic,false,religious_retreat_or_center, -education,education,Education,0,education,true,education, +education,education,Education,0,education,true,education,437216 education > education_office,education_office,Education Office,1,education,true,education_office, -education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,2,education,false,education_office, -education > education_office > school_district_office,school_district_office,School District Office,2,education,true,school_district_office, +education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,2,education,false,education_office,463 +education > education_office > school_district_office,school_district_office,School District Office,2,education,true,school_district_office,1983 education > educational_facility,educational_facility,Educational Facility,1,education,true,educational_facility, education > educational_facility > campus,campus,Campus,2,education,true,campus, -education > educational_facility > campus_building,campus_building,Campus Building,2,education,true,campus_building, -education > educational_facility > campus_building > student_union,student_union,Student Union,3,education,false,campus_building, -education > educational_facility > educational_camp,educational_camp,Educational Camp,2,education,false,educational_facility, -education > educational_service,educational_service,Educational Service,1,education,true,educational_service, -education > educational_service > after_school_program,after_school_program,After School Program,2,education,false,educational_service, -education > educational_service > archaeological_service,archaeological_service,Archaeological Service,2,education,false,educational_service, -education > educational_service > college_counseling,college_counseling,College Counseling,2,education,false,educational_service, -education > educational_service > test_preparation,test_preparation,Test Preparation,2,education,false,educational_service, -education > educational_service > tutoring_service,tutoring_service,Tutoring Service,2,education,true,tutoring_service, -education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,3,education,false,tutoring_service, -education > library,library,Library,1,education,true,library, +education > educational_facility > campus_building,campus_building,Campus Building,2,education,true,campus_building,82488 +education > educational_facility > campus_building > student_union,student_union,Student Union,3,education,false,campus_building,3458 +education > educational_facility > educational_camp,educational_camp,Educational Camp,2,education,false,educational_facility,7235 +education > educational_service,educational_service,Educational Service,1,education,true,educational_service,69509 +education > educational_service > after_school_program,after_school_program,After School Program,2,education,false,educational_service,2169 +education > educational_service > archaeological_service,archaeological_service,Archaeological Service,2,education,false,educational_service,1605 +education > educational_service > college_counseling,college_counseling,College Counseling,2,education,false,educational_service,289 +education > educational_service > test_preparation,test_preparation,Test Preparation,2,education,false,educational_service,18205 +education > educational_service > tutoring_service,tutoring_service,Tutoring Service,2,education,true,tutoring_service,87959 +education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,3,education,false,tutoring_service,1495 +education > library,library,Library,1,education,true,library,136849 education > place_of_learning,place_of_learning,Place of Learning,1,education,true,place_of_learning, education > place_of_learning > academy,academy,Academy,2,education,true,academy, -education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,3,education,false,academy, -education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,2,education,false,place_of_learning, +education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,3,education,false,academy,62 +education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,2,education,false,place_of_learning,8420 education > place_of_learning > class_venue,class_venue,Class Venue,2,education,true,class_venue, -education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,3,education,false,class_venue, -education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,4,education,false,class_venue, -education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,4,education,false,class_venue, -education > place_of_learning > college_university,college_university,College University,2,education,true,college_university, -education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,3,education,false,college_university, -education > place_of_learning > college_university > business_school,business_school,Business School,3,education,false,college_university, -education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,3,education,false,college_university, -education > place_of_learning > college_university > law_school,law_school,Law School,3,education,false,college_university, -education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,3,education,false,college_university, -education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,4,education,false,college_university, -education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,4,education,false,college_university, -education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,4,education,false,college_university, -education > place_of_learning > college_university > science_school,science_school,Science School,3,education,false,college_university, -education > place_of_learning > school,school,School,2,education,false,place_of_learning, -education > place_of_learning > school > charter_school,charter_school,Charter School,3,education,false,place_of_learning, -education > place_of_learning > school > elementary_school,elementary_school,Elementary School,3,education,true,elementary_school, -education > place_of_learning > school > high_school,high_school,High School,3,education,true,high_school, +education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,3,education,false,class_venue,8 +education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,4,education,false,class_venue,9 +education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,4,education,false,class_venue,21 +education > place_of_learning > college_university,college_university,College University,2,education,true,college_university,365741 +education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,3,education,false,college_university,84 +education > place_of_learning > college_university > business_school,business_school,Business School,3,education,false,college_university,1033 +education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,3,education,false,college_university,521 +education > place_of_learning > college_university > law_school,law_school,Law School,3,education,false,college_university,433 +education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,3,education,false,college_university,300 +education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,4,education,false,college_university,318 +education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,4,education,false,college_university,31 +education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,4,education,false,college_university,2 +education > place_of_learning > college_university > science_school,science_school,Science School,3,education,false,college_university,59 +education > place_of_learning > school,school,School,2,education,false,place_of_learning,646351 +education > place_of_learning > school > charter_school,charter_school,Charter School,3,education,false,place_of_learning,561 +education > place_of_learning > school > elementary_school,elementary_school,Elementary School,3,education,true,elementary_school,423059 +education > place_of_learning > school > high_school,high_school,High School,3,education,true,high_school,168990 education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,3,education,true,kindergarten, -education > place_of_learning > school > middle_school,middle_school,Middle School,3,education,true,middle_school, -education > place_of_learning > school > montessori_school,montessori_school,Montessori School,3,education,false,place_of_learning, -education > place_of_learning > school > preschool,preschool,Preschool,3,education,true,preschool, -education > place_of_learning > school > private_school,private_school,Private School,3,education,false,place_of_learning, -education > place_of_learning > school > public_school,public_school,Public School,3,education,false,place_of_learning, -education > place_of_learning > school > religious_school,religious_school,Religious School,3,education,false,place_of_learning, -education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,3,education,false,place_of_learning, -education > place_of_learning > specialty_school,specialty_school,Specialty School,2,education,true,specialty_school, -education > place_of_learning > specialty_school > art_school,art_school,Art School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,3,education,false,specialty_school, -education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,3,education,false,specialty_school, -education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,3,education,false,specialty_school, -education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,3,education,false,specialty_school, -education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,3,education,false,specialty_school, -education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,3,education,false,specialty_school, -education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,3,education,false,specialty_school, -education > place_of_learning > specialty_school > language_school,language_school,Language School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > music_school,music_school,Music School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,3,education,false,specialty_school, -education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,3,education,false,specialty_school, -education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,3,education,false,specialty_school, -education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,3,education,false,specialty_school, -education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,3,education,false,specialty_school, -education > research_institute,research_institute,Research Institute,1,education,true,research_institute, -education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,2,education,false,research_institute, -education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,2,education,false,research_institute, -food_and_drink,food_and_drink,Food and Drink,0,food_and_drink,true,food_and_drink, +education > place_of_learning > school > middle_school,middle_school,Middle School,3,education,true,middle_school,66983 +education > place_of_learning > school > montessori_school,montessori_school,Montessori School,3,education,false,place_of_learning,1041 +education > place_of_learning > school > preschool,preschool,Preschool,3,education,true,preschool,282188 +education > place_of_learning > school > private_school,private_school,Private School,3,education,false,place_of_learning,72921 +education > place_of_learning > school > public_school,public_school,Public School,3,education,false,place_of_learning,51347 +education > place_of_learning > school > religious_school,religious_school,Religious School,3,education,false,place_of_learning,26285 +education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,3,education,false,place_of_learning,18 +education > place_of_learning > specialty_school,specialty_school,Specialty School,2,education,true,specialty_school,52024 +education > place_of_learning > specialty_school > art_school,art_school,Art School,3,education,false,specialty_school,36062 +education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,3,education,false,specialty_school,1063 +education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,3,education,false,specialty_school,104 +education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,3,education,false,specialty_school,208 +education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,3,education,false,specialty_school,38 +education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,3,education,false,specialty_school,31690 +education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,3,education,false,specialty_school,10204 +education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,3,education,false,specialty_school,13188 +education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,3,education,false,specialty_school,1030 +education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,3,education,false,specialty_school,631 +education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,3,education,false,specialty_school,103912 +education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,3,education,false,specialty_school,49 +education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,3,education,false,specialty_school,1203 +education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,3,education,false,specialty_school,3788 +education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,3,education,false,specialty_school,10046 +education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,3,education,false,specialty_school,710 +education > place_of_learning > specialty_school > language_school,language_school,Language School,3,education,false,specialty_school,90099 +education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,3,education,false,specialty_school,2312 +education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,3,education,false,specialty_school,10228 +education > place_of_learning > specialty_school > music_school,music_school,Music School,3,education,false,specialty_school,69335 +education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,3,education,false,specialty_school,6962 +education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,3,education,false,specialty_school,174 +education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,3,education,false,specialty_school,114 +education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,3,education,false,specialty_school,183 +education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,3,education,false,specialty_school,1107 +education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,3,education,false,specialty_school,1781 +education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,3,education,false,specialty_school,48238 +education > research_institute,research_institute,Research Institute,1,education,true,research_institute,3210 +education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,2,education,false,research_institute,18836 +education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,2,education,false,research_institute,21642 +food_and_drink,food_and_drink,Food and Drink,0,food_and_drink,true,food_and_drink,98464 food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,1,food_and_drink,true,alcoholic_beverage_venue, -food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,2,food_and_drink,true,bar, -food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,4,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,3,food_and_drink,false,bar, -food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,2,food_and_drink,false,alcoholic_beverage_venue, -food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,2,food_and_drink,true,brewery, -food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,2,food_and_drink,false,alcoholic_beverage_venue, -food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,2,food_and_drink,true,distillery, -food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,2,food_and_drink,true,lounge, -food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,3,food_and_drink,false,lounge, -food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,2,food_and_drink,true,winery, -food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,3,food_and_drink,false,winery, +food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,2,food_and_drink,true,bar,644080 +food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,3,food_and_drink,false,bar,140 +food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,3,food_and_drink,false,bar,451 +food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,3,food_and_drink,false,bar,23997 +food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,3,food_and_drink,false,bar,240 +food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,3,food_and_drink,false,bar,535 +food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,3,food_and_drink,false,bar,46327 +food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,3,food_and_drink,false,bar,4649 +food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,3,food_and_drink,false,bar,65 +food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,3,food_and_drink,false,bar,3664 +food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,3,food_and_drink,false,bar,16860 +food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,3,food_and_drink,false,bar,2997 +food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,3,food_and_drink,false,bar,126 +food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,3,food_and_drink,false,bar,144776 +food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,4,food_and_drink,false,bar,6819 +food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,3,food_and_drink,false,bar,13225 +food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,3,food_and_drink,false,bar,2295 +food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,3,food_and_drink,false,bar,26179 +food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,3,food_and_drink,false,bar,1035 +food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,3,food_and_drink,false,bar,1 +food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,3,food_and_drink,false,bar,1814 +food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,3,food_and_drink,false,bar,34745 +food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,2,food_and_drink,false,alcoholic_beverage_venue,16278 +food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,2,food_and_drink,true,brewery,47917 +food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,2,food_and_drink,false,alcoholic_beverage_venue,151 +food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,2,food_and_drink,true,distillery,9919 +food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,2,food_and_drink,true,lounge,52495 +food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,3,food_and_drink,false,lounge,3691 +food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,2,food_and_drink,true,winery,76227 +food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,3,food_and_drink,false,winery,220 food_and_drink > casual_eatery,casual_eatery,Casual Eatery,1,food_and_drink,true,casual_eatery, -food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bakery,bakery,Bakery,2,food_and_drink,false,casual_eatery, +food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,2,food_and_drink,false,casual_eatery,10542 +food_and_drink > casual_eatery > bakery,bakery,Bakery,2,food_and_drink,false,casual_eatery,514933 food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bistro,bistro,Bistro,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > cafe,cafe,Cafe,2,food_and_drink,true,cafe, +food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,3,food_and_drink,false,casual_eatery,15 +food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,3,food_and_drink,false,casual_eatery,57 +food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,3,food_and_drink,false,casual_eatery,785 +food_and_drink > casual_eatery > bistro,bistro,Bistro,2,food_and_drink,false,casual_eatery,4258 +food_and_drink > casual_eatery > cafe,cafe,Cafe,2,food_and_drink,true,cafe,700856 food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,3,food_and_drink,false,cafe, food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,4,food_and_drink,false,cafe, food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,4,food_and_drink,false,cafe, -food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,3,food_and_drink,false,cafe, -food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,3,food_and_drink,false,cafe, -food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > canteen,canteen,Canteen,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > diner,diner,Diner,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,2,food_and_drink,true,fast_food_restaurant, -food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > food_court,food_court,Food Court,2,food_and_drink,true,food_court, -food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,2,food_and_drink,true,food_truck_stand, -food_and_drink > casual_eatery > friterie,friterie,Friterie,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,2,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,2,food_and_drink,false,casual_eatery, -food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,1,food_and_drink,true,non_alcoholic_beverage_venue, -food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,2,food_and_drink,false,non_alcoholic_beverage_venue, -food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,2,food_and_drink,true,coffee_shop, -food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,3,food_and_drink,false,coffee_shop, -food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, -food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, +food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,3,food_and_drink,false,cafe,1236 +food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,3,food_and_drink,false,cafe,22815 +food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,2,food_and_drink,false,casual_eatery,61223 +food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,3,food_and_drink,false,casual_eatery,30157 +food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,3,food_and_drink,false,casual_eatery,119 +food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,3,food_and_drink,false,casual_eatery,322 +food_and_drink > casual_eatery > canteen,canteen,Canteen,2,food_and_drink,false,casual_eatery,2 +food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,2,food_and_drink,false,casual_eatery,75264 +food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,2,food_and_drink,false,casual_eatery,120900 +food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,3,food_and_drink,false,casual_eatery,27896 +food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,3,food_and_drink,false,casual_eatery,30561 +food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,3,food_and_drink,false,casual_eatery,9688 +food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,3,food_and_drink,false,casual_eatery,13542 +food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,3,food_and_drink,false,casual_eatery,174518 +food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,3,food_and_drink,false,casual_eatery,830 +food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,3,food_and_drink,false,casual_eatery,5564 +food_and_drink > casual_eatery > diner,diner,Diner,2,food_and_drink,false,casual_eatery,90273 +food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,2,food_and_drink,true,fast_food_restaurant,409785 +food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,2,food_and_drink,false,casual_eatery,2428 +food_and_drink > casual_eatery > food_court,food_court,Food Court,2,food_and_drink,true,food_court,2101 +food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,2,food_and_drink,true,food_truck_stand,83367 +food_and_drink > casual_eatery > friterie,friterie,Friterie,2,food_and_drink,false,casual_eatery,280 +food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,2,food_and_drink,false,casual_eatery,24221 +food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,2,food_and_drink,false,casual_eatery,527 +food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,2,food_and_drink,false,casual_eatery,90951 +food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,2,food_and_drink,false,casual_eatery,5 +food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,2,food_and_drink,false,casual_eatery,41690 +food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,1,food_and_drink,true,non_alcoholic_beverage_venue,155 +food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,2,food_and_drink,false,non_alcoholic_beverage_venue,39573 +food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,2,food_and_drink,true,coffee_shop,610598 +food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,3,food_and_drink,false,coffee_shop,1610 +food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,2,food_and_drink,false,non_alcoholic_beverage_venue,40 +food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,2,food_and_drink,false,non_alcoholic_beverage_venue,4081 food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, -food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,2,food_and_drink,true,smoothie_juice_bar, -food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,2,food_and_drink,false,non_alcoholic_beverage_venue, -food_and_drink > restaurant,restaurant,Restaurant,1,food_and_drink,true,restaurant, -food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,2,food_and_drink,true,smoothie_juice_bar,62736 +food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,2,food_and_drink,false,non_alcoholic_beverage_venue,59781 +food_and_drink > restaurant,restaurant,Restaurant,1,food_and_drink,true,restaurant,1812921 +food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,2,food_and_drink,false,restaurant,7479 food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,4,food_and_drink,false,restaurant,1600 food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,4,food_and_drink,false,restaurant, food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,4,food_and_drink,false,restaurant,986 +food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,4,food_and_drink,false,restaurant,2829 food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,4,food_and_drink,false,restaurant,217 food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,4,food_and_drink,false,restaurant,303 +food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,4,food_and_drink,false,restaurant,115 +food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,2,food_and_drink,false,restaurant,73045 food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,4,food_and_drink,false,restaurant,2055 food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,4,food_and_drink,false,restaurant,241 food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,4,food_and_drink,false,restaurant,181146 food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,5,food_and_drink,false,restaurant,4953 food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,5,food_and_drink,false,restaurant,615 food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,4,food_and_drink,false,restaurant,348248 +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,5,food_and_drink,false,restaurant,101741 +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,4,food_and_drink,false,restaurant,84105 +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,4,food_and_drink,false,restaurant,751 +food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,4,food_and_drink,false,restaurant,8913 +food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,3,food_and_drink,false,restaurant,45827 food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,4,food_and_drink,false,restaurant,1969 +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,4,food_and_drink,false,restaurant,58 food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,4,food_and_drink,false,restaurant,102723 food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,5,food_and_drink,false,restaurant, @@ -475,1435 +475,1435 @@ food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,5,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,4,food_and_drink,false,restaurant,3240 +food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,4,food_and_drink,false,restaurant,1138 food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,4,food_and_drink,false,restaurant, food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,4,food_and_drink,false,restaurant,641 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,4,food_and_drink,false,restaurant,791 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,4,food_and_drink,false,restaurant,10665 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,4,food_and_drink,false,restaurant,54634 food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,4,food_and_drink,false,restaurant,20 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,4,food_and_drink,false,restaurant,12316 food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,4,food_and_drink,false,restaurant,758 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,4,food_and_drink,false,restaurant,100446 +food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,4,food_and_drink,false,restaurant,35501 +food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,3,food_and_drink,false,restaurant,15 +food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,2,food_and_drink,false,restaurant,88422 +food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,2,food_and_drink,false,restaurant,74087 +food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,3,food_and_drink,false,restaurant,15138 +food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,3,food_and_drink,false,restaurant,284 +food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,2,food_and_drink,false,restaurant,33644 +food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,2,food_and_drink,false,restaurant,2717 +food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,2,food_and_drink,false,restaurant,9536 +food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,2,food_and_drink,false,restaurant,52 +food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,2,food_and_drink,false,restaurant,1115 +food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,2,food_and_drink,false,restaurant,12182 food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,4,food_and_drink,false,restaurant,4715 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,4,food_and_drink,false,restaurant,1355 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,4,food_and_drink,false,restaurant,26141 food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,4,food_and_drink,false,restaurant,1108 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,4,food_and_drink,false,restaurant,2696 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,4,food_and_drink,false,restaurant,9 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,4,food_and_drink,false,restaurant,79 +food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,4,food_and_drink,false,restaurant,1716 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,3,food_and_drink,false,restaurant,3510 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,4,food_and_drink,false,restaurant,35 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,4,food_and_drink,false,restaurant,618 food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,5,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,4,food_and_drink,false,restaurant,614 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,4,food_and_drink,false,restaurant,1495 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,5,food_and_drink,false,restaurant,77 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,4,food_and_drink,false,restaurant,10 +food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,4,food_and_drink,false,restaurant,938 +food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,3,food_and_drink,false,restaurant,49 +food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,4,food_and_drink,false,restaurant,9726 +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,4,food_and_drink,false,restaurant,29021 +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,5,food_and_drink,false,restaurant,1060 +food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,5,food_and_drink,false,restaurant,1219 +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,3,food_and_drink,false,restaurant,26883 +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,4,food_and_drink,false,restaurant,26884 +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,4,food_and_drink,false,restaurant,216908 +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,5,food_and_drink,false,restaurant,185 +food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,5,food_and_drink,false,restaurant,408941 food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,3,food_and_drink,false,restaurant,3318 +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,4,food_and_drink,false,restaurant,6 food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,4,food_and_drink,false,restaurant, food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,4,food_and_drink,false,restaurant,1 food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,4,food_and_drink,false,restaurant, food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,4,food_and_drink,false,restaurant,4096 +food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,4,food_and_drink,false,restaurant,4332 food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,4,food_and_drink,false,restaurant,65306 +food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,5,food_and_drink,false,restaurant,941 +food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,4,food_and_drink,false,restaurant,483 +food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,4,food_and_drink,false,restaurant,239 food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,2,food_and_drink,false,restaurant,3 +food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,2,food_and_drink,false,restaurant,476 +food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,3,food_and_drink,false,restaurant,12746 food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,3,food_and_drink,false,restaurant,2864 +food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,2,food_and_drink,false,restaurant,21756 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,3,food_and_drink,false,restaurant,7779 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,4,food_and_drink,false,restaurant,3109 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,4,food_and_drink,false,restaurant,1029 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,4,food_and_drink,false,restaurant,503 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,4,food_and_drink,false,restaurant,2508 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,4,food_and_drink,false,restaurant,1125 +food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,4,food_and_drink,false,restaurant,63 food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,4,food_and_drink,false,restaurant,12 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,4,food_and_drink,false,restaurant,91 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,4,food_and_drink,false,restaurant,460 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,4,food_and_drink,false,restaurant,806 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,4,food_and_drink,false,restaurant,319 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,4,food_and_drink,false,restaurant,257 +food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,4,food_and_drink,false,restaurant,2477 +food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,3,food_and_drink,false,restaurant,274 +food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,3,food_and_drink,false,restaurant,211662 food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,4,food_and_drink,false,restaurant,4479 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,4,food_and_drink,false,restaurant,153 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,4,food_and_drink,false,restaurant,45435 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,4,food_and_drink,false,restaurant,297 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,4,food_and_drink,false,restaurant,3106 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,4,food_and_drink,false,restaurant,1001 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,4,food_and_drink,false,restaurant,78 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,4,food_and_drink,false,restaurant,9377 food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,4,food_and_drink,false,restaurant,203 +food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,4,food_and_drink,false,restaurant,1698 +food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,3,food_and_drink,false,restaurant,42343 +food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,3,food_and_drink,false,restaurant,7539 +food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,2,food_and_drink,false,restaurant,57 +food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,3,food_and_drink,false,restaurant,112256 +food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,3,food_and_drink,false,restaurant,158132 +food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,3,food_and_drink,false,restaurant,563 +food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,3,food_and_drink,false,restaurant,95913 +food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,3,food_and_drink,false,restaurant,7157 +food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,3,food_and_drink,false,restaurant,2 +food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,3,food_and_drink,false,restaurant,13550 food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,3,food_and_drink,false,restaurant,5 +food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,3,food_and_drink,false,restaurant,62767 food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,3,food_and_drink,false,restaurant,1 +food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,2,food_and_drink,false,restaurant,16804 +food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,3,food_and_drink,false,restaurant,3210 +food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,3,food_and_drink,false,restaurant,414 +food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,3,food_and_drink,false,restaurant,60 +food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,3,food_and_drink,false,restaurant,860 +food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,3,food_and_drink,false,restaurant,1336 +food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,3,food_and_drink,false,restaurant,288 +food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,3,food_and_drink,false,restaurant,17 +food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,3,food_and_drink,false,restaurant,120 +food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,3,food_and_drink,false,restaurant,6717 food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,3,food_and_drink,false,restaurant,2564 +food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,3,food_and_drink,false,restaurant,1230 +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,3,food_and_drink,false,restaurant,35007 +food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,4,food_and_drink,false,restaurant,24870 food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,3,food_and_drink,false,restaurant,66136 +food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,4,food_and_drink,false,restaurant,5107 +food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,4,food_and_drink,false,restaurant,5958 +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,3,food_and_drink,false,restaurant,1053 +food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,4,food_and_drink,false,restaurant,42 food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,3,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,3,food_and_drink,false,restaurant,1787 food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,3,food_and_drink,false,restaurant, food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,4,food_and_drink,false,restaurant, food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,4,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,4,food_and_drink,false,restaurant,1 food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > soul_food,soul_food,Soul Food,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,2,food_and_drink,false,restaurant, +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,3,food_and_drink,false,restaurant,178 +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,4,food_and_drink,false,restaurant,2486 +food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,5,food_and_drink,false,restaurant,4620 +food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,2,food_and_drink,false,restaurant,97 +food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,2,food_and_drink,false,restaurant,12830 +food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,2,food_and_drink,false,restaurant,144973 +food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,3,food_and_drink,false,restaurant,17051 +food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,3,food_and_drink,false,restaurant,43 +food_and_drink > restaurant > soul_food,soul_food,Soul Food,2,food_and_drink,false,restaurant,3087 +food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,2,food_and_drink,false,restaurant,13668 food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,3,food_and_drink,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,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > supper_club,supper_club,Supper Club,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,2,food_and_drink,false,restaurant, -geographic_entities,geographic_entities,Geographic Entities,0,geographic_entities,true,geographic_entities, +food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,3,food_and_drink,false,restaurant,355 +food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,3,food_and_drink,false,restaurant,1227 +food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,3,food_and_drink,false,restaurant,7605 +food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,3,food_and_drink,false,restaurant,9750 +food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,3,food_and_drink,false,restaurant,54 +food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,3,food_and_drink,false,restaurant,1280 +food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,Live and Raw Food Restaurant,3,food_and_drink,false,restaurant,799 +food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,3,food_and_drink,false,restaurant,336 +food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,3,food_and_drink,false,restaurant,4033 +food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,3,food_and_drink,false,restaurant,25774 +food_and_drink > restaurant > supper_club,supper_club,Supper Club,2,food_and_drink,false,restaurant,7 +food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,2,food_and_drink,false,restaurant,23210 +food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,2,food_and_drink,false,restaurant,3 +geographic_entities,geographic_entities,Geographic Entities,0,geographic_entities,true,geographic_entities,176263 geographic_entities > built_feature,built_feature,Built Feature,1,geographic_entities,true,built_feature, -geographic_entities > built_feature > bridge,bridge,Bridge,2,geographic_entities,true,bridge, +geographic_entities > built_feature > bridge,bridge,Bridge,2,geographic_entities,true,bridge,43784 geographic_entities > built_feature > building,building,Building,2,geographic_entities,true,building, -geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,3,geographic_entities,false,building, -geographic_entities > built_feature > dam,dam,Dam,2,geographic_entities,true,dam, -geographic_entities > built_feature > dam > weir,weir,Weir,3,geographic_entities,false,dam, +geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,3,geographic_entities,false,building,3 +geographic_entities > built_feature > dam,dam,Dam,2,geographic_entities,true,dam,2 +geographic_entities > built_feature > dam > weir,weir,Weir,3,geographic_entities,false,dam,2 geographic_entities > built_feature > dock,dock,Dock,2,geographic_entities,true,dock, geographic_entities > built_feature > garden,garden,Garden,2,geographic_entities,true,garden, -geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,3,geographic_entities,false,garden, -geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,3,geographic_entities,false,garden, -geographic_entities > built_feature > lookout,lookout,Lookout,2,geographic_entities,false,built_feature, -geographic_entities > built_feature > marina,marina,Marina,2,geographic_entities,true,marina, -geographic_entities > built_feature > pier,pier,Pier,2,geographic_entities,true,pier, -geographic_entities > built_feature > quay,quay,Quay,2,geographic_entities,false,built_feature, +geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,3,geographic_entities,false,garden,10433 +geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,3,geographic_entities,false,garden,205 +geographic_entities > built_feature > lookout,lookout,Lookout,2,geographic_entities,false,built_feature,19 +geographic_entities > built_feature > marina,marina,Marina,2,geographic_entities,true,marina,19183 +geographic_entities > built_feature > pier,pier,Pier,2,geographic_entities,true,pier,4793 +geographic_entities > built_feature > quay,quay,Quay,2,geographic_entities,false,built_feature,531 geographic_entities > land_feature,land_feature,Land Feature,1,geographic_entities,true,land_feature, -geographic_entities > land_feature > beach,beach,Beach,2,geographic_entities,true,beach, +geographic_entities > land_feature > beach,beach,Beach,2,geographic_entities,true,beach,177958 geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,3,geographic_entities,false,beach, -geographic_entities > land_feature > canyon,canyon,Canyon,2,geographic_entities,true,canyon, -geographic_entities > land_feature > cave,cave,Cave,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > canyon,canyon,Canyon,2,geographic_entities,true,canyon,12 +geographic_entities > land_feature > cave,cave,Cave,2,geographic_entities,false,land_feature,4432 geographic_entities > land_feature > crater,crater,Crater,2,geographic_entities,false,land_feature, -geographic_entities > land_feature > desert,desert,Desert,2,geographic_entities,false,land_feature, -geographic_entities > land_feature > forest,forest,Forest,2,geographic_entities,true,forest, -geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > desert,desert,Desert,2,geographic_entities,false,land_feature,47 +geographic_entities > land_feature > forest,forest,Forest,2,geographic_entities,true,forest,7854 +geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,2,geographic_entities,false,land_feature,1 geographic_entities > land_feature > hill,hill,Hill,2,geographic_entities,true,hill, -geographic_entities > land_feature > island,island,Island,2,geographic_entities,true,island, -geographic_entities > land_feature > mountain,mountain,Mountain,2,geographic_entities,true,mountain, -geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,2,geographic_entities,true,nature_reserve, -geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,2,geographic_entities,false,land_feature, +geographic_entities > land_feature > island,island,Island,2,geographic_entities,true,island,2613 +geographic_entities > land_feature > mountain,mountain,Mountain,2,geographic_entities,true,mountain,131189 +geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,2,geographic_entities,true,nature_reserve,24277 +geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,2,geographic_entities,false,land_feature,10 geographic_entities > land_feature > valley,valley,Valley,2,geographic_entities,true,valley, geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,1,geographic_entities,true,scenic_viewpoint, -geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,2,geographic_entities,false,scenic_viewpoint, +geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,2,geographic_entities,false,scenic_viewpoint,2 geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,2,geographic_entities,false,scenic_viewpoint, geographic_entities > water_feature,water_feature,Water Feature,1,geographic_entities,true,water_feature, -geographic_entities > water_feature > canal,canal,Canal,2,geographic_entities,true,canal, -geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,2,geographic_entities,true,hot_springs, -geographic_entities > water_feature > lake,lake,Lake,2,geographic_entities,true,lake, +geographic_entities > water_feature > canal,canal,Canal,2,geographic_entities,true,canal,2621 +geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,2,geographic_entities,true,hot_springs,5642 +geographic_entities > water_feature > lake,lake,Lake,2,geographic_entities,true,lake,215556 geographic_entities > water_feature > ocean,ocean,Ocean,2,geographic_entities,true,ocean, -geographic_entities > water_feature > river,river,River,2,geographic_entities,true,river, +geographic_entities > water_feature > river,river,River,2,geographic_entities,true,river,134916 geographic_entities > water_feature > sea,sea,Sea,2,geographic_entities,true,sea, -geographic_entities > water_feature > waterfall,waterfall,Waterfall,2,geographic_entities,true,waterfall, -health_care,health_care,Health Care,0,health_care,true,health_care, -health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,1,health_care,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,health_care,false,emergency_or_urgent_care_facility, -health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,2,health_care,true,emergency_department, -health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,2,health_care,true,urgent_care_clinic, -health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk-In Clinic,2,health_care,true,walk_in_clinic, -health_care > hospital,hospital,Hospital,1,health_care,true,hospital, +geographic_entities > water_feature > waterfall,waterfall,Waterfall,2,geographic_entities,true,waterfall,8069 +health_care,health_care,Health Care,0,health_care,true,health_care,601038 +health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,1,health_care,true,emergency_or_urgent_care_facility,3986 +health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,ambulance_or_ems_service,Ambulance or EMS Service,2,health_care,false,emergency_or_urgent_care_facility,24238 +health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,2,health_care,true,emergency_department,13985 +health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,2,health_care,true,urgent_care_clinic,5530 +health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk-In Clinic,2,health_care,true,walk_in_clinic,8395 +health_care > hospital,hospital,Hospital,1,health_care,true,hospital,483089 health_care > hospital > general_hospital,general_hospital,General Hospital,2,health_care,true,general_hospital, health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,2,health_care,true,specialty_hospital, -health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,3,health_care,false,specialty_hospital, +health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,3,health_care,false,specialty_hospital,1175 health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,3,health_care,false,specialty_hospital, health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,3,health_care,false,specialty_hospital, health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,3,health_care,false,specialty_hospital, health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,3,health_care,false,specialty_hospital, health_care > medical_service,medical_service,Medical Service,1,health_care,true,medical_service, -health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,2,health_care,false,medical_service, -health_care > medical_service > ems_training,ems_training,EMS Training,2,health_care,false,medical_service, -health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,2,health_care,false,medical_service, -health_care > medical_service > home_health_care,home_health_care,Home Health Care,2,health_care,false,medical_service, -health_care > medical_service > hospice,hospice,Hospice,2,health_care,false,medical_service, -health_care > medical_service > medical_billing,medical_billing,Medical Billing,2,health_care,false,medical_service, +health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,2,health_care,false,medical_service,8151 +health_care > medical_service > ems_training,ems_training,EMS Training,2,health_care,false,medical_service,394 +health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,2,health_care,false,medical_service,10637 +health_care > medical_service > home_health_care,home_health_care,Home Health Care,2,health_care,false,medical_service,81007 +health_care > medical_service > hospice,hospice,Hospice,2,health_care,false,medical_service,10856 +health_care > medical_service > medical_billing,medical_billing,Medical Billing,2,health_care,false,medical_service,2550 health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,2,health_care,false,medical_service, -health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,3,health_care,false,medical_service, -health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,3,health_care,false,medical_service, -health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,3,health_care,false,medical_service, -health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,2,health_care,false,medical_service, -health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,2,health_care,false,medical_service, -health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,2,health_care,false,medical_service, -health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,1,health_care,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,health_care,true,behavioral_or_mental_health_clinic, +health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,3,health_care,false,medical_service,10589 +health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,3,health_care,false,medical_service,16 +health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,3,health_care,false,medical_service,169 +health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,2,health_care,false,medical_service,56259 +health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,2,health_care,false,medical_service,2932 +health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,2,health_care,false,medical_service,37 +health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,1,health_care,true,outpatient_care_facility,210956 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,2,health_care,true,behavioral_or_mental_health_clinic,32418 health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service,behavioral_or_crisis_service,Behavioral or Crisis Service,3,health_care,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,health_care,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,health_care,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,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic,459 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,crisis_intervention_service,Crisis Intervention Service,4,health_care,false,behavioral_or_mental_health_clinic,1111 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,stress_management_service,Stress Management Service,4,health_care,false,behavioral_or_mental_health_clinic,28 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,suicide_prevention_service,Suicide Prevention Service,4,health_care,false,behavioral_or_mental_health_clinic,2 health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,4,health_care,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,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,4,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,4,health_care,false,behavioral_or_mental_health_clinic,6168 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,marriage_or_relationship_counseling,Marriage or Relationship Counseling,4,health_care,false,behavioral_or_mental_health_clinic,7079 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,4,health_care,false,behavioral_or_mental_health_clinic,1720 health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service,psychiatry_or_psychology_service,Psychiatry or Psychology Service,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,4,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,4,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,4,health_care,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,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,4,health_care,false,behavioral_or_mental_health_clinic, +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,4,health_care,false,behavioral_or_mental_health_clinic,23040 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,child_psychiatry,Child Psychiatry,5,health_care,false,behavioral_or_mental_health_clinic,1568 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,geriatric_psychiatry,Geriatric Psychiatry,5,health_care,false,behavioral_or_mental_health_clinic,48 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,4,health_care,false,behavioral_or_mental_health_clinic,114 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,4,health_care,false,behavioral_or_mental_health_clinic,106517 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,sports_psychology,Sports Psychology,5,health_care,false,behavioral_or_mental_health_clinic,306 +health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,4,health_care,false,behavioral_or_mental_health_clinic,50832 health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > art_therapy,art_therapy,Art Therapy,5,health_care,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,health_care,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,health_care,false,behavioral_or_mental_health_clinic,3178 health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,2,health_care,true,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,3,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,4,health_care,false,complementary_and_alternative_medicine, -health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,2,health_care,true,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,3,health_care,false,dental_clinic, -health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,3,health_care,false,dental_clinic, +health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,2,health_care,true,complementary_and_alternative_medicine,19458 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,3,health_care,false,complementary_and_alternative_medicine,44440 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,3,health_care,false,complementary_and_alternative_medicine,5367 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,3,health_care,false,complementary_and_alternative_medicine,294 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,3,health_care,false,complementary_and_alternative_medicine,112958 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,3,health_care,false,complementary_and_alternative_medicine,1197 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,3,health_care,false,complementary_and_alternative_medicine,145746 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,3,health_care,false,complementary_and_alternative_medicine,7363 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,3,health_care,false,complementary_and_alternative_medicine,1473 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,3,health_care,false,complementary_and_alternative_medicine,145 +health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,4,health_care,false,complementary_and_alternative_medicine,48 +health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,2,health_care,true,dental_clinic,505874 +health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,3,health_care,false,dental_clinic,26945 +health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,3,health_care,false,dental_clinic,189 +health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,3,health_care,false,dental_clinic,6970 +health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,3,health_care,false,dental_clinic,114479 +health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,3,health_care,false,dental_clinic,36749 +health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,3,health_care,false,dental_clinic,17614 +health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,3,health_care,false,dental_clinic,5308 +health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,3,health_care,false,dental_clinic,3166 health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,2,health_care,true,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,3,health_care,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,health_care,false,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,3,health_care,false,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,3,health_care,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,health_care,false,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,3,health_care,false,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,3,health_care,false,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,2,health_care,true,pediatric_clinic, +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,3,health_care,false,diagnostics_imaging_or_lab_service,24563 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,ultrasound_imaging,Ultrasound Imaging,4,health_care,false,diagnostics_imaging_or_lab_service,113 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,3,health_care,false,diagnostics_imaging_or_lab_service,356733 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,3,health_care,false,diagnostics_imaging_or_lab_service,83843 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,paternity_testing,Paternity Testing,4,health_care,false,diagnostics_imaging_or_lab_service,221 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,3,health_care,false,diagnostics_imaging_or_lab_service,6003 +health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,3,health_care,false,diagnostics_imaging_or_lab_service,13900 +health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,2,health_care,true,pediatric_clinic,58503 health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,3,health_care,false,pediatric_clinic, +health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,3,health_care,false,pediatric_clinic,111 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,3,health_care,false,pediatric_clinic,2010 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,3,health_care,false,pediatric_clinic,602 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,3,health_care,false,pediatric_clinic,695 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,3,health_care,false,pediatric_clinic,20 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,3,health_care,false,pediatric_clinic,232 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,3,health_care,false,pediatric_clinic,561 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,3,health_care,false,pediatric_clinic,465 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,3,health_care,false,pediatric_clinic,676 +health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,3,health_care,false,pediatric_clinic,69 health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,2,health_care,true,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,3,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,3,health_care,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,health_care,false,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,3,health_care,false,physical_medicine_and_rehabilitation, +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,3,health_care,false,physical_medicine_and_rehabilitation,12 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,3,health_care,false,physical_medicine_and_rehabilitation,13083 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,3,health_care,false,physical_medicine_and_rehabilitation,1210 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,3,health_care,false,physical_medicine_and_rehabilitation,209566 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,3,health_care,false,physical_medicine_and_rehabilitation,7755 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,3,health_care,false,physical_medicine_and_rehabilitation,3 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,3,health_care,false,physical_medicine_and_rehabilitation,6536 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,Addiction Rehabilitation Center,4,health_care,false,physical_medicine_and_rehabilitation,5326 +health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,3,health_care,false,physical_medicine_and_rehabilitation,18793 health_care > outpatient_care_facility > primary_care_or_general_clinic,primary_care_or_general_clinic,Primary Care or General Clinic,2,health_care,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,health_care,false,primary_care_or_general_clinic, -health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,3,health_care,false,primary_care_or_general_clinic, -health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,3,health_care,false,primary_care_or_general_clinic, -health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,3,health_care,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,health_care,false,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,health_care,false,primary_care_or_general_clinic,1068 +health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,3,health_care,false,primary_care_or_general_clinic,80 +health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,3,health_care,false,primary_care_or_general_clinic,61513 +health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,3,health_care,false,primary_care_or_general_clinic,307 +health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,public_health_clinic,Public Health Clinic,3,health_care,false,primary_care_or_general_clinic,42136 health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,3,health_care,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,health_care,true,reproductive_perinatal_and_womens_care, -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,3,health_care,false,reproductive_perinatal_and_womens_care, -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,3,health_care,false,reproductive_perinatal_and_womens_care, -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,3,health_care,false,reproductive_perinatal_and_womens_care, -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,3,health_care,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,health_care,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,health_care,false,reproductive_perinatal_and_womens_care, -health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,2,health_care,true,specialized_health_care, +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,2,health_care,true,reproductive_perinatal_and_womens_care,12735 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,3,health_care,false,reproductive_perinatal_and_womens_care,330 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,3,health_care,false,reproductive_perinatal_and_womens_care,159 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,3,health_care,false,reproductive_perinatal_and_womens_care,7257 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,3,health_care,false,reproductive_perinatal_and_womens_care,2161 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,obstetrics_and_gynecology,Obstetrics and Gynecology,3,health_care,false,reproductive_perinatal_and_womens_care,66963 +health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,prenatal_and_perinatal_care,Prenatal and Perinatal Care,3,health_care,false,reproductive_perinatal_and_womens_care,9421 +health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,2,health_care,true,specialized_health_care,9268 health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine,cardiovascular_and_vascular_medicine,Cardiovascular and Vascular Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,4,health_care,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,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,4,health_care,false,specialized_health_care,34058 +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,4,health_care,false,specialized_health_care,43 +health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,4,health_care,false,specialized_health_care,369 +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,ear_nose_and_throat,Ear Nose and Throat,3,health_care,false,specialized_health_care,19067 +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,4,health_care,false,specialized_health_care,18087 health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,5,health_care,false,specialized_health_care,12 +health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,5,health_care,false,specialized_health_care,274 +health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,3,health_care,false,specialized_health_care,8422 +health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,3,health_care,false,specialized_health_care,17532 +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,4,health_care,false,specialized_health_care,38 +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,4,health_care,false,specialized_health_care,192 +health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,4,health_care,false,specialized_health_care,2113 +health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,3,health_care,false,specialized_health_care,106 +health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,4,health_care,false,specialized_health_care,835 +health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,3,health_care,false,specialized_health_care,1561 +health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,3,health_care,false,specialized_health_care,34727 +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,4,health_care,false,specialized_health_care,6978 +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,4,health_care,false,specialized_health_care,4177 health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,4,health_care,false,specialized_health_care,16799 +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,5,health_care,false,specialized_health_care,4399 +health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,4,health_care,false,specialized_health_care,5307 health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,4,health_care,false,specialized_health_care, +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,4,health_care,false,specialized_health_care,290 +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,4,health_care,false,specialized_health_care,455 +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,4,health_care,false,specialized_health_care,46464 +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,5,health_care,false,specialized_health_care,30 +health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,4,health_care,false,specialized_health_care,530 health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,3,health_care,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,health_care,true,vision_or_eye_care_clinic, -health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,3,health_care,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,health_care,false,vision_or_eye_care_clinic, -health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,4,health_care,false,vision_or_eye_care_clinic, -health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,3,health_care,false,vision_or_eye_care_clinic, +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,4,health_care,false,specialized_health_care,42337 +health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,4,health_care,false,specialized_health_care,43472 +health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,3,health_care,false,specialized_health_care,6341 +health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,3,health_care,false,specialized_health_care,21495 +health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,4,health_care,false,specialized_health_care,2262 +health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,3,health_care,false,specialized_health_care,40849 +health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,3,health_care,false,specialized_health_care,22494 +health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,3,health_care,false,specialized_health_care,7748 +health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,4,health_care,false,specialized_health_care,7715 +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,3,health_care,false,specialized_health_care,89 +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,4,health_care,false,specialized_health_care,5 +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,4,health_care,false,specialized_health_care,183 +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,4,health_care,false,specialized_health_care,2036 +health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,4,health_care,false,specialized_health_care,35 +health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,3,health_care,false,specialized_health_care,7869 +health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,4,health_care,false,specialized_health_care,2315 +health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,3,health_care,false,specialized_health_care,6605 +health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,3,health_care,false,specialized_health_care,18014 +health_care > outpatient_care_facility > vision_or_eye_care_clinic,vision_or_eye_care_clinic,Vision or Eye Care Clinic,2,health_care,true,vision_or_eye_care_clinic,33767 +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,3,health_care,false,vision_or_eye_care_clinic,14478 +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,refractive_surgery_or_lasik,Refractive Surgery or Lasik,4,health_care,false,vision_or_eye_care_clinic,1800 +health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,4,health_care,false,vision_or_eye_care_clinic,233 +health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,3,health_care,false,vision_or_eye_care_clinic,78658 health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,1,health_care,true,specialized_medical_facility, -health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,2,health_care,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,health_care,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,health_care,false,specialized_medical_facility, -health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,2,health_care,false,specialized_medical_facility, -health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,2,health_care,false,specialized_medical_facility, -health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,2,health_care,false,specialized_medical_facility, -health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,2,health_care,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,health_care,false,specialized_medical_facility, -health_care > specialized_medical_facility > surgery,surgery,Surgery,2,health_care,true,surgery, -health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,3,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,3,health_care,false,surgery, +health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,2,health_care,false,specialized_medical_facility,453 +health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center,2,health_care,false,specialized_medical_facility,19606 +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,health_care,false,specialized_medical_facility,4955 +health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,2,health_care,false,specialized_medical_facility,1946 +health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,2,health_care,false,specialized_medical_facility,12922 +health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,2,health_care,false,specialized_medical_facility,215 +health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,2,health_care,false,specialized_medical_facility,6919 +health_care > specialized_medical_facility > organ_and_tissue_donor_service,organ_and_tissue_donor_service,Organ and Tissue Donor Service,2,health_care,false,specialized_medical_facility,40 +health_care > specialized_medical_facility > surgery,surgery,Surgery,2,health_care,true,surgery,34095 +health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,3,health_care,false,surgery,2528 +health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,3,health_care,false,surgery,13467 health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,3,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,4,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,4,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,3,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,3,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,4,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,3,health_care,false,surgery, +health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,4,health_care,false,surgery,504 +health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,4,health_care,false,surgery,194 +health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,3,health_care,false,surgery,480 +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,3,health_care,false,surgery,33857 +health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,4,health_care,false,surgery,2580 +health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,3,health_care,false,surgery,10399 lifestyle_services,lifestyle_services,Lifestyle Services,0,lifestyle_services,true,lifestyle_services, -lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,1,lifestyle_services,true,animal_or_pet_service, +lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,1,lifestyle_services,true,animal_or_pet_service,80894 lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,2,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,3,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service,5740 +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,3,lifestyle_services,false,animal_or_pet_service,27738 +lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,3,lifestyle_services,false,animal_or_pet_service,1408 lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,3,lifestyle_services,false,animal_or_pet_service,30 +lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,3,lifestyle_services,false,animal_or_pet_service,16133 +lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,3,lifestyle_services,false,animal_or_pet_service,5769 +lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,2,lifestyle_services,false,animal_or_pet_service,27294 lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,4,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,3,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,2,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,3,lifestyle_services,false,animal_or_pet_service,158 +lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,3,lifestyle_services,false,animal_or_pet_service,5740 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,3,lifestyle_services,false,animal_or_pet_service,18459 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,3,lifestyle_services,false,animal_or_pet_service,97813 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,3,lifestyle_services,false,animal_or_pet_service,12840 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,3,lifestyle_services,false,animal_or_pet_service,1211 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,4,lifestyle_services,false,animal_or_pet_service,24722 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,3,lifestyle_services,false,animal_or_pet_service,58 +lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,3,lifestyle_services,false,animal_or_pet_service,54 +lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service,2,lifestyle_services,false,animal_or_pet_service,370 +lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,2,lifestyle_services,false,animal_or_pet_service,27 +lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,2,lifestyle_services,false,animal_or_pet_service,71 lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,3,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,3,lifestyle_services,false,animal_or_pet_service, +lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,3,lifestyle_services,false,animal_or_pet_service,1966 +lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,3,lifestyle_services,false,animal_or_pet_service,17 +lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,3,lifestyle_services,false,animal_or_pet_service,579 +lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,3,lifestyle_services,false,animal_or_pet_service,77 +lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,3,lifestyle_services,false,animal_or_pet_service,1114 +lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,3,lifestyle_services,false,animal_or_pet_service,193950 lifestyle_services > food_service,food_service,Food Service,1,lifestyle_services,true,food_service, -lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,2,lifestyle_services,false,food_service, -lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,2,lifestyle_services,false,food_service, -lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,3,lifestyle_services,false,food_service, -lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,1,lifestyle_services,true,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > barber,barber,Barber,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,2,lifestyle_services,false,food_service,2837 +lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,2,lifestyle_services,false,food_service,56168 +lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,3,lifestyle_services,false,food_service,7738 +lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,1,lifestyle_services,true,personal_or_beauty_service,34051 +lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,2,lifestyle_services,false,personal_or_beauty_service,79 +lifestyle_services > personal_or_beauty_service > barber,barber,Barber,2,lifestyle_services,false,personal_or_beauty_service,385973 lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,2,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,2,lifestyle_services,false,personal_or_beauty_service,1238909 lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,3,lifestyle_services,false,personal_or_beauty_service, lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,2,lifestyle_services,false,personal_or_beauty_service, lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,3,lifestyle_services,false,personal_or_beauty_service, lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,3,lifestyle_services,false,personal_or_beauty_service, lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,4,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,4,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,3,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,3,lifestyle_services,false,personal_or_beauty_service,176733 +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,4,lifestyle_services,false,personal_or_beauty_service,1931 +lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,4,lifestyle_services,false,personal_or_beauty_service,8672 +lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,2,lifestyle_services,false,personal_or_beauty_service,828 +lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,2,lifestyle_services,false,personal_or_beauty_service,4531 +lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,2,lifestyle_services,false,personal_or_beauty_service,541 +lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,2,lifestyle_services,false,personal_or_beauty_service,12425 +lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,3,lifestyle_services,false,personal_or_beauty_service,19491 +lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,3,lifestyle_services,false,personal_or_beauty_service,1417 +lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,3,lifestyle_services,false,personal_or_beauty_service,3425 +lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,3,lifestyle_services,false,personal_or_beauty_service,15196 +lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,2,lifestyle_services,false,personal_or_beauty_service,6940 +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,3,lifestyle_services,false,personal_or_beauty_service,9275 +lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,3,lifestyle_services,false,personal_or_beauty_service,943 lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,2,lifestyle_services,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,lifestyle_services,false,personal_or_beauty_service, +lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,2,lifestyle_services,false,personal_or_beauty_service,619934 +lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,Blow Dry Blow Out Service,3,lifestyle_services,false,personal_or_beauty_service,413 lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > wellness_service,wellness_service,Wellness Service,1,lifestyle_services,true,wellness_service, -lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,3,lifestyle_services,false,wellness_service, +lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,3,lifestyle_services,false,personal_or_beauty_service,12601 +lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,3,lifestyle_services,false,personal_or_beauty_service,2069 +lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,2,lifestyle_services,false,personal_or_beauty_service,3462 +lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,2,lifestyle_services,false,personal_or_beauty_service,30912 +lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,2,lifestyle_services,false,personal_or_beauty_service,403 +lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,2,lifestyle_services,false,personal_or_beauty_service,240060 +lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,2,lifestyle_services,false,personal_or_beauty_service,15752 +lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,2,lifestyle_services,false,personal_or_beauty_service,60 +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,2,lifestyle_services,false,personal_or_beauty_service,78561 +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,3,lifestyle_services,false,personal_or_beauty_service,381 +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,3,lifestyle_services,false,personal_or_beauty_service,37505 +lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,3,lifestyle_services,false,personal_or_beauty_service,1844 +lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,2,lifestyle_services,false,personal_or_beauty_service,34112 +lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,3,lifestyle_services,false,personal_or_beauty_service,881 +lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,3,lifestyle_services,false,personal_or_beauty_service,155 +lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,2,lifestyle_services,false,personal_or_beauty_service,2748 +lifestyle_services > wellness_service,wellness_service,Wellness Service,1,lifestyle_services,true,wellness_service,6714 +lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,2,lifestyle_services,false,wellness_service,75 +lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,2,lifestyle_services,false,wellness_service,244 +lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,2,lifestyle_services,false,wellness_service,35 +lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,2,lifestyle_services,false,wellness_service,12729 +lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,2,lifestyle_services,false,wellness_service,7956 +lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,2,lifestyle_services,false,wellness_service,22 +lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,2,lifestyle_services,false,wellness_service,304 +lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,2,lifestyle_services,false,wellness_service,184871 +lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,2,lifestyle_services,false,wellness_service,10080 +lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,2,lifestyle_services,false,wellness_service,62884 +lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,2,lifestyle_services,false,wellness_service,14 +lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,2,lifestyle_services,false,wellness_service,639 +lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,3,lifestyle_services,false,wellness_service,4698 lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > sauna,sauna,Sauna,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > spa,spa,Spa,2,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,2,lifestyle_services,false,wellness_service, -lodging,lodging,Lodging,0,lodging,true,lodging, -lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,1,lodging,true,bed_and_breakfast, -lodging > cabin,cabin,Cabin,1,lodging,false,lodging, -lodging > campground,campground,Campground,1,lodging,true,campground, -lodging > cottage,cottage,Cottage,1,lodging,false,lodging, -lodging > country_house,country_house,Country House,1,lodging,false,lodging, -lodging > holiday_park,holiday_park,Holiday Park,1,lodging,false,lodging, -lodging > hostel,hostel,Hostel,1,lodging,false,lodging, -lodging > hotel,hotel,Hotel,1,lodging,true,hotel, -lodging > hotel > motel,motel,Motel,2,lodging,false,hotel, -lodging > houseboat,houseboat,Houseboat,1,lodging,false,lodging, -lodging > inn,inn,Inn,1,lodging,true,inn, -lodging > lodge,lodge,Lodge,1,lodging,false,lodging, -lodging > mountain_hut,mountain_hut,Mountain Hut,1,lodging,false,lodging, +lifestyle_services > wellness_service > sauna,sauna,Sauna,2,lifestyle_services,false,wellness_service,758 +lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,2,lifestyle_services,false,wellness_service,4 +lifestyle_services > wellness_service > spa,spa,Spa,2,lifestyle_services,false,wellness_service,614847 +lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,3,lifestyle_services,false,wellness_service,31000 +lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,3,lifestyle_services,false,wellness_service,57 +lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,3,lifestyle_services,false,wellness_service,18157 +lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,3,lifestyle_services,false,wellness_service,51755 +lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,2,lifestyle_services,false,wellness_service,22720 +lodging,lodging,Lodging,0,lodging,true,lodging,430223 +lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,1,lodging,true,bed_and_breakfast,155160 +lodging > cabin,cabin,Cabin,1,lodging,false,lodging,38975 +lodging > campground,campground,Campground,1,lodging,true,campground,104128 +lodging > cottage,cottage,Cottage,1,lodging,false,lodging,39784 +lodging > country_house,country_house,Country House,1,lodging,false,lodging,41 +lodging > holiday_park,holiday_park,Holiday Park,1,lodging,false,lodging,75 +lodging > hostel,hostel,Hostel,1,lodging,false,lodging,58920 +lodging > hotel,hotel,Hotel,1,lodging,true,hotel,1172978 +lodging > hotel > motel,motel,Motel,2,lodging,false,hotel,31137 +lodging > houseboat,houseboat,Houseboat,1,lodging,false,lodging,15 +lodging > inn,inn,Inn,1,lodging,true,inn,25854 +lodging > lodge,lodge,Lodge,1,lodging,false,lodging,68594 +lodging > mountain_hut,mountain_hut,Mountain Hut,1,lodging,false,lodging,144 lodging > private_lodging,private_lodging,Private Lodging,1,lodging,true,private_lodging, -lodging > private_lodging > guest_house,guest_house,Guest House,2,lodging,false,private_lodging, -lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,2,lodging,false,private_lodging, -lodging > resort,resort,Resort,1,lodging,true,resort, -lodging > resort > beach_resort,beach_resort,Beach Resort,2,lodging,false,resort, -lodging > resort > ski_resort,ski_resort,Ski Resort,2,lodging,false,resort, +lodging > private_lodging > guest_house,guest_house,Guest House,2,lodging,false,private_lodging,4329 +lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,2,lodging,false,private_lodging,205296 +lodging > resort,resort,Resort,1,lodging,true,resort,102837 +lodging > resort > beach_resort,beach_resort,Beach Resort,2,lodging,false,resort,7942 +lodging > resort > ski_resort,ski_resort,Ski Resort,2,lodging,false,resort,14707 lodging > retreat,retreat,Retreat,1,lodging,false,lodging, -lodging > retreat > health_retreat,health_retreat,Health Retreat,2,lodging,false,lodging, -lodging > rv_park,rv_park,RV Park,1,lodging,true,rv_park, -lodging > ryokan,ryokan,Ryokan,1,lodging,false,lodging, -lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,1,lodging,false,lodging, -lodging > service_apartment,service_apartment,Service Apartment,1,lodging,false,lodging, +lodging > retreat > health_retreat,health_retreat,Health Retreat,2,lodging,false,lodging,115 +lodging > rv_park,rv_park,RV Park,1,lodging,true,rv_park,23854 +lodging > ryokan,ryokan,Ryokan,1,lodging,false,lodging,3 +lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,1,lodging,false,lodging,698 +lodging > service_apartment,service_apartment,Service Apartment,1,lodging,false,lodging,18634 services_and_business,services_and_business,Services and Business,0,services_and_business,true,services_and_business, -services_and_business > agricultural_service,agricultural_service,Agricultural Service,1,services_and_business,true,agricultural_service, -services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,2,services_and_business,false,agricultural_service, -services_and_business > agricultural_service > farm,farm,Farm,2,services_and_business,true,farm, -services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm > orchard,orchard,Orchard,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm > ranch,ranch,Ranch,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,3,services_and_business,false,farm, -services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,2,services_and_business,false,agricultural_service, -services_and_business > b2b_service,b2b_service,B2B Service,1,services_and_business,true,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service,b2b_agriculture_service,B2B Agriculture Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,4,services_and_business,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,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,5,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,5,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,5,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,4,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,4,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,4,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,4,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,2,services_and_business,true,b2b_energy_and_utility_service, -services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_energy_and_utility_service, -services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,2,services_and_business,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,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,2,services_and_business,true,b2b_industrial_and_machine_service, -services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,3,services_and_business,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,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, -services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, -services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,3,services_and_business,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,services_and_business,false,b2b_industrial_and_machine_service, -services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,3,services_and_business,false,b2b_industrial_and_machine_service, +services_and_business > agricultural_service,agricultural_service,Agricultural Service,1,services_and_business,true,agricultural_service,89225 +services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,2,services_and_business,false,agricultural_service,652 +services_and_business > agricultural_service > farm,farm,Farm,2,services_and_business,true,farm,254727 +services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,3,services_and_business,false,farm,12379 +services_and_business > agricultural_service > farm > orchard,orchard,Orchard,3,services_and_business,false,farm,73 +services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,3,services_and_business,false,farm,81 +services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,3,services_and_business,false,farm,6138 +services_and_business > agricultural_service > farm > ranch,ranch,Ranch,3,services_and_business,false,farm,447 +services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,3,services_and_business,false,farm,6945 +services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,2,services_and_business,false,agricultural_service,234 +services_and_business > b2b_service,b2b_service,B2B Service,1,services_and_business,true,b2b_service,50289 +services_and_business > b2b_service > b2b_agriculture_service,b2b_agriculture_service,B2B Agriculture Service,2,services_and_business,false,b2b_service,84 +services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,3,services_and_business,false,b2b_service,27508 +services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,3,services_and_business,false,b2b_service,64916 +services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,3,services_and_business,false,b2b_service,33 +services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,3,services_and_business,false,b2b_service,70 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,3,services_and_business,false,b2b_service,12 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,4,services_and_business,false,b2b_service,80 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,Farm Equipment and Supply,4,services_and_business,false,b2b_service,6185 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,5,services_and_business,false,b2b_service,546 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,5,services_and_business,false,b2b_service,1106 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,5,services_and_business,false,b2b_service,216 +services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,4,services_and_business,false,b2b_service,5617 +services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,3,services_and_business,false,b2b_service,1357 +services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,3,services_and_business,false,b2b_service,824 +services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,4,services_and_business,false,b2b_service,1045 +services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,4,services_and_business,false,b2b_service,5 +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,3,services_and_business,false,b2b_service,152 +services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,4,services_and_business,false,b2b_service,6685 +services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,3,services_and_business,false,b2b_service,19821 +services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,3,services_and_business,false,b2b_service,79 +services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,3,services_and_business,false,b2b_service,110 +services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,2,services_and_business,true,b2b_energy_and_utility_service,35130 +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,3,services_and_business,false,b2b_energy_and_utility_service,10389 +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,services_and_business,false,b2b_energy_and_utility_service,581 +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,b2b_quarry,B2B Quarry,4,services_and_business,false,b2b_energy_and_utility_service,760 +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,b2b_oil_and_gas,B2B Oil and Gas,3,services_and_business,false,b2b_energy_and_utility_service,6542 +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,services_and_business,false,b2b_energy_and_utility_service,1833 +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,services_and_business,false,b2b_energy_and_utility_service,145 +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,services_and_business,false,b2b_energy_and_utility_service,1360 +services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,b2b_oil_refinery,B2B Oil Refinery,4,services_and_business,false,b2b_energy_and_utility_service,1365 +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,services_and_business,false,b2b_energy_and_utility_service,823 +services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,energy_management_service,Energy Management Service,3,services_and_business,false,b2b_energy_and_utility_service,697 +services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,2,services_and_business,false,b2b_service,7347 +services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management,3,services_and_business,false,b2b_service,6428 +services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,3,services_and_business,false,b2b_service,29205 +services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,3,services_and_business,false,b2b_service,3986 +services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,3,services_and_business,false,b2b_service,2307 +services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,3,services_and_business,false,b2b_service,396 +services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,3,services_and_business,false,b2b_service,12490 +services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,2,services_and_business,true,b2b_industrial_and_machine_service,3478 +services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,3,services_and_business,false,b2b_industrial_and_machine_service,21056 +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,services_and_business,false,b2b_industrial_and_machine_service,626 +services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,casting_molding_service,Casting Molding Service,3,services_and_business,false,b2b_industrial_and_machine_service,137 +services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,3,services_and_business,false,b2b_industrial_and_machine_service,54309 +services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,inventory_control_service,Inventory Control Service,3,services_and_business,false,b2b_industrial_and_machine_service,1060 +services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,laser_cutting_service,Laser Cutting Service,3,services_and_business,false,b2b_industrial_and_machine_service,203 +services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant,3,services_and_business,false,b2b_industrial_and_machine_service,233 +services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,metal_plating_service,Metal Plating Service,3,services_and_business,false,b2b_industrial_and_machine_service,2939 +services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,3,services_and_business,false,b2b_industrial_and_machine_service,14486 +services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,plastic_injection_molding_service,Plastic Injection Molding Service,3,services_and_business,false,b2b_industrial_and_machine_service,239 +services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,3,services_and_business,false,b2b_industrial_and_machine_service,60 services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,3,services_and_business,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,services_and_business,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,services_and_business,false,b2b_service, +services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,3,services_and_business,false,b2b_service,2682 +services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,2,services_and_business,false,b2b_service,210 +services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,3,services_and_business,false,b2b_service,5983 +services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,3,services_and_business,false,b2b_service,1151 +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,services_and_business,false,b2b_service,1563 +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,services_and_business,false,b2b_service,24280 services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,2,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_office_and_professional_service, -services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,3,services_and_business,false,b2b_office_and_professional_service, -services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_science_and_technology_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,services_and_business,false,b2b_office_and_professional_service,48779 +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,services_and_business,false,b2b_office_and_professional_service,196 +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,services_and_business,false,b2b_office_and_professional_service,24298 +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,services_and_business,false,b2b_office_and_professional_service,627 +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,services_and_business,false,b2b_office_and_professional_service,177 +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,services_and_business,false,b2b_office_and_professional_service,2029 +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,services_and_business,false,b2b_office_and_professional_service,690 +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,services_and_business,false,b2b_office_and_professional_service,1201 +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,services_and_business,false,b2b_office_and_professional_service,1341 +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,services_and_business,false,b2b_office_and_professional_service,2637 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,b2b_background_check_service,B2B Background Check Service,3,services_and_business,false,b2b_office_and_professional_service,36 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,b2b_business_management_service,B2B Business Management Service,3,services_and_business,false,b2b_office_and_professional_service,81576 +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,services_and_business,false,b2b_office_and_professional_service,700 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,b2b_secretarial_service,B2B Secretarial Service,4,services_and_business,false,b2b_office_and_professional_service,1692 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,b2b_domestic_trade_service,B2B Domestic Trade Service,3,services_and_business,false,b2b_office_and_professional_service,1154 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,b2b_human_resource_service,B2B Human Resource Service,3,services_and_business,false,b2b_office_and_professional_service,4727 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,b2b_international_trade_service,B2B International Trade Service,3,services_and_business,false,b2b_office_and_professional_service,8400 +services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,b2b_records_storage_service,B2B Records Storage Service,3,services_and_business,false,b2b_office_and_professional_service,1211 +services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,3,services_and_business,false,b2b_office_and_professional_service,13 +services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,3,services_and_business,false,b2b_office_and_professional_service,212 +services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,translating_and_interpreting_service,Translating and Interpreting Service,3,services_and_business,false,b2b_office_and_professional_service,11071 +services_and_business > b2b_service > b2b_science_and_technology_service,b2b_science_and_technology_service,B2B Science and Technology Service,2,services_and_business,true,b2b_science_and_technology_service,14826 +services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,b2b_scientific_equipment,B2B Scientific Equipment,3,services_and_business,false,b2b_science_and_technology_service,507 +services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,b2b_scientific_lab,B2B Scientific Lab,3,services_and_business,false,b2b_science_and_technology_service,165 services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B Telecommunications Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,3,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,2,services_and_business,true,b2b_transportation_and_storage_service, -services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,3,services_and_business,false,b2b_transportation_and_storage_service, -services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,4,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_transportation_and_storage_service, -services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,3,services_and_business,false,b2b_transportation_and_storage_service, -services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,3,services_and_business,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,services_and_business,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,services_and_business,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,services_and_business,false,b2b_transportation_and_storage_service, -services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,2,services_and_business,true,manufacturer, -services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Factory Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,3,services_and_business,false,manufacturer, +services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,3,services_and_business,false,b2b_service,20 +services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,2,services_and_business,true,b2b_transportation_and_storage_service,1110 +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,3,services_and_business,false,b2b_transportation_and_storage_service,106 +services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,4,services_and_business,false,b2b_transportation_and_storage_service,9999 +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,services_and_business,false,b2b_transportation_and_storage_service,69 +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,freight_and_cargo_service,Freight and Cargo Service,3,services_and_business,false,b2b_transportation_and_storage_service,173480 +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,distribution_service,Distribution Service,4,services_and_business,false,b2b_transportation_and_storage_service,6159 +services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,Freight Forwarding Agency,4,services_and_business,false,b2b_transportation_and_storage_service,3521 +services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,motor_freight_trucking,Motor Freight Trucking,3,services_and_business,false,b2b_transportation_and_storage_service,1701 +services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,3,services_and_business,false,b2b_transportation_and_storage_service,630 +services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,3,services_and_business,false,b2b_transportation_and_storage_service,4867 +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,services_and_business,false,b2b_transportation_and_storage_service,335 +services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,Tractor Dealer,4,services_and_business,false,b2b_transportation_and_storage_service,1681 +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,services_and_business,false,b2b_transportation_and_storage_service,1152 +services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,2,services_and_business,false,b2b_service,102336 +services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,2,services_and_business,true,manufacturer,258533 +services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,3,services_and_business,false,manufacturer,7834 +services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Factory Manufacturer,4,services_and_business,false,manufacturer,39 +services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,3,services_and_business,false,manufacturer,9347 +services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,3,services_and_business,false,manufacturer,204 +services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,3,services_and_business,false,manufacturer,12423 +services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,3,services_and_business,false,manufacturer,6808 +services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,3,services_and_business,false,manufacturer,146 +services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,3,services_and_business,false,manufacturer,39778 +services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,3,services_and_business,false,manufacturer,75 +services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,3,services_and_business,false,manufacturer,592 +services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,3,services_and_business,false,manufacturer,249 +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,3,services_and_business,false,manufacturer,1579 +services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,4,services_and_business,false,manufacturer,217105 +services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,3,services_and_business,false,manufacturer,3048 +services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,3,services_and_business,false,manufacturer,124092 services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,steel_fabricator,Steel Fabricator,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill,mill,Mill,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,4,services_and_business,false,manufacturer, +services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,4,services_and_business,false,manufacturer,322 +services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,steel_fabricator,Steel Fabricator,4,services_and_business,false,manufacturer,2104 +services_and_business > b2b_service > manufacturer > mill,mill,Mill,3,services_and_business,false,manufacturer,226 +services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,4,services_and_business,false,manufacturer,193 +services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,4,services_and_business,false,manufacturer,97 +services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,4,services_and_business,false,manufacturer,901 +services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,4,services_and_business,false,manufacturer,76 +services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,4,services_and_business,false,manufacturer,1108 +services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,4,services_and_business,false,manufacturer,2573 +services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,4,services_and_business,false,manufacturer,25 +services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,3,services_and_business,false,manufacturer,16962 +services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,3,services_and_business,false,manufacturer,2062 +services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,3,services_and_business,false,manufacturer,340 +services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,3,services_and_business,false,manufacturer,34762 +services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,3,services_and_business,false,manufacturer,170 +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,4,services_and_business,false,manufacturer,784 +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,4,services_and_business,false,manufacturer,12742 +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,4,services_and_business,false,manufacturer,196 +services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,4,services_and_business,false,manufacturer,2385 services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,2,services_and_business,true,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,4,services_and_business,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,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,4,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,3,services_and_business,false,supplier_or_distributor, +services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,4,services_and_business,false,manufacturer,82 +services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,2,services_and_business,true,supplier_or_distributor,5376 +services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,3,services_and_business,false,supplier_or_distributor,110 +services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,3,services_and_business,false,supplier_or_distributor,178 +services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,3,services_and_business,false,supplier_or_distributor,393 +services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,3,services_and_business,false,supplier_or_distributor,955 +services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,3,services_and_business,false,supplier_or_distributor,1 +services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,3,services_and_business,false,supplier_or_distributor,353 +services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,3,services_and_business,false,supplier_or_distributor,25937 +services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,3,services_and_business,false,supplier_or_distributor,5209 +services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,3,services_and_business,false,supplier_or_distributor,80 +services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,business_office_supplies_and_stationery,Business Office Supplies and Stationery,3,services_and_business,false,supplier_or_distributor,4097 +services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,3,services_and_business,false,supplier_or_distributor,1169 +services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,3,services_and_business,false,supplier_or_distributor,1846 +services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,3,services_and_business,false,supplier_or_distributor,92 +services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,3,services_and_business,false,supplier_or_distributor,24617 +services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,3,services_and_business,false,supplier_or_distributor,4525 +services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,3,services_and_business,false,supplier_or_distributor,762 +services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,3,services_and_business,false,supplier_or_distributor,50030 +services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,3,services_and_business,false,supplier_or_distributor,15913 +services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,3,services_and_business,false,supplier_or_distributor,2548 +services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,3,services_and_business,false,supplier_or_distributor,10080 +services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,3,services_and_business,false,supplier_or_distributor,3503 +services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,3,services_and_business,false,supplier_or_distributor,891 +services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,3,services_and_business,false,supplier_or_distributor,3782 +services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,4,services_and_business,false,supplier_or_distributor,947 +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,services_and_business,false,supplier_or_distributor,813 +services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,4,services_and_business,false,supplier_or_distributor,669 +services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,3,services_and_business,false,supplier_or_distributor,776 +services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,3,services_and_business,false,supplier_or_distributor,49043 +services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,3,services_and_business,false,supplier_or_distributor,664 +services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,3,services_and_business,false,supplier_or_distributor,6 +services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,3,services_and_business,false,supplier_or_distributor,1887 +services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,3,services_and_business,false,supplier_or_distributor,47004 +services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,restaurant_equipment_and_supply,Restaurant Equipment and Supply,3,services_and_business,false,supplier_or_distributor,12496 +services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,3,services_and_business,false,supplier_or_distributor,43 +services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,Sand and Gravel Supplier,3,services_and_business,false,supplier_or_distributor,859 +services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,3,services_and_business,false,supplier_or_distributor,214 services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,seal_and_hanko_supplier,Seal and Hanko Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,3,services_and_business,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,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,2,services_and_business,true,wholesaler, -services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,Fmcg Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,3,services_and_business,false,wholesaler, -services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,3,services_and_business,false,wholesaler, -services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,1,services_and_business,true,building_or_construction_service, -services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,2,services_and_business,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,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,2,services_and_business,false,building_or_construction_service, -services_and_business > building_or_construction_service > welder,welder,Welder,2,services_and_business,false,building_or_construction_service, -services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,1,services_and_business,true,corporate_or_business_office, -services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > private_association,private_association,Private Association,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,2,services_and_business,false,corporate_or_business_office, -services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,2,services_and_business,false,corporate_or_business_office, +services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,3,services_and_business,false,supplier_or_distributor,100 +services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,3,services_and_business,false,supplier_or_distributor,972 +services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,3,services_and_business,false,supplier_or_distributor,261 +services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,3,services_and_business,false,supplier_or_distributor,11 +services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,3,services_and_business,false,supplier_or_distributor,4 +services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,3,services_and_business,false,supplier_or_distributor,6248 +services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,Water Softening Equipment Supplier,3,services_and_business,false,supplier_or_distributor,567 +services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,3,services_and_business,false,supplier_or_distributor,5847 +services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,2,services_and_business,true,wholesaler,15756 +services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,3,services_and_business,false,wholesaler,8605 +services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,3,services_and_business,false,wholesaler,1012 +services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,3,services_and_business,false,wholesaler,322 +services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,3,services_and_business,false,wholesaler,413 +services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,Fmcg Wholesaler,3,services_and_business,false,wholesaler,157 +services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,3,services_and_business,false,wholesaler,72 +services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,3,services_and_business,false,wholesaler,973 +services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,3,services_and_business,false,wholesaler,179 +services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,3,services_and_business,false,wholesaler,319 +services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,3,services_and_business,false,wholesaler,138 +services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,3,services_and_business,false,wholesaler,7 +services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,3,services_and_business,false,wholesaler,12567 +services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,3,services_and_business,false,wholesaler,577 +services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,3,services_and_business,false,wholesaler,6503 +services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,3,services_and_business,false,wholesaler,1197 +services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,3,services_and_business,false,wholesaler,2740 +services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,3,services_and_business,false,wholesaler,261 +services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,3,services_and_business,false,wholesaler,39 +services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,3,services_and_business,false,wholesaler,34 +services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,3,services_and_business,false,wholesaler,280 +services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,3,services_and_business,false,wholesaler,376 +services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,3,services_and_business,false,wholesaler,388 +services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,3,services_and_business,false,wholesaler,8379 +services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,3,services_and_business,false,wholesaler,1184 +services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,1,services_and_business,true,building_or_construction_service,343319 +services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,2,services_and_business,false,building_or_construction_service,311 +services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,2,services_and_business,false,building_or_construction_service,97 +services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,2,services_and_business,false,building_or_construction_service,3673 +services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,2,services_and_business,false,building_or_construction_service,1023 +services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,2,services_and_business,false,building_or_construction_service,1722 +services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,2,services_and_business,false,building_or_construction_service,161545 +services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,2,services_and_business,false,building_or_construction_service,54 +services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,2,services_and_business,false,building_or_construction_service,2216 +services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,2,services_and_business,false,building_or_construction_service,78 +services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,2,services_and_business,false,building_or_construction_service,33 +services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,2,services_and_business,false,building_or_construction_service,49 +services_and_business > building_or_construction_service > marble_and_granite_professional,marble_and_granite_professional,Marble and Granite Professional,2,services_and_business,false,building_or_construction_service,906 +services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,2,services_and_business,false,building_or_construction_service,4488 +services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,2,services_and_business,false,building_or_construction_service,1739 +services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,2,services_and_business,false,building_or_construction_service,711 +services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,2,services_and_business,false,building_or_construction_service,1111 +services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,2,services_and_business,false,building_or_construction_service,1096 +services_and_business > building_or_construction_service > welder,welder,Welder,2,services_and_business,false,building_or_construction_service,2586 +services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,1,services_and_business,true,corporate_or_business_office,164478 +services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,2,services_and_business,false,corporate_or_business_office,51595 +services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,2,services_and_business,false,corporate_or_business_office,3202 +services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,2,services_and_business,false,corporate_or_business_office,9059 +services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,2,services_and_business,false,corporate_or_business_office,18748 +services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,2,services_and_business,false,corporate_or_business_office,19317 +services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,2,services_and_business,false,corporate_or_business_office,31777 +services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,2,services_and_business,false,corporate_or_business_office,8015 +services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,2,services_and_business,false,corporate_or_business_office,79208 +services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,2,services_and_business,false,corporate_or_business_office,133627 +services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,2,services_and_business,false,corporate_or_business_office,20971 +services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,2,services_and_business,false,corporate_or_business_office,21136 +services_and_business > corporate_or_business_office > private_association,private_association,Private Association,2,services_and_business,false,corporate_or_business_office,14242 +services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,2,services_and_business,false,corporate_or_business_office,77931 +services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,2,services_and_business,false,corporate_or_business_office,656 +services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,2,services_and_business,false,corporate_or_business_office,29844 services_and_business > design_service,design_service,Design Service,1,services_and_business,true,design_service, -services_and_business > design_service > architect,architect,Architect,2,services_and_business,false,design_service, -services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,2,services_and_business,false,design_service, -services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,2,services_and_business,false,design_service, -services_and_business > design_service > product_design,product_design,Product Design,2,services_and_business,false,design_service, -services_and_business > design_service > sign_making,sign_making,Sign Making,2,services_and_business,false,design_service, -services_and_business > design_service > web_designer,web_designer,Web Designer,2,services_and_business,false,design_service, -services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,1,services_and_business,true,environmental_or_ecological_service, -services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,2,services_and_business,false,environmental_or_ecological_service, -services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,2,services_and_business,false,environmental_or_ecological_service, -services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,2,services_and_business,false,environmental_or_ecological_service, -services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,2,services_and_business,false,environmental_or_ecological_service, -services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,2,services_and_business,false,environmental_or_ecological_service, -services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,1,services_and_business,true,event_or_party_service, -services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,Audiovisual Equipment Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > bartender,bartender,Bartender,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > caricature,caricature,Caricature,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > caterer,caterer,Caterer,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > clown,clown,Clown,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,2,services_and_business,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,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > magician,magician,Magician,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > mohel,mohel,Mohel,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > musician,musician,Musician,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,2,services_and_business,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,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > party_character,party_character,Party Character,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > videographer,videographer,Videographer,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,2,services_and_business,false,event_or_party_service, -services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,2,services_and_business,false,event_or_party_service, +services_and_business > design_service > architect,architect,Architect,2,services_and_business,false,design_service,32082 +services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,2,services_and_business,false,design_service,100199 +services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,2,services_and_business,false,design_service,68540 +services_and_business > design_service > product_design,product_design,Product Design,2,services_and_business,false,design_service,5268 +services_and_business > design_service > sign_making,sign_making,Sign Making,2,services_and_business,false,design_service,38412 +services_and_business > design_service > web_designer,web_designer,Web Designer,2,services_and_business,false,design_service,73207 +services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,1,services_and_business,true,environmental_or_ecological_service,11061 +services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,2,services_and_business,false,environmental_or_ecological_service,247 +services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,2,services_and_business,false,environmental_or_ecological_service,29506 +services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,2,services_and_business,false,environmental_or_ecological_service,2943 +services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,2,services_and_business,false,environmental_or_ecological_service,13645 +services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,2,services_and_business,false,environmental_or_ecological_service,255 +services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,1,services_and_business,true,event_or_party_service,1 +services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,Audiovisual Equipment Rental,2,services_and_business,false,event_or_party_service,5510 +services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,2,services_and_business,false,event_or_party_service,462 +services_and_business > event_or_party_service > bartender,bartender,Bartender,2,services_and_business,false,event_or_party_service,3122 +services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,2,services_and_business,false,event_or_party_service,712 +services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,2,services_and_business,false,event_or_party_service,432 +services_and_business > event_or_party_service > caricature,caricature,Caricature,2,services_and_business,false,event_or_party_service,19 +services_and_business > event_or_party_service > caterer,caterer,Caterer,2,services_and_business,false,event_or_party_service,88970 +services_and_business > event_or_party_service > clown,clown,Clown,2,services_and_business,false,event_or_party_service,38 +services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,2,services_and_business,false,event_or_party_service,5727 +services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,2,services_and_business,false,event_or_party_service,10345 +services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,2,services_and_business,false,event_or_party_service,47 +services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,2,services_and_business,false,event_or_party_service,111 +services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,2,services_and_business,false,event_or_party_service,11 +services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,2,services_and_business,false,event_or_party_service,66 +services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,2,services_and_business,false,event_or_party_service,57 +services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,2,services_and_business,false,event_or_party_service,32 +services_and_business > event_or_party_service > kids_recreation_and_party,kids_recreation_and_party,Kids Recreation and Party,2,services_and_business,false,event_or_party_service,14759 +services_and_business > event_or_party_service > magician,magician,Magician,2,services_and_business,false,event_or_party_service,883 +services_and_business > event_or_party_service > mohel,mohel,Mohel,2,services_and_business,false,event_or_party_service,5 +services_and_business > event_or_party_service > musician,musician,Musician,2,services_and_business,false,event_or_party_service,1465 +services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,2,services_and_business,false,event_or_party_service,248 +services_and_business > event_or_party_service > party_and_event_planning,party_and_event_planning,Party and Event Planning,2,services_and_business,false,event_or_party_service,771950 +services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,2,services_and_business,false,event_or_party_service,3 +services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,2,services_and_business,false,event_or_party_service,261 +services_and_business > event_or_party_service > party_character,party_character,Party Character,2,services_and_business,false,event_or_party_service,20 +services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,2,services_and_business,false,event_or_party_service,3413 +services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,2,services_and_business,false,event_or_party_service,1307 +services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,2,services_and_business,false,event_or_party_service,4391 +services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,2,services_and_business,false,event_or_party_service,3 +services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,2,services_and_business,false,event_or_party_service,1 +services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,2,services_and_business,false,event_or_party_service,136 +services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,2,services_and_business,false,event_or_party_service,3 +services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,2,services_and_business,false,event_or_party_service,434 +services_and_business > event_or_party_service > videographer,videographer,Videographer,2,services_and_business,false,event_or_party_service,4466 +services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,2,services_and_business,false,event_or_party_service,854 +services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,2,services_and_business,false,event_or_party_service,39755 services_and_business > family_service,family_service,Family Service,1,services_and_business,true,family_service, -services_and_business > family_service > adoption_service,adoption_service,Adoption Service,2,services_and_business,false,family_service, -services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,2,services_and_business,false,family_service, -services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,3,services_and_business,false,family_service, -services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,2,services_and_business,false,family_service, -services_and_business > family_service > family_service_center,family_service_center,Family Service Center,2,services_and_business,false,family_service, -services_and_business > family_service > funeral_service,funeral_service,Funeral Service,2,services_and_business,false,family_service, -services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,3,services_and_business,false,family_service, -services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,3,services_and_business,false,family_service, -services_and_business > family_service > genealogist,genealogist,Genealogist,2,services_and_business,false,family_service, -services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,2,services_and_business,false,family_service, -services_and_business > family_service > nanny_service,nanny_service,Nanny Service,2,services_and_business,false,family_service, -services_and_business > financial_service,financial_service,Financial Service,1,services_and_business,true,financial_service, -services_and_business > financial_service > accountant,accountant,Accountant,2,services_and_business,false,financial_service, -services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,2,services_and_business,false,financial_service, -services_and_business > financial_service > atm,atm,ATM,2,services_and_business,true,atm, -services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,2,services_and_business,true,bank_or_credit_union, -services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,3,services_and_business,false,bank_or_credit_union, -services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,3,services_and_business,false,bank_or_credit_union, -services_and_business > financial_service > broker,broker,Broker,2,services_and_business,false,financial_service, -services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,3,services_and_business,false,financial_service, -services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,3,services_and_business,false,financial_service, -services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,2,services_and_business,false,financial_service, -services_and_business > financial_service > business_financing,business_financing,Business Financing,2,services_and_business,false,financial_service, -services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,2,services_and_business,false,financial_service, -services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,2,services_and_business,false,financial_service, -services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,2,services_and_business,false,financial_service, -services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,2,services_and_business,false,financial_service, -services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,2,services_and_business,false,financial_service, -services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,2,services_and_business,false,financial_service, -services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,2,services_and_business,false,financial_service, -services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,2,services_and_business,false,financial_service, -services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,2,services_and_business,false,financial_service, -services_and_business > financial_service > holding_company,holding_company,Holding Company,2,services_and_business,false,financial_service, -services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,2,services_and_business,false,financial_service, -services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,3,services_and_business,false,financial_service, -services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,3,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,2,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,3,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,3,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,3,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,3,services_and_business,false,financial_service, -services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,3,services_and_business,false,financial_service, -services_and_business > financial_service > investing,investing,Investing,2,services_and_business,false,financial_service, -services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,2,services_and_business,false,financial_service, -services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,2,services_and_business,false,financial_service, -services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,2,services_and_business,false,financial_service, -services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,2,services_and_business,false,financial_service, -services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,2,services_and_business,false,financial_service, -services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,2,services_and_business,false,financial_service, -services_and_business > financial_service > tax_service,tax_service,Tax Service,2,services_and_business,false,financial_service, -services_and_business > financial_service > trusts,trusts,Trusts,2,services_and_business,false,financial_service, -services_and_business > home_service,home_service,Home Service,1,services_and_business,true,home_service, -services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,2,services_and_business,false,home_service, -services_and_business > home_service > antenna_service,antenna_service,Antenna Service,2,services_and_business,false,home_service, -services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,2,services_and_business,false,home_service, -services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,2,services_and_business,false,home_service, -services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,2,services_and_business,false,home_service, -services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,2,services_and_business,false,home_service, -services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,2,services_and_business,false,home_service, -services_and_business > home_service > carpenter,carpenter,Carpenter,2,services_and_business,false,home_service, -services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,2,services_and_business,false,home_service, +services_and_business > family_service > adoption_service,adoption_service,Adoption Service,2,services_and_business,false,family_service,1137 +services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,2,services_and_business,false,family_service,23193 +services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,3,services_and_business,false,family_service,96833 +services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,2,services_and_business,false,family_service,30 +services_and_business > family_service > family_service_center,family_service_center,Family Service Center,2,services_and_business,false,family_service,450 +services_and_business > family_service > funeral_service,funeral_service,Funeral Service,2,services_and_business,false,family_service,106769 +services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,3,services_and_business,false,family_service,5363 +services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,3,services_and_business,false,family_service,213 +services_and_business > family_service > genealogist,genealogist,Genealogist,2,services_and_business,false,family_service,757 +services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,2,services_and_business,false,family_service,2089 +services_and_business > family_service > nanny_service,nanny_service,Nanny Service,2,services_and_business,false,family_service,1024 +services_and_business > financial_service,financial_service,Financial Service,1,services_and_business,true,financial_service,313147 +services_and_business > financial_service > accountant,accountant,Accountant,2,services_and_business,false,financial_service,176951 +services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,2,services_and_business,false,financial_service,23411 +services_and_business > financial_service > atm,atm,ATM,2,services_and_business,true,atm,342719 +services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,2,services_and_business,true,bank_or_credit_union,358594 +services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,3,services_and_business,false,bank_or_credit_union,234566 +services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,3,services_and_business,false,bank_or_credit_union,69423 +services_and_business > financial_service > broker,broker,Broker,2,services_and_business,false,financial_service,8156 +services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,3,services_and_business,false,financial_service,2391 +services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,3,services_and_business,false,financial_service,10730 +services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,2,services_and_business,false,financial_service,345 +services_and_business > financial_service > business_financing,business_financing,Business Financing,2,services_and_business,false,financial_service,282 +services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,2,services_and_business,false,financial_service,11241 +services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,2,services_and_business,false,financial_service,191 +services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,2,services_and_business,false,financial_service,3868 +services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,2,services_and_business,false,financial_service,7867 +services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,2,services_and_business,false,financial_service,17552 +services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,2,services_and_business,false,financial_service,413 +services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,2,services_and_business,false,financial_service,786 +services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,2,services_and_business,false,financial_service,65596 +services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,2,services_and_business,false,financial_service,1893 +services_and_business > financial_service > holding_company,holding_company,Holding Company,2,services_and_business,false,financial_service,1015 +services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,2,services_and_business,false,financial_service,35157 +services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,3,services_and_business,false,financial_service,1301 +services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,3,services_and_business,false,financial_service,23663 +services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,2,services_and_business,false,financial_service,303702 +services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,3,services_and_business,false,financial_service,37594 +services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,3,services_and_business,false,financial_service,34 +services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,3,services_and_business,false,financial_service,34 +services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,3,services_and_business,false,financial_service,577 +services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,3,services_and_business,false,financial_service,11234 +services_and_business > financial_service > investing,investing,Investing,2,services_and_business,false,financial_service,24554 +services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,2,services_and_business,false,financial_service,103 +services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,2,services_and_business,false,financial_service,151147 +services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,2,services_and_business,false,financial_service,55452 +services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,2,services_and_business,false,financial_service,299 +services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,2,services_and_business,false,financial_service,254 +services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,2,services_and_business,false,financial_service,11519 +services_and_business > financial_service > tax_service,tax_service,Tax Service,2,services_and_business,false,financial_service,37965 +services_and_business > financial_service > trusts,trusts,Trusts,2,services_and_business,false,financial_service,71415 +services_and_business > home_service,home_service,Home Service,1,services_and_business,true,home_service,151878 +services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,2,services_and_business,false,home_service,1307 +services_and_business > home_service > antenna_service,antenna_service,Antenna Service,2,services_and_business,false,home_service,125 +services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,2,services_and_business,false,home_service,44541 +services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,2,services_and_business,false,home_service,204 +services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,2,services_and_business,false,home_service,6249 +services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,2,services_and_business,false,home_service,330 +services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,2,services_and_business,false,home_service,7706 +services_and_business > home_service > carpenter,carpenter,Carpenter,2,services_and_business,false,home_service,86482 +services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,2,services_and_business,false,home_service,18689 services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,2,services_and_business,false,home_service, -services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,2,services_and_business,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,services_and_business,false,home_service, -services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,3,services_and_business,false,home_service, -services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,3,services_and_business,false,home_service, -services_and_business > home_service > childproofing,childproofing,Childproofing,2,services_and_business,false,home_service, -services_and_business > home_service > chimney_service,chimney_service,Chimney Service,2,services_and_business,false,home_service, -services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,3,services_and_business,false,home_service, -services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,2,services_and_business,false,home_service, -services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,2,services_and_business,false,home_service, +services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,2,services_and_business,false,home_service,794 +services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service,2,services_and_business,false,home_service,187 +services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,3,services_and_business,false,home_service,1142 +services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,3,services_and_business,false,home_service,88749 +services_and_business > home_service > childproofing,childproofing,Childproofing,2,services_and_business,false,home_service,21 +services_and_business > home_service > chimney_service,chimney_service,Chimney Service,2,services_and_business,false,home_service,221 +services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,3,services_and_business,false,home_service,7074 +services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,2,services_and_business,false,home_service,179 +services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,2,services_and_business,false,home_service,39 services_and_business > home_service > community_book_box,community_book_box,Community Book Box,2,services_and_business,false,home_service, -services_and_business > home_service > contractor,contractor,Contractor,2,services_and_business,false,home_service, -services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,3,services_and_business,false,home_service, -services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,3,services_and_business,false,home_service, -services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,3,services_and_business,false,home_service, -services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,3,services_and_business,false,home_service, -services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,2,services_and_business,false,home_service, -services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,2,services_and_business,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,services_and_business,false,home_service, -services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,2,services_and_business,false,home_service, -services_and_business > home_service > demolition_service,demolition_service,Demolition Service,2,services_and_business,false,home_service, -services_and_business > home_service > donation_center,donation_center,Donation Center,2,services_and_business,false,home_service, -services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,2,services_and_business,false,home_service, -services_and_business > home_service > drywall_service,drywall_service,Drywall Service,2,services_and_business,false,home_service, -services_and_business > home_service > electrician,electrician,Electrician,2,services_and_business,false,home_service, -services_and_business > home_service > excavation_service,excavation_service,Excavation Service,2,services_and_business,false,home_service, -services_and_business > home_service > exterior_design,exterior_design,Exterior Design,2,services_and_business,false,home_service, -services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,2,services_and_business,false,home_service, -services_and_business > home_service > feng_shui,feng_shui,Feng Shui,2,services_and_business,false,home_service, -services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,2,services_and_business,false,home_service, -services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,2,services_and_business,false,home_service, -services_and_business > home_service > firewood,firewood,Firewood,2,services_and_business,false,home_service, -services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,2,services_and_business,false,home_service, -services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,2,services_and_business,false,home_service, -services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,2,services_and_business,false,home_service, -services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,2,services_and_business,false,home_service, -services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,2,services_and_business,false,home_service, -services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,2,services_and_business,false,home_service, -services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,2,services_and_business,false,home_service, -services_and_business > home_service > grout_service,grout_service,Grout Service,2,services_and_business,false,home_service, -services_and_business > home_service > gutter_service,gutter_service,Gutter Service,2,services_and_business,false,home_service, -services_and_business > home_service > handyman,handyman,Handyman,2,services_and_business,false,home_service, -services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,2,services_and_business,false,home_service, -services_and_business > home_service > home_automation,home_automation,Home Automation,2,services_and_business,false,home_service, -services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,2,services_and_business,false,home_service, -services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,2,services_and_business,false,home_service, -services_and_business > home_service > home_inspector,home_inspector,Home Inspector,2,services_and_business,false,home_service, -services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,2,services_and_business,false,home_service, -services_and_business > home_service > home_security,home_security,Home Security,2,services_and_business,false,home_service, -services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,2,services_and_business,false,home_service, -services_and_business > home_service > house_sitting,house_sitting,House Sitting,2,services_and_business,false,home_service, -services_and_business > home_service > hvac_service,hvac_service,HVAC Service,2,services_and_business,false,home_service, -services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,2,services_and_business,false,home_service, -services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,2,services_and_business,false,home_service, -services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,2,services_and_business,false,home_service, -services_and_business > home_service > interior_design,interior_design,Interior Design,2,services_and_business,false,home_service, -services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,2,services_and_business,false,home_service, -services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,2,services_and_business,false,home_service, -services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,2,services_and_business,false,home_service, -services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,2,services_and_business,false,home_service, -services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,2,services_and_business,false,home_service, -services_and_business > home_service > landscaping,landscaping,Landscaping,2,services_and_business,false,home_service, -services_and_business > home_service > landscaping > gardener,gardener,Gardener,3,services_and_business,false,home_service, -services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,3,services_and_business,false,home_service, -services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,3,services_and_business,false,home_service, -services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,3,services_and_business,false,home_service, -services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,2,services_and_business,false,home_service, -services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,2,services_and_business,false,home_service, -services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,2,services_and_business,false,home_service, -services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,2,services_and_business,false,home_service, -services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,2,services_and_business,false,home_service, -services_and_business > home_service > mover,mover,Mover,2,services_and_business,false,home_service, -services_and_business > home_service > packing_service,packing_service,Packing Service,2,services_and_business,false,home_service, -services_and_business > home_service > painting,painting,Painting,2,services_and_business,false,home_service, -services_and_business > home_service > patio_covers,patio_covers,Patio Covers,2,services_and_business,false,home_service, -services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,2,services_and_business,false,home_service, -services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,2,services_and_business,false,home_service, -services_and_business > home_service > plasterer,plasterer,Plasterer,2,services_and_business,false,home_service, -services_and_business > home_service > plumbing,plumbing,Plumbing,2,services_and_business,false,home_service, -services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,3,services_and_business,false,home_service, -services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,2,services_and_business,false,home_service, -services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,2,services_and_business,false,home_service, -services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,2,services_and_business,false,home_service, -services_and_business > home_service > recycling_center,recycling_center,Recycling Center,2,services_and_business,false,home_service, -services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,2,services_and_business,false,home_service, -services_and_business > home_service > security_systems,security_systems,Security Systems,2,services_and_business,false,home_service, -services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,2,services_and_business,false,home_service, -services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,3,services_and_business,false,home_service, -services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,2,services_and_business,false,home_service, -services_and_business > home_service > shutters,shutters,Shutters,2,services_and_business,false,home_service, -services_and_business > home_service > siding,siding,Siding,2,services_and_business,false,home_service, -services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,2,services_and_business,false,home_service, -services_and_business > home_service > solar_installation,solar_installation,Solar Installation,2,services_and_business,false,home_service, -services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,2,services_and_business,false,home_service, -services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,2,services_and_business,false,home_service, -services_and_business > home_service > stucco_service,stucco_service,Stucco Service,2,services_and_business,false,home_service, -services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,2,services_and_business,false,home_service, -services_and_business > home_service > tiling,tiling,Tiling,2,services_and_business,false,home_service, -services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,2,services_and_business,false,home_service, -services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,2,services_and_business,false,home_service, -services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,2,services_and_business,false,home_service, -services_and_business > home_service > water_delivery,water_delivery,Water Delivery,2,services_and_business,false,home_service, -services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,2,services_and_business,false,home_service, -services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,2,services_and_business,false,home_service, -services_and_business > home_service > waterproofing,waterproofing,Waterproofing,2,services_and_business,false,home_service, -services_and_business > home_service > well_drilling,well_drilling,Well Drilling,2,services_and_business,false,home_service, -services_and_business > home_service > window_washing,window_washing,Window Washing,2,services_and_business,false,home_service, -services_and_business > home_service > windows_installation,windows_installation,Windows Installation,2,services_and_business,false,home_service, -services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,3,services_and_business,false,home_service, +services_and_business > home_service > contractor,contractor,Contractor,2,services_and_business,false,home_service,328751 +services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,3,services_and_business,false,home_service,4819 +services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,3,services_and_business,false,home_service,10895 +services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,3,services_and_business,false,home_service,17930 +services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,3,services_and_business,false,home_service,10770 +services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,2,services_and_business,false,home_service,27141 +services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,2,services_and_business,false,home_service,12798 +services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,Fire and Water Damage Restoration,3,services_and_business,false,home_service,7829 +services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,2,services_and_business,false,home_service,1764 +services_and_business > home_service > demolition_service,demolition_service,Demolition Service,2,services_and_business,false,home_service,2240 +services_and_business > home_service > donation_center,donation_center,Donation Center,2,services_and_business,false,home_service,396 +services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,2,services_and_business,false,home_service,3508 +services_and_business > home_service > drywall_service,drywall_service,Drywall Service,2,services_and_business,false,home_service,4120 +services_and_business > home_service > electrician,electrician,Electrician,2,services_and_business,false,home_service,120027 +services_and_business > home_service > excavation_service,excavation_service,Excavation Service,2,services_and_business,false,home_service,17406 +services_and_business > home_service > exterior_design,exterior_design,Exterior Design,2,services_and_business,false,home_service,102 +services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,2,services_and_business,false,home_service,18025 +services_and_business > home_service > feng_shui,feng_shui,Feng Shui,2,services_and_business,false,home_service,49 +services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,2,services_and_business,false,home_service,25857 +services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,2,services_and_business,false,home_service,7937 +services_and_business > home_service > firewood,firewood,Firewood,2,services_and_business,false,home_service,456 +services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,2,services_and_business,false,home_service,615 +services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,2,services_and_business,false,home_service,31407 +services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,2,services_and_business,false,home_service,600 +services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,2,services_and_business,false,home_service,703 +services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,2,services_and_business,false,home_service,1970 +services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,2,services_and_business,false,home_service,20276 +services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,2,services_and_business,false,home_service,38290 +services_and_business > home_service > grout_service,grout_service,Grout Service,2,services_and_business,false,home_service,288 +services_and_business > home_service > gutter_service,gutter_service,Gutter Service,2,services_and_business,false,home_service,7060 +services_and_business > home_service > handyman,handyman,Handyman,2,services_and_business,false,home_service,14458 +services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,2,services_and_business,false,home_service,33 +services_and_business > home_service > home_automation,home_automation,Home Automation,2,services_and_business,false,home_service,1097 +services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,2,services_and_business,false,home_service,123054 +services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,2,services_and_business,false,home_service,120 +services_and_business > home_service > home_inspector,home_inspector,Home Inspector,2,services_and_business,false,home_service,11733 +services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,2,services_and_business,false,home_service,113 +services_and_business > home_service > home_security,home_security,Home Security,2,services_and_business,false,home_service,29716 +services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,2,services_and_business,false,home_service,617 +services_and_business > home_service > house_sitting,house_sitting,House Sitting,2,services_and_business,false,home_service,512 +services_and_business > home_service > hvac_service,hvac_service,HVAC Service,2,services_and_business,false,home_service,132266 +services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,2,services_and_business,false,home_service,35 +services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,2,services_and_business,false,home_service,117 +services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,2,services_and_business,false,home_service,2606 +services_and_business > home_service > interior_design,interior_design,Interior Design,2,services_and_business,false,home_service,129816 +services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,2,services_and_business,false,home_service,2200 +services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,2,services_and_business,false,home_service,3031 +services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,2,services_and_business,false,home_service,71344 +services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,2,services_and_business,false,home_service,5002 +services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,2,services_and_business,false,home_service,293 +services_and_business > home_service > landscaping,landscaping,Landscaping,2,services_and_business,false,home_service,85973 +services_and_business > home_service > landscaping > gardener,gardener,Gardener,3,services_and_business,false,home_service,40551 +services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,3,services_and_business,false,home_service,8996 +services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,3,services_and_business,false,home_service,5355 +services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,3,services_and_business,false,home_service,26175 +services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,2,services_and_business,false,home_service,136 +services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,2,services_and_business,false,home_service,419 +services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,2,services_and_business,false,home_service,26076 +services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,2,services_and_business,false,home_service,4 +services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,2,services_and_business,false,home_service,75 +services_and_business > home_service > mover,mover,Mover,2,services_and_business,false,home_service,14144 +services_and_business > home_service > packing_service,packing_service,Packing Service,2,services_and_business,false,home_service,2332 +services_and_business > home_service > painting,painting,Painting,2,services_and_business,false,home_service,58586 +services_and_business > home_service > patio_covers,patio_covers,Patio Covers,2,services_and_business,false,home_service,4993 +services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,2,services_and_business,false,home_service,834 +services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,2,services_and_business,false,home_service,42345 +services_and_business > home_service > plasterer,plasterer,Plasterer,2,services_and_business,false,home_service,575 +services_and_business > home_service > plumbing,plumbing,Plumbing,2,services_and_business,false,home_service,97862 +services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,3,services_and_business,false,home_service,96 +services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,2,services_and_business,false,home_service,3364 +services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,2,services_and_business,false,home_service,26936 +services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,2,services_and_business,false,home_service,2766 +services_and_business > home_service > recycling_center,recycling_center,Recycling Center,2,services_and_business,false,home_service,28911 +services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,2,services_and_business,false,home_service,523 +services_and_business > home_service > security_systems,security_systems,Security Systems,2,services_and_business,false,home_service,7332 +services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,2,services_and_business,false,home_service,49857 +services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,3,services_and_business,false,home_service,3713 +services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,2,services_and_business,false,home_service,2507 +services_and_business > home_service > shutters,shutters,Shutters,2,services_and_business,false,home_service,221 +services_and_business > home_service > siding,siding,Siding,2,services_and_business,false,home_service,946 +services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,2,services_and_business,false,home_service,330 +services_and_business > home_service > solar_installation,solar_installation,Solar Installation,2,services_and_business,false,home_service,20853 +services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,2,services_and_business,false,home_service,17 +services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,2,services_and_business,false,home_service,5640 +services_and_business > home_service > stucco_service,stucco_service,Stucco Service,2,services_and_business,false,home_service,465 +services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,2,services_and_business,false,home_service,11322 +services_and_business > home_service > tiling,tiling,Tiling,2,services_and_business,false,home_service,8412 +services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,2,services_and_business,false,home_service,2446 +services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,2,services_and_business,false,home_service,32 +services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,2,services_and_business,false,home_service,96 +services_and_business > home_service > water_delivery,water_delivery,Water Delivery,2,services_and_business,false,home_service,61 +services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,2,services_and_business,false,home_service,1753 +services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,2,services_and_business,false,home_service,1207 +services_and_business > home_service > waterproofing,waterproofing,Waterproofing,2,services_and_business,false,home_service,1288 +services_and_business > home_service > well_drilling,well_drilling,Well Drilling,2,services_and_business,false,home_service,7766 +services_and_business > home_service > window_washing,window_washing,Window Washing,2,services_and_business,false,home_service,2097 +services_and_business > home_service > windows_installation,windows_installation,Windows Installation,2,services_and_business,false,home_service,32290 +services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,3,services_and_business,false,home_service,176 services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,1,services_and_business,true,housing_or_property_service, -services_and_business > housing_or_property_service > apartment,apartment,Apartment,2,services_and_business,true,apartment, -services_and_business > housing_or_property_service > condominium,condominium,Condominium,2,services_and_business,true,condominium, -services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,2,services_and_business,false,housing_or_property_service, -services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,2,services_and_business,false,housing_or_property_service, -services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,2,services_and_business,false,housing_or_property_service, +services_and_business > housing_or_property_service > apartment,apartment,Apartment,2,services_and_business,true,apartment,28150 +services_and_business > housing_or_property_service > condominium,condominium,Condominium,2,services_and_business,true,condominium,13157 +services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,2,services_and_business,false,housing_or_property_service,1902 +services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,2,services_and_business,false,housing_or_property_service,125 +services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,2,services_and_business,false,housing_or_property_service,12068 services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,2,services_and_business,true,senior_living_facility, -services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,3,services_and_business,false,senior_living_facility, -services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,3,services_and_business,false,senior_living_facility, -services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,3,services_and_business,false,senior_living_facility, -services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,2,services_and_business,false,housing_or_property_service, +services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,3,services_and_business,false,senior_living_facility,27634 +services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,3,services_and_business,false,senior_living_facility,15 +services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,3,services_and_business,false,senior_living_facility,145353 +services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,2,services_and_business,false,housing_or_property_service,974 services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,1,services_and_business,true,industrial_facility_or_service, -services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,2,services_and_business,false,industrial_facility_or_service, -services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,2,services_and_business,false,industrial_facility_or_service, -services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,2,services_and_business,false,industrial_facility_or_service, -services_and_business > laundry_service,laundry_service,Laundry Service,1,services_and_business,true,laundry_service, -services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,2,services_and_business,false,laundry_service, -services_and_business > laundry_service > laundromat,laundromat,Laundromat,2,services_and_business,false,laundry_service, -services_and_business > legal_service,legal_service,Legal Service,1,services_and_business,true,legal_service, -services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,2,services_and_business,true,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,3,services_and_business,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,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,3,services_and_business,false,attorney_or_law_firm, -services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,2,services_and_business,false,legal_service, -services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,2,services_and_business,false,legal_service, -services_and_business > legal_service > mediator,mediator,Mediator,2,services_and_business,false,legal_service, -services_and_business > legal_service > notary_public,notary_public,Notary Public,2,services_and_business,false,legal_service, -services_and_business > legal_service > patent_law,patent_law,Patent Law,2,services_and_business,false,legal_service, -services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,2,services_and_business,false,legal_service, -services_and_business > legal_service > process_server,process_server,Process Server,2,services_and_business,false,legal_service, -services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,2,services_and_business,false,legal_service, -services_and_business > media_service,media_service,Media Service,1,services_and_business,true,media_service, -services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,2,services_and_business,false,media_service, -services_and_business > media_service > bookbinding,bookbinding,Bookbinding,2,services_and_business,false,media_service, -services_and_business > media_service > calligraphy,calligraphy,Calligraphy,2,services_and_business,false,media_service, -services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,2,services_and_business,false,media_service, -services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,2,services_and_business,false,media_service, -services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,2,services_and_business,false,media_service, -services_and_business > media_service > engraving,engraving,Engraving,2,services_and_business,false,media_service, -services_and_business > media_service > media_critic,media_critic,Media Critic,2,services_and_business,false,media_service, -services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,3,services_and_business,false,media_service, -services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,3,services_and_business,false,media_service, -services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company,media_news_company,Media News Company,2,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > music_production,music_production,Music Production,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > publisher,publisher,Publisher,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,3,services_and_business,true,radio_station, -services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_company > television_station,television_station,Television Station,3,services_and_business,true,television_station, -services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,3,services_and_business,false,media_service, -services_and_business > media_service > media_news_website,media_news_website,Media News Website,2,services_and_business,false,media_service, -services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,2,services_and_business,false,media_service, -services_and_business > media_service > music_production_service,music_production_service,Music Production Service,2,services_and_business,false,media_service, -services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,2,services_and_business,false,media_service, -services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,3,services_and_business,false,media_service, -services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,3,services_and_business,false,media_service, -services_and_business > media_service > photography_service,photography_service,Photography Service,2,services_and_business,false,media_service, -services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,3,services_and_business,false,media_service, -services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,3,services_and_business,false,media_service, -services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,3,services_and_business,false,media_service, -services_and_business > media_service > print_media,print_media,Print Media,2,services_and_business,false,media_service, -services_and_business > media_service > record_label,record_label,Record Label,2,services_and_business,false,media_service, -services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,2,services_and_business,false,media_service, -services_and_business > media_service > studio_taping,studio_taping,Studio Taping,2,services_and_business,false,media_service, -services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,2,services_and_business,false,media_service, -services_and_business > media_service > video_film_production,video_film_production,Video Film Production,2,services_and_business,false,media_service, -services_and_business > media_service > weather_station,weather_station,Weather Station,2,services_and_business,false,media_service, -services_and_business > printing_service,printing_service,Printing Service,1,services_and_business,true,printing_service, -services_and_business > printing_service > 3d_printing_service,3d_printing_service,3d Printing Service,2,services_and_business,false,printing_service, -services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,2,services_and_business,false,printing_service, -services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,2,services_and_business,false,printing_service, +services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,2,services_and_business,false,industrial_facility_or_service,167 +services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,2,services_and_business,false,industrial_facility_or_service,6021 +services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,2,services_and_business,false,industrial_facility_or_service,3216 +services_and_business > laundry_service,laundry_service,Laundry Service,1,services_and_business,true,laundry_service,16277 +services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,2,services_and_business,false,laundry_service,50734 +services_and_business > laundry_service > laundromat,laundromat,Laundromat,2,services_and_business,false,laundry_service,103129 +services_and_business > legal_service,legal_service,Legal Service,1,services_and_business,true,legal_service,67183 +services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,2,services_and_business,true,attorney_or_law_firm,316077 +services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,3,services_and_business,false,attorney_or_law_firm,2885 +services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,3,services_and_business,false,attorney_or_law_firm,7873 +services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,3,services_and_business,false,attorney_or_law_firm,3250 +services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,3,services_and_business,false,attorney_or_law_firm,231 +services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,3,services_and_business,false,attorney_or_law_firm,349 +services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,3,services_and_business,false,attorney_or_law_firm,19239 +services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,3,services_and_business,false,attorney_or_law_firm,2121 +services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,divorce_and_family_law,Divorce and Family Law,3,services_and_business,false,attorney_or_law_firm,22793 +services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,3,services_and_business,false,attorney_or_law_firm,622 +services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,3,services_and_business,false,attorney_or_law_firm,8928 +services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,3,services_and_business,false,attorney_or_law_firm,243 +services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,3,services_and_business,false,attorney_or_law_firm,3111 +services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,3,services_and_business,false,attorney_or_law_firm,1292 +services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,3,services_and_business,false,attorney_or_law_firm,13742 +services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,ip_and_internet_law,Ip and Internet Law,3,services_and_business,false,attorney_or_law_firm,2227 +services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,3,services_and_business,false,attorney_or_law_firm,1326 +services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,3,services_and_business,false,attorney_or_law_firm,551 +services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,3,services_and_business,false,attorney_or_law_firm,21505 +services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,3,services_and_business,false,attorney_or_law_firm,3697 +services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,3,services_and_business,false,attorney_or_law_firm,641 +services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,3,services_and_business,false,attorney_or_law_firm,2818 +services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,3,services_and_business,false,attorney_or_law_firm,32 +services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,wills_trusts_and_probate,Wills Trusts and Probate,3,services_and_business,false,attorney_or_law_firm,5986 +services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,3,services_and_business,false,attorney_or_law_firm,144 +services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,2,services_and_business,false,legal_service,6067 +services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,2,services_and_business,false,legal_service,522 +services_and_business > legal_service > mediator,mediator,Mediator,2,services_and_business,false,legal_service,728 +services_and_business > legal_service > notary_public,notary_public,Notary Public,2,services_and_business,false,legal_service,31228 +services_and_business > legal_service > patent_law,patent_law,Patent Law,2,services_and_business,false,legal_service,963 +services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,2,services_and_business,false,legal_service,7257 +services_and_business > legal_service > process_server,process_server,Process Server,2,services_and_business,false,legal_service,4678 +services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,2,services_and_business,false,legal_service,75 +services_and_business > media_service,media_service,Media Service,1,services_and_business,true,media_service,13702 +services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,2,services_and_business,false,media_service,3868 +services_and_business > media_service > bookbinding,bookbinding,Bookbinding,2,services_and_business,false,media_service,1353 +services_and_business > media_service > calligraphy,calligraphy,Calligraphy,2,services_and_business,false,media_service,27 +services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,2,services_and_business,false,media_service,593 +services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,2,services_and_business,false,media_service,241 +services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,2,services_and_business,false,media_service,592 +services_and_business > media_service > engraving,engraving,Engraving,2,services_and_business,false,media_service,461 +services_and_business > media_service > media_critic,media_critic,Media Critic,2,services_and_business,false,media_service,65 +services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,3,services_and_business,false,media_service,9 +services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,3,services_and_business,false,media_service,10 +services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,3,services_and_business,false,media_service,22 +services_and_business > media_service > media_news_company,media_news_company,Media News Company,2,services_and_business,false,media_service,23214 +services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,3,services_and_business,false,media_service,2787 +services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,3,services_and_business,false,media_service,2767 +services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,3,services_and_business,false,media_service,49938 +services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,3,services_and_business,false,media_service,4588 +services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,3,services_and_business,false,media_service,24427 +services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,3,services_and_business,false,media_service,15306 +services_and_business > media_service > media_news_company > music_production,music_production,Music Production,3,services_and_business,false,media_service,52884 +services_and_business > media_service > media_news_company > publisher,publisher,Publisher,3,services_and_business,false,media_service,44126 +services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,3,services_and_business,true,radio_station,24573 +services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,3,services_and_business,false,media_service,1738 +services_and_business > media_service > media_news_company > television_station,television_station,Television Station,3,services_and_business,true,television_station,1073 +services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,3,services_and_business,false,media_service,22 +services_and_business > media_service > media_news_website,media_news_website,Media News Website,2,services_and_business,false,media_service,6598 +services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,2,services_and_business,false,media_service,900 +services_and_business > media_service > music_production_service,music_production_service,Music Production Service,2,services_and_business,false,media_service,452 +services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,2,services_and_business,false,media_service,338 +services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,3,services_and_business,false,media_service,979 +services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,3,services_and_business,false,media_service,149 +services_and_business > media_service > photography_service,photography_service,Photography Service,2,services_and_business,false,media_service,10838 +services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,3,services_and_business,false,media_service,90 +services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,3,services_and_business,false,media_service,90581 +services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,3,services_and_business,false,media_service,5664 +services_and_business > media_service > print_media,print_media,Print Media,2,services_and_business,false,media_service,21014 +services_and_business > media_service > record_label,record_label,Record Label,2,services_and_business,false,media_service,6956 +services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,2,services_and_business,false,media_service,2634 +services_and_business > media_service > studio_taping,studio_taping,Studio Taping,2,services_and_business,false,media_service,90 +services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,2,services_and_business,false,media_service,15179 +services_and_business > media_service > video_film_production,video_film_production,Video Film Production,2,services_and_business,false,media_service,3807 +services_and_business > media_service > weather_station,weather_station,Weather Station,2,services_and_business,false,media_service,313 +services_and_business > printing_service,printing_service,Printing Service,1,services_and_business,true,printing_service,298475 +services_and_business > printing_service > 3d_printing_service,3d_printing_service,3d Printing Service,2,services_and_business,false,printing_service,822 +services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,2,services_and_business,false,printing_service,1341 +services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,2,services_and_business,false,printing_service,115 services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,2,services_and_business,false,printing_service, -services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-shirt Printing Service,3,services_and_business,false,printing_service, -services_and_business > professional_service,professional_service,Professional Service,1,services_and_business,true,professional_service, -services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > billing_service,billing_service,Billing Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,2,services_and_business,false,professional_service, -services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,2,services_and_business,false,professional_service, -services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,2,services_and_business,false,professional_service, -services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,3,services_and_business,false,professional_service, -services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,3,services_and_business,false,professional_service, -services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,3,services_and_business,false,professional_service, -services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,2,services_and_business,false,professional_service, -services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,3,services_and_business,false,professional_service, -services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,2,services_and_business,false,professional_service, -services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > public_relations,public_relations,Public Relations,2,services_and_business,false,professional_service, -services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,2,services_and_business,false,professional_service, -services_and_business > professional_service > translation_service,translation_service,Translation Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > typing_service,typing_service,Typing Service,2,services_and_business,false,professional_service, -services_and_business > professional_service > writing_service,writing_service,Writing Service,2,services_and_business,false,professional_service, -services_and_business > real_estate_service,real_estate_service,Real Estate Service,1,services_and_business,true,real_estate_service, -services_and_business > real_estate_service > builder,builder,Builder,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,3,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > home_organization,home_organization,Home Organization,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > home_staging,home_staging,Home Staging,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > property_management,property_management,Property Management,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,3,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,2,services_and_business,false,real_estate_service, -services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,2,services_and_business,false,real_estate_service, -services_and_business > rental_service,rental_service,Rental Service,1,services_and_business,true,rental_service, -services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,2,services_and_business,false,rental_service, -services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,2,services_and_business,false,rental_service, -services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,2,services_and_business,false,rental_service, -services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,2,services_and_business,false,rental_service, -services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,2,services_and_business,false,rental_service, -services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,2,services_and_business,false,rental_service, +services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-shirt Printing Service,3,services_and_business,false,printing_service,43046 +services_and_business > professional_service,professional_service,Professional Service,1,services_and_business,true,professional_service,1267482 +services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,2,services_and_business,false,professional_service,231973 +services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,2,services_and_business,false,professional_service,729 +services_and_business > professional_service > billing_service,billing_service,Billing Service,2,services_and_business,false,professional_service,676 +services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,2,services_and_business,false,professional_service,2159 +services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,2,services_and_business,false,professional_service,33463 +services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,2,services_and_business,false,professional_service,7160 +services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,2,services_and_business,false,professional_service,151 +services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,2,services_and_business,false,professional_service,20553 +services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,3,services_and_business,false,professional_service,285 +services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,3,services_and_business,false,professional_service,23518 +services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,3,services_and_business,false,professional_service,5232 +services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,2,services_and_business,false,professional_service,846 +services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,2,services_and_business,false,professional_service,10905 +services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,2,services_and_business,false,professional_service,7957 +services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,2,services_and_business,false,professional_service,107 +services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,2,services_and_business,false,professional_service,102515 +services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,3,services_and_business,false,professional_service,5007 +services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,2,services_and_business,false,professional_service,503 +services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,2,services_and_business,false,professional_service,109 +services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,2,services_and_business,false,professional_service,32808 +services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,2,services_and_business,false,professional_service,124986 +services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,2,services_and_business,false,professional_service,7753 +services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,2,services_and_business,false,professional_service,688 +services_and_business > professional_service > public_relations,public_relations,Public Relations,2,services_and_business,false,professional_service,10979 +services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,2,services_and_business,false,professional_service,2102 +services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,2,services_and_business,false,professional_service,10293 +services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,2,services_and_business,false,professional_service,1307 +services_and_business > professional_service > translation_service,translation_service,Translation Service,2,services_and_business,false,professional_service,3539 +services_and_business > professional_service > typing_service,typing_service,Typing Service,2,services_and_business,false,professional_service,108 +services_and_business > professional_service > writing_service,writing_service,Writing Service,2,services_and_business,false,professional_service,3003 +services_and_business > real_estate_service,real_estate_service,Real Estate Service,1,services_and_business,true,real_estate_service,740534 +services_and_business > real_estate_service > builder,builder,Builder,2,services_and_business,false,real_estate_service,15120 +services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,3,services_and_business,false,real_estate_service,124408 +services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,2,services_and_business,false,real_estate_service,33119 +services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,2,services_and_business,false,real_estate_service,448 +services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,2,services_and_business,false,real_estate_service,3770 +services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,2,services_and_business,false,real_estate_service,296 +services_and_business > real_estate_service > home_organization,home_organization,Home Organization,2,services_and_business,false,real_estate_service,1812 +services_and_business > real_estate_service > home_staging,home_staging,Home Staging,2,services_and_business,false,real_estate_service,4264 +services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,2,services_and_business,false,real_estate_service,289 +services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,2,services_and_business,false,real_estate_service,1033 +services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,2,services_and_business,false,real_estate_service,4 +services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,2,services_and_business,false,real_estate_service,24388 +services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,2,services_and_business,false,real_estate_service,7163 +services_and_business > real_estate_service > property_management,property_management,Property Management,2,services_and_business,false,real_estate_service,115520 +services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,2,services_and_business,false,real_estate_service,614266 +services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,3,services_and_business,false,real_estate_service,1316 +services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,2,services_and_business,false,real_estate_service,187 +services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,2,services_and_business,false,real_estate_service,319 +services_and_business > rental_service,rental_service,Rental Service,1,services_and_business,true,rental_service,69201 +services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,2,services_and_business,false,rental_service,1 +services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,2,services_and_business,false,rental_service,1345 +services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,2,services_and_business,false,rental_service,4920 +services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,2,services_and_business,false,rental_service,1825 +services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,2,services_and_business,false,rental_service,8393 +services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,2,services_and_business,false,rental_service,199664 services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,2,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,3,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,3,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,3,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,3,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,3,services_and_business,false,rental_service, -services_and_business > security_service,security_service,Security Service,1,services_and_business,true,security_service, -services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,2,services_and_business,false,security_service, +services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,3,services_and_business,false,rental_service,100731 +services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,3,services_and_business,false,rental_service,2391 +services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,3,services_and_business,false,rental_service,4016 +services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,3,services_and_business,false,rental_service,6215 +services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,3,services_and_business,false,rental_service,45453 +services_and_business > security_service,security_service,Security Service,1,services_and_business,true,security_service,7724 +services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,2,services_and_business,false,security_service,411 services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,1,services_and_business,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,services_and_business,false,shipping_or_delivery_service, -services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,2,services_and_business,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,services_and_business,false,shipping_or_delivery_service, -services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,2,services_and_business,false,shipping_or_delivery_service, -services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,2,services_and_business,false,shipping_or_delivery_service, -services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,2,services_and_business,false,shipping_or_delivery_service, -services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,2,services_and_business,false,shipping_or_delivery_service, -services_and_business > storage_facility,storage_facility,Storage Facility,1,services_and_business,true,storage_facility, -services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,2,services_and_business,false,storage_facility, -services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,2,services_and_business,false,storage_facility, -services_and_business > storage_facility > package_locker,package_locker,Package Locker,2,services_and_business,false,storage_facility, -services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,2,services_and_business,false,storage_facility, -services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,2,services_and_business,false,storage_facility, +services_and_business > shipping_or_delivery_service > courier_and_delivery_service,courier_and_delivery_service,Courier and Delivery Service,2,services_and_business,false,shipping_or_delivery_service,54895 +services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,2,services_and_business,false,shipping_or_delivery_service,437 +services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,packaging_contractors_and_service,Packaging Contractors and Service,2,services_and_business,false,shipping_or_delivery_service,452 +services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,2,services_and_business,false,shipping_or_delivery_service,233650 +services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,2,services_and_business,false,shipping_or_delivery_service,87524 +services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,2,services_and_business,false,shipping_or_delivery_service,1061 +services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,2,services_and_business,false,shipping_or_delivery_service,3612 +services_and_business > storage_facility,storage_facility,Storage Facility,1,services_and_business,true,storage_facility,80256 +services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,2,services_and_business,false,storage_facility,2232 +services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,2,services_and_business,false,storage_facility,462 +services_and_business > storage_facility > package_locker,package_locker,Package Locker,2,services_and_business,false,storage_facility,121868 +services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,2,services_and_business,false,storage_facility,674 +services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,2,services_and_business,false,storage_facility,64145 services_and_business > technical_service,technical_service,Technical Service,1,services_and_business,true,technical_service, -services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,2,services_and_business,false,technical_service, -services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,2,services_and_business,false,technical_service, -services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,2,services_and_business,false,technical_service, -services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,2,services_and_business,false,technical_service, -services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,2,services_and_business,false,technical_service, -services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,2,services_and_business,false,technical_service, -services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,2,services_and_business,false,technical_service, -services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,2,services_and_business,false,technical_service, -services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,2,services_and_business,false,technical_service, -services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,3,services_and_business,false,technical_service, -services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,2,services_and_business,false,technical_service, -services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,3,services_and_business,false,technical_service, -services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,3,services_and_business,false,technical_service, -services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,2,services_and_business,false,technical_service, -services_and_business > technical_service > laboratory,laboratory,Laboratory,2,services_and_business,false,technical_service, -services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,2,services_and_business,false,technical_service, -services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,2,services_and_business,false,technical_service, -services_and_business > technical_service > software_development,software_development,Software Development,2,services_and_business,false,technical_service, -services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,2,services_and_business,false,technical_service, -services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,2,services_and_business,false,technical_service, -services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,2,services_and_business,false,technical_service, -services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,1,services_and_business,true,telecommunications_service, +services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,2,services_and_business,false,technical_service,218 +services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,2,services_and_business,false,technical_service,13744 +services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,2,services_and_business,false,technical_service,8396 +services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,2,services_and_business,false,technical_service,30718 +services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,2,services_and_business,false,technical_service,1938 +services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,2,services_and_business,false,technical_service,8423 +services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,2,services_and_business,false,technical_service,67 +services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,2,services_and_business,false,technical_service,514 +services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,2,services_and_business,false,technical_service,41419 +services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,3,services_and_business,false,technical_service,1274 +services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,2,services_and_business,false,technical_service,175655 +services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,3,services_and_business,false,technical_service,2072 +services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,3,services_and_business,false,technical_service,8599 +services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,2,services_and_business,false,technical_service,49 +services_and_business > technical_service > laboratory,laboratory,Laboratory,2,services_and_business,false,technical_service,14241 +services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,2,services_and_business,false,technical_service,55723 +services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,2,services_and_business,false,technical_service,8 +services_and_business > technical_service > software_development,software_development,Software Development,2,services_and_business,false,technical_service,148533 +services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,2,services_and_business,false,technical_service,5351 +services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,2,services_and_business,false,technical_service,678 +services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,2,services_and_business,false,technical_service,119 +services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,1,services_and_business,true,telecommunications_service,35375 services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,1,services_and_business,true,utility_energy_infrastructure, -services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,2,services_and_business,false,utility_energy_infrastructure, -shopping,shopping,Shopping,0,shopping,true,shopping, -shopping > convenience_store,convenience_store,Convenience Store,1,shopping,true,convenience_store, -shopping > department_store,department_store,Department Store,1,shopping,true,department_store, -shopping > discount_store,discount_store,Discount Store,1,shopping,true,discount_store, -shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,1,shopping,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,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,3,shopping,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,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,3,shopping,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,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,4,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,3,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,2,shopping,false,fashion_and_apparel_store, -shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,3,shopping,false,fashion_and_apparel_store, -shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,1,shopping,true,food_and_beverage_store, -shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > csa_farm,csa_farm,Csa Farm,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,3,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,2,shopping,false,food_and_beverage_store, -shopping > food_and_beverage_store > water_store,water_store,Water Store,2,shopping,false,food_and_beverage_store, -shopping > kiosk,kiosk,Kiosk,1,shopping,true,kiosk, +services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,2,services_and_business,false,utility_energy_infrastructure,69 +shopping,shopping,Shopping,0,shopping,true,shopping,1225096 +shopping > convenience_store,convenience_store,Convenience Store,1,shopping,true,convenience_store,469802 +shopping > department_store,department_store,Department Store,1,shopping,true,department_store,86591 +shopping > discount_store,discount_store,Discount Store,1,shopping,true,discount_store,124970 +shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,1,shopping,true,fashion_and_apparel_store,97108 +shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,baby_gear_and_nursery_store,Baby Gear and Nursery Store,2,shopping,false,fashion_and_apparel_store,5475 +shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,2,shopping,false,fashion_and_apparel_store,897039 +shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,3,shopping,false,fashion_and_apparel_store,55741 +shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,3,shopping,false,fashion_and_apparel_store,119892 +shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,3,shopping,false,fashion_and_apparel_store,1266 +shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,3,shopping,false,fashion_and_apparel_store,233 +shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,3,shopping,false,fashion_and_apparel_store,6818 +shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,3,shopping,false,fashion_and_apparel_store,1310 +shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,3,shopping,false,fashion_and_apparel_store,572 +shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,3,shopping,false,fashion_and_apparel_store,49278 +shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,3,shopping,false,fashion_and_apparel_store,2582 +shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,3,shopping,false,fashion_and_apparel_store,98311 +shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,Plus Size Clothing Store,3,shopping,false,fashion_and_apparel_store,371 +shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,3,shopping,false,fashion_and_apparel_store,2 +shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,3,shopping,false,fashion_and_apparel_store,5198 +shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,Custom T-shirt Store,4,shopping,false,fashion_and_apparel_store,2290 +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,3,shopping,false,fashion_and_apparel_store,1809 +shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,4,shopping,false,fashion_and_apparel_store,48 +shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,3,shopping,false,fashion_and_apparel_store,22370 +shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,3,shopping,false,fashion_and_apparel_store,301400 +shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,2,shopping,false,fashion_and_apparel_store,181002 +shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,3,shopping,false,fashion_and_apparel_store,5463 +shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,2,shopping,false,fashion_and_apparel_store,93907 +shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,3,shopping,false,fashion_and_apparel_store,1407 +shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,3,shopping,false,fashion_and_apparel_store,6541 +shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,2,shopping,false,fashion_and_apparel_store,113370 +shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,2,shopping,false,fashion_and_apparel_store,279379 +shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,3,shopping,false,fashion_and_apparel_store,544 +shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,3,shopping,false,fashion_and_apparel_store,109 +shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,3,shopping,false,fashion_and_apparel_store,4377 +shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,2,shopping,false,fashion_and_apparel_store,3745 +shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,2,shopping,false,fashion_and_apparel_store,25835 +shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,2,shopping,false,fashion_and_apparel_store,244075 +shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,3,shopping,false,fashion_and_apparel_store,981 +shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,1,shopping,true,food_and_beverage_store,65762 +shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,2,shopping,false,food_and_beverage_store,17709 +shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,2,shopping,false,food_and_beverage_store,445 +shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,2,shopping,false,food_and_beverage_store,138455 +shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,2,shopping,false,food_and_beverage_store,13765 +shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,2,shopping,false,food_and_beverage_store,642 +shopping > food_and_beverage_store > csa_farm,csa_farm,Csa Farm,2,shopping,false,food_and_beverage_store,18 +shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,2,shopping,false,food_and_beverage_store,29577 +shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,2,shopping,false,food_and_beverage_store,928726 +shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,3,shopping,false,food_and_beverage_store,821 +shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,3,shopping,false,food_and_beverage_store,2394 +shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,3,shopping,false,food_and_beverage_store,5884 +shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,3,shopping,false,food_and_beverage_store,2006 +shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,3,shopping,false,food_and_beverage_store,36 +shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,3,shopping,false,food_and_beverage_store,10588 +shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,3,shopping,false,food_and_beverage_store,50 +shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,3,shopping,false,food_and_beverage_store,482 +shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,3,shopping,false,food_and_beverage_store,20512 +shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,3,shopping,false,food_and_beverage_store,11 +shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,2,shopping,false,food_and_beverage_store,76534 +shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,2,shopping,false,food_and_beverage_store,3236 +shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,2,shopping,false,food_and_beverage_store,410 +shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,2,shopping,false,food_and_beverage_store,650 +shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,2,shopping,false,food_and_beverage_store,145040 +shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,2,shopping,false,food_and_beverage_store,189 +shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,2,shopping,false,food_and_beverage_store,3844 +shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,3,shopping,false,food_and_beverage_store,668 +shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,2,shopping,false,food_and_beverage_store,56 +shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,2,shopping,false,food_and_beverage_store,2480 +shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,2,shopping,false,food_and_beverage_store,121 +shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,2,shopping,false,food_and_beverage_store,32027 +shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,3,shopping,false,food_and_beverage_store,1840 +shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,3,shopping,false,food_and_beverage_store,1793 +shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,3,shopping,false,food_and_beverage_store,495 +shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,3,shopping,false,food_and_beverage_store,69238 +shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,3,shopping,false,food_and_beverage_store,43 +shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,2,shopping,false,food_and_beverage_store,63044 +shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,2,shopping,false,food_and_beverage_store,45198 +shopping > food_and_beverage_store > water_store,water_store,Water Store,2,shopping,false,food_and_beverage_store,221 +shopping > kiosk,kiosk,Kiosk,1,shopping,true,kiosk,1865 shopping > market,market,Market,1,shopping,true,market, -shopping > market > bazaar,bazaar,Bazaar,2,shopping,false,market, -shopping > market > farmers_market,farmers_market,Farmers Market,2,shopping,true,farmers_market, -shopping > market > health_market,health_market,Health Market,2,shopping,false,market, -shopping > market > holiday_market,holiday_market,Holiday Market,2,shopping,false,market, -shopping > market > market_stall,market_stall,Market Stall,2,shopping,false,market, -shopping > market > night_market,night_market,Night Market,2,shopping,false,market, -shopping > market > public_market,public_market,Public Market,2,shopping,false,market, -shopping > market > shopping_passage,shopping_passage,Shopping Passage,2,shopping,false,market, -shopping > market > street_vendor,street_vendor,Street Vendor,2,shopping,false,market, -shopping > second_hand_store,second_hand_store,Second Hand Store,1,shopping,true,second_hand_store, -shopping > second_hand_store > antique_store,antique_store,Antique Store,2,shopping,false,second_hand_store, -shopping > second_hand_store > flea_market,flea_market,Flea Market,2,shopping,false,second_hand_store, -shopping > second_hand_store > junkyard,junkyard,Junkyard,2,shopping,false,second_hand_store, -shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,2,shopping,false,second_hand_store, -shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,2,shopping,false,second_hand_store, -shopping > shopping_mall,shopping_mall,Shopping Mall,1,shopping,true,shopping_mall, +shopping > market > bazaar,bazaar,Bazaar,2,shopping,false,market,11 +shopping > market > farmers_market,farmers_market,Farmers Market,2,shopping,true,farmers_market,60196 +shopping > market > health_market,health_market,Health Market,2,shopping,false,market,2549 +shopping > market > holiday_market,holiday_market,Holiday Market,2,shopping,false,market,25 +shopping > market > market_stall,market_stall,Market Stall,2,shopping,false,market,2 +shopping > market > night_market,night_market,Night Market,2,shopping,false,market,4497 +shopping > market > public_market,public_market,Public Market,2,shopping,false,market,722 +shopping > market > shopping_passage,shopping_passage,Shopping Passage,2,shopping,false,market,3 +shopping > market > street_vendor,street_vendor,Street Vendor,2,shopping,false,market,253 +shopping > second_hand_store,second_hand_store,Second Hand Store,1,shopping,true,second_hand_store,84231 +shopping > second_hand_store > antique_store,antique_store,Antique Store,2,shopping,false,second_hand_store,57939 +shopping > second_hand_store > flea_market,flea_market,Flea Market,2,shopping,false,second_hand_store,26044 +shopping > second_hand_store > junkyard,junkyard,Junkyard,2,shopping,false,second_hand_store,8362 +shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,2,shopping,false,second_hand_store,29797 +shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,2,shopping,false,second_hand_store,21717 +shopping > shopping_mall,shopping_mall,Shopping Mall,1,shopping,true,shopping_mall,186795 shopping > shopping_service,shopping_service,Shopping Service,1,shopping,true,shopping_service, -shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,2,shopping,false,shopping_service, -shopping > specialty_store,specialty_store,Specialty Store,1,shopping,true,specialty_store, -shopping > specialty_store > adult_store,adult_store,Adult Store,2,shopping,false,specialty_store, +shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,2,shopping,false,shopping_service,303 +shopping > specialty_store,specialty_store,Specialty Store,1,shopping,true,specialty_store,53 +shopping > specialty_store > adult_store,adult_store,Adult Store,2,shopping,false,specialty_store,1645 shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,2,shopping,true,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,3,shopping,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,shopping,false,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,3,shopping,false,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,4,shopping,false,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,4,shopping,false,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,4,shopping,false,animal_and_pet_store, -shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,2,shopping,true,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,3,shopping,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,shopping,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,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,3,shopping,false,arts_crafts_and_hobby_store, -shopping > specialty_store > auction_house,auction_house,Auction House,2,shopping,false,specialty_store, -shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,3,shopping,false,specialty_store, -shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,2,shopping,true,books_music_and_video_store, -shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,3,shopping,false,books_music_and_video_store, -shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,4,shopping,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,shopping,false,books_music_and_video_store, -shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,4,shopping,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,shopping,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,shopping,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,shopping,false,books_music_and_video_store, -shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,3,shopping,false,books_music_and_video_store, -shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,3,shopping,false,books_music_and_video_store, -shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,2,shopping,false,specialty_store, -shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,2,shopping,false,specialty_store, -shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,2,shopping,false,specialty_store, -shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > electronics_store,electronics_store,Electronics Store,2,shopping,true,electronics_store, -shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,3,shopping,false,electronics_store, -shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,3,shopping,false,electronics_store, +shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,3,shopping,false,animal_and_pet_store,570 +shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,Livestock Feed and Supply Store,3,shopping,false,animal_and_pet_store,1323 +shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,3,shopping,false,animal_and_pet_store,163852 +shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,4,shopping,false,animal_and_pet_store,12151 +shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,4,shopping,false,animal_and_pet_store,187 +shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,4,shopping,false,animal_and_pet_store,2325 +shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,2,shopping,true,arts_crafts_and_hobby_store,142261 +shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,3,shopping,false,arts_crafts_and_hobby_store,1852 +shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,3,shopping,false,arts_crafts_and_hobby_store,44 +shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,3,shopping,false,arts_crafts_and_hobby_store,540 +shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,3,shopping,false,arts_crafts_and_hobby_store,18243 +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,3,shopping,false,arts_crafts_and_hobby_store,4064 +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,Embroidery and Crochet Store,4,shopping,false,arts_crafts_and_hobby_store,3876 +shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,knitting_supply_store,Knitting Supply Store,4,shopping,false,arts_crafts_and_hobby_store,1259 +shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,3,shopping,false,arts_crafts_and_hobby_store,54423 +shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,3,shopping,false,arts_crafts_and_hobby_store,5524 +shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,3,shopping,false,arts_crafts_and_hobby_store,29009 +shopping > specialty_store > auction_house,auction_house,Auction House,2,shopping,false,specialty_store,17731 +shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,3,shopping,false,specialty_store,605 +shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,2,shopping,true,books_music_and_video_store,5663 +shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,3,shopping,false,books_music_and_video_store,137135 +shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,4,shopping,false,books_music_and_video_store,1830 +shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,comic_books_store,Comic Books Store,4,shopping,false,books_music_and_video_store,9722 +shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,4,shopping,false,books_music_and_video_store,875 +shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,music_and_dvd_store,Music and DVD Store,3,shopping,false,books_music_and_video_store,25119 +shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,Newspaper and Magazines Store,3,shopping,false,books_music_and_video_store,20879 +shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,video_and_video_game_rental,Video and Video Game Rental,3,shopping,false,books_music_and_video_store,10110 +shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,3,shopping,false,books_music_and_video_store,25468 +shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,3,shopping,false,books_music_and_video_store,1808 +shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,2,shopping,false,specialty_store,4177 +shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,2,shopping,false,specialty_store,2917 +shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,2,shopping,false,specialty_store,1158 +shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,2,shopping,false,specialty_store,8301 +shopping > specialty_store > electronics_store,electronics_store,Electronics Store,2,shopping,true,electronics_store,256895 +shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,3,shopping,false,electronics_store,17006 +shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,3,shopping,false,electronics_store,4056 +shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,3,shopping,false,electronics_store,32900 +shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,3,shopping,false,electronics_store,13180 +shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,3,shopping,false,electronics_store,99986 +shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,3,shopping,false,electronics_store,193 +shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,3,shopping,false,electronics_store,2139 +shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,3,shopping,false,electronics_store,6121 +shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,3,shopping,false,electronics_store,331501 shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,3,shopping,false,specialty_store, -shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,3,shopping,false,specialty_store, -shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,2,shopping,false,specialty_store, -shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,2,shopping,true,flowers_and_gifts_store, -shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,3,shopping,false,flowers_and_gifts_store, -shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,3,shopping,false,flowers_and_gifts_store, -shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,3,shopping,false,flowers_and_gifts_store, -shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,2,shopping,false,specialty_store, -shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,2,shopping,false,specialty_store, -shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,3,shopping,false,specialty_store, -shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,2,shopping,true,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,4,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,3,shopping,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,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,3,shopping,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,shopping,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,shopping,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,shopping,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,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,3,shopping,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,shopping,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,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,3,shopping,false,hardware_home_and_garden_store, -shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,3,shopping,false,specialty_store, -shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,3,shopping,false,specialty_store, +shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,3,shopping,false,specialty_store,620 +shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,3,shopping,false,specialty_store,1267 +shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,2,shopping,false,specialty_store,11824 +shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,2,shopping,true,flowers_and_gifts_store,398227 +shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,3,shopping,false,flowers_and_gifts_store,41622 +shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,3,shopping,false,flowers_and_gifts_store,79 +shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,3,shopping,false,flowers_and_gifts_store,55126 +shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,2,shopping,false,specialty_store,448 +shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,2,shopping,false,specialty_store,18276 +shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,3,shopping,false,specialty_store,58 +shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,2,shopping,true,hardware_home_and_garden_store,30904 +shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,3,shopping,false,hardware_home_and_garden_store,64912 +shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,Bedding and Bath Store,3,shopping,false,hardware_home_and_garden_store,1926 +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,3,shopping,false,hardware_home_and_garden_store,318226 +shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,4,shopping,false,hardware_home_and_garden_store,27265 +shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,3,shopping,false,hardware_home_and_garden_store,2398 +shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,3,shopping,false,hardware_home_and_garden_store,63339 +shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,3,shopping,false,hardware_home_and_garden_store,2979 +shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,do_it_yourself_store,Do IT Yourself Store,3,shopping,false,hardware_home_and_garden_store,2677 +shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,3,shopping,false,hardware_home_and_garden_store,10508 +shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,3,shopping,false,hardware_home_and_garden_store,11120 +shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,3,shopping,false,hardware_home_and_garden_store,2131 +shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,3,shopping,false,hardware_home_and_garden_store,460012 +shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,3,shopping,false,hardware_home_and_garden_store,603 +shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,3,shopping,false,hardware_home_and_garden_store,259867 +shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,Welding Supply Store,4,shopping,false,hardware_home_and_garden_store,2972 +shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,3,shopping,false,hardware_home_and_garden_store,330 +shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,3,shopping,false,hardware_home_and_garden_store,12302 +shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,3,shopping,false,hardware_home_and_garden_store,125802 +shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,3,shopping,false,hardware_home_and_garden_store,118242 +shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,Hot Tub and Pool Store,3,shopping,false,hardware_home_and_garden_store,4394 +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,Kitchen and Bath Store,3,shopping,false,hardware_home_and_garden_store,9502 +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,Bathroom Fixture Store,4,shopping,false,hardware_home_and_garden_store,313 +shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,Kitchen Supply Store,4,shopping,false,hardware_home_and_garden_store,12351 +shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,3,shopping,false,hardware_home_and_garden_store,2149 +shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,3,shopping,false,hardware_home_and_garden_store,39904 +shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,3,shopping,false,hardware_home_and_garden_store,32787 +shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,3,shopping,false,hardware_home_and_garden_store,41623 +shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,Nursery and Gardening Store,3,shopping,false,hardware_home_and_garden_store,122703 +shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,Hydroponic Gardening Store,4,shopping,false,hardware_home_and_garden_store,684 +shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,3,shopping,false,hardware_home_and_garden_store,2011 +shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,3,shopping,false,hardware_home_and_garden_store,18781 +shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,3,shopping,false,hardware_home_and_garden_store,1759 +shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,3,shopping,false,hardware_home_and_garden_store,5941 +shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,3,shopping,false,hardware_home_and_garden_store,379 +shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,3,shopping,false,hardware_home_and_garden_store,5501 +shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,3,shopping,false,hardware_home_and_garden_store,3967 +shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,2,shopping,false,specialty_store,52253 +shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,3,shopping,false,specialty_store,1413 +shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,3,shopping,false,specialty_store,23703 shopping > specialty_store > musical_instrument_and_pro_audio_store,musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,2,shopping,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,shopping,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,shopping,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,shopping,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,shopping,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,shopping,false,musical_instrument_and_pro_audio_store,41435 +shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,guitar_store,Guitar Store,4,shopping,false,musical_instrument_and_pro_audio_store,735 +shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,piano_store,Piano Store,4,shopping,false,musical_instrument_and_pro_audio_store,441 shopping > specialty_store > musical_instrument_and_pro_audio_store > pro_audio_store,pro_audio_store,Pro Audio Store,3,shopping,false,musical_instrument_and_pro_audio_store, -shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,2,shopping,true,office_supply_store, -shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,3,shopping,false,office_supply_store, -shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,3,shopping,false,office_supply_store, -shopping > specialty_store > outlet_store,outlet_store,Outlet Store,2,shopping,false,specialty_store, -shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,2,shopping,false,specialty_store, +shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,2,shopping,true,office_supply_store,57124 +shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,3,shopping,false,office_supply_store,13010 +shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,3,shopping,false,office_supply_store,94 +shopping > specialty_store > outlet_store,outlet_store,Outlet Store,2,shopping,false,specialty_store,15772 +shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,2,shopping,false,specialty_store,50534 shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,2,shopping,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,shopping,false,personal_care_and_beauty_store, -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,3,shopping,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,shopping,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,shopping,false,personal_care_and_beauty_store, -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,4,shopping,false,personal_care_and_beauty_store, +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,3,shopping,false,personal_care_and_beauty_store,184142 +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,cosmetics_and_fragrance_store,Cosmetics and Fragrance Store,4,shopping,false,personal_care_and_beauty_store,26588 +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,hair_supply_store,Hair Supply Store,4,shopping,false,personal_care_and_beauty_store,47898 +shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,4,shopping,false,personal_care_and_beauty_store,5166 shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,2,shopping,true,pharmacy_and_drug_store, -shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,3,shopping,false,pharmacy_and_drug_store, -shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,3,shopping,false,pharmacy_and_drug_store, -shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,2,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,2,shopping,false,specialty_store, +shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,3,shopping,false,pharmacy_and_drug_store,29597 +shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,3,shopping,false,pharmacy_and_drug_store,519231 +shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,2,shopping,false,specialty_store,7473 +shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,2,shopping,false,specialty_store,1132 shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,3,shopping,false,specialty_store, shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,3,shopping,false,specialty_store, shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,4,shopping,false,specialty_store, @@ -1914,390 +1914,390 @@ shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spi shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,3,shopping,false,specialty_store, shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,3,shopping,false,specialty_store, shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > safe_store,safe_store,Safe Store,2,shopping,false,specialty_store, -shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,2,shopping,false,specialty_store, -shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,2,shopping,false,specialty_store, -shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,3,shopping,false,specialty_store, -shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,2,shopping,false,specialty_store, -shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,2,shopping,true,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,4,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,3,shopping,false,sporting_goods_store, -shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,3,shopping,false,sporting_goods_store, +shopping > specialty_store > safe_store,safe_store,Safe Store,2,shopping,false,specialty_store,535 +shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,2,shopping,false,specialty_store,10888 +shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,2,shopping,false,specialty_store,40067 +shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,3,shopping,false,specialty_store,9007 +shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,2,shopping,false,specialty_store,13771 +shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,2,shopping,true,sporting_goods_store,128526 +shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,3,shopping,false,sporting_goods_store,1602 +shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,3,shopping,false,sporting_goods_store,87983 +shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,3,shopping,false,sporting_goods_store,877 +shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,3,shopping,false,sporting_goods_store,1356 +shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,3,shopping,false,sporting_goods_store,2286 +shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,3,shopping,false,sporting_goods_store,282 +shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,3,shopping,false,sporting_goods_store,29248 +shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,3,shopping,false,sporting_goods_store,28466 +shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,3,shopping,false,sporting_goods_store,117 +shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,3,shopping,false,sporting_goods_store,5351 +shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,3,shopping,false,sporting_goods_store,5051 +shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,3,shopping,false,sporting_goods_store,31896 +shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,4,shopping,false,sporting_goods_store,1581 +shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,3,shopping,false,sporting_goods_store,7454 +shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,3,shopping,false,sporting_goods_store,6670 shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,3,shopping,false,specialty_store, -shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,3,shopping,false,specialty_store, +shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,3,shopping,false,specialty_store,20 +shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,3,shopping,false,specialty_store,646 shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,2,shopping,true,toys_and_games_store, -shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,3,shopping,false,toys_and_games_store, -shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,3,shopping,false,toys_and_games_store, -shopping > specialty_store > trophy_store,trophy_store,Trophy Store,2,shopping,false,specialty_store, +shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,3,shopping,false,toys_and_games_store,198 +shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,3,shopping,false,toys_and_games_store,69398 +shopping > specialty_store > trophy_store,trophy_store,Trophy Store,2,shopping,false,specialty_store,8591 shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,2,shopping,true,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,3,shopping,false,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,3,shopping,false,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,3,shopping,false,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,3,shopping,false,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,3,shopping,false,vehicle_parts_store, -shopping > superstore,superstore,Superstore,1,shopping,true,superstore, -shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,1,shopping,true,vehicle_dealer, -shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,2,shopping,true,auto_dealer, -shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,3,shopping,false,auto_dealer, -shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,3,shopping,false,auto_dealer, -shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,3,shopping,false,auto_dealer, -shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,2,shopping,false,vehicle_dealer, -shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,2,shopping,false,vehicle_dealer, -shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,1,shopping,true,warehouse_club_store, -sports_and_recreation,sports_and_recreation,Sports and Recreation,0,sports_and_recreation,true,sports_and_recreation, -sports_and_recreation > park,park,Park,1,sports_and_recreation,true,park, -sports_and_recreation > park > dog_park,dog_park,Dog Park,2,sports_and_recreation,true,dog_park, -sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,2,sports_and_recreation,false,park, -sports_and_recreation > park > national_park,national_park,National Park,2,sports_and_recreation,true,national_park, -sports_and_recreation > park > playground,playground,Playground,2,sports_and_recreation,true,playground, -sports_and_recreation > park > state_park,state_park,State Park,2,sports_and_recreation,false,park, -sports_and_recreation > park > water_park,water_park,Water Park,2,sports_and_recreation,false,park, +shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,3,shopping,false,vehicle_parts_store,324519 +shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,3,shopping,false,vehicle_parts_store,7358 +shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,3,shopping,false,vehicle_parts_store,784 +shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,3,shopping,false,vehicle_parts_store,10829 +shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,3,shopping,false,vehicle_parts_store,334 +shopping > superstore,superstore,Superstore,1,shopping,true,superstore,15014 +shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,1,shopping,true,vehicle_dealer,1512 +shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,2,shopping,false,vehicle_dealer,1023 +shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,2,shopping,true,auto_dealer,542069 +shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,3,shopping,false,auto_dealer,2662 +shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,3,shopping,false,auto_dealer,5002 +shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,3,shopping,false,auto_dealer,83076 +shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,2,shopping,false,vehicle_dealer,14630 +shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,2,shopping,false,vehicle_dealer,6453 +shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,2,shopping,false,vehicle_dealer,1546 +shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,2,shopping,false,vehicle_dealer,3668 +shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,2,shopping,false,vehicle_dealer,112997 +shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,2,shopping,false,vehicle_dealer,4939 +shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,2,shopping,false,vehicle_dealer,14094 +shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,2,shopping,false,vehicle_dealer,360 +shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,2,shopping,false,vehicle_dealer,9737 +shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,2,shopping,false,vehicle_dealer,25200 +shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,1,shopping,true,warehouse_club_store,121150 +sports_and_recreation,sports_and_recreation,Sports and Recreation,0,sports_and_recreation,true,sports_and_recreation,198851 +sports_and_recreation > park,park,Park,1,sports_and_recreation,true,park,491407 +sports_and_recreation > park > dog_park,dog_park,Dog Park,2,sports_and_recreation,true,dog_park,12924 +sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,2,sports_and_recreation,false,park,55 +sports_and_recreation > park > national_park,national_park,National Park,2,sports_and_recreation,true,national_park,27732 +sports_and_recreation > park > playground,playground,Playground,2,sports_and_recreation,true,playground,38750 +sports_and_recreation > park > state_park,state_park,State Park,2,sports_and_recreation,false,park,1336 +sports_and_recreation > park > water_park,water_park,Water Park,2,sports_and_recreation,false,park,13612 sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,1,sports_and_recreation,true,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,2,sports_and_recreation,false,recreational_equipment_rental, +sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,2,sports_and_recreation,false,recreational_equipment_rental,2011 +sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,962 +sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,2,sports_and_recreation,false,recreational_equipment_rental,13255 sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,2,sports_and_recreation,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,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,1,sports_and_recreation,true,recreational_trail_or_path, -sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,2,sports_and_recreation,false,recreational_trail_or_path, -sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,2,sports_and_recreation,false,recreational_trail_or_path, -sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,2,sports_and_recreation,false,recreational_trail_or_path, -sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,2,sports_and_recreation,false,recreational_trail_or_path, +sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,2,sports_and_recreation,false,recreational_equipment_rental,15402 +sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,Canoe and Kayak Hire Service,2,sports_and_recreation,false,recreational_equipment_rental,8313 +sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,2,sports_and_recreation,false,recreational_equipment_rental,1773 +sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,2,sports_and_recreation,false,recreational_equipment_rental,102 +sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,2,sports_and_recreation,false,recreational_equipment_rental,252 +sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,2,sports_and_recreation,false,recreational_equipment_rental,71 +sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,4 +sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,517 +sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,2,sports_and_recreation,false,recreational_equipment_rental,66 +sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,1,sports_and_recreation,true,recreational_trail_or_path,24 +sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,2,sports_and_recreation,false,recreational_trail_or_path,2 +sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,2,sports_and_recreation,false,recreational_trail_or_path,15 +sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,2,sports_and_recreation,false,recreational_trail_or_path,42664 +sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,2,sports_and_recreation,false,recreational_trail_or_path,4299 sports_and_recreation > sport_league,sport_league,Sport League,1,sports_and_recreation,true,sport_league, -sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,2,sports_and_recreation,false,sport_league, -sports_and_recreation > sport_league > esports_league,esports_league,Esports League,2,sports_and_recreation,false,sport_league, -sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,2,sports_and_recreation,false,sport_league, -sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,2,sports_and_recreation,false,sport_league, -sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,1,sports_and_recreation,true,sport_or_fitness_facility, +sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,2,sports_and_recreation,false,sport_league,4988 +sports_and_recreation > sport_league > esports_league,esports_league,Esports League,2,sports_and_recreation,false,sport_league,722 +sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,2,sports_and_recreation,false,sport_league,1307 +sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,2,sports_and_recreation,false,sport_league,452 +sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,1,sports_and_recreation,true,sport_or_fitness_facility,135796 sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,3,sports_and_recreation,false,sport_or_fitness_facility,106 +sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility,4 +sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,3,sports_and_recreation,false,sport_or_fitness_facility,72 sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,3,sports_and_recreation,false,sport_or_fitness_facility,96 +sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,3,sports_and_recreation,false,sport_or_fitness_facility,9 +sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,3,sports_and_recreation,false,sport_or_fitness_facility,7473 +sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,3,sports_and_recreation,false,sport_or_fitness_facility,29 +sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,2,sports_and_recreation,false,sport_or_fitness_facility,751 +sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,2,sports_and_recreation,false,sport_or_fitness_facility,1125 +sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,2,sports_and_recreation,false,sport_or_fitness_facility,2841 +sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,2,sports_and_recreation,false,sport_or_fitness_facility,17518 +sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,2,sports_and_recreation,false,sport_or_fitness_facility,14073 +sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,2,sports_and_recreation,false,sport_or_fitness_facility,1532 +sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,2,sports_and_recreation,false,sport_or_fitness_facility,154 +sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,2,sports_and_recreation,false,sport_or_fitness_facility,4 sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,2,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,2,sports_and_recreation,false,sport_or_fitness_facility,2886 +sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,2,sports_and_recreation,false,sport_or_fitness_facility,130237 +sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,2,sports_and_recreation,false,sport_or_fitness_facility,1259 +sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility,34 +sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility,12258 sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,2,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility,1432 sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,2,sports_and_recreation,true,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,3,sports_and_recreation,false,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,2,sports_and_recreation,true,golf_course, -sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,3,sports_and_recreation,false,golf_course, -sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,2,sports_and_recreation,true,gym, +sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,3,sports_and_recreation,false,fitness_studio,40 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,3,sports_and_recreation,false,fitness_studio,431 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,3,sports_and_recreation,false,fitness_studio,9631 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,3,sports_and_recreation,false,fitness_studio,52568 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,3,sports_and_recreation,false,fitness_studio,38 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,3,sports_and_recreation,false,fitness_studio,1158 +sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,3,sports_and_recreation,false,fitness_studio,82713 +sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,2,sports_and_recreation,false,sport_or_fitness_facility,71824 +sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility,101 +sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,2,sports_and_recreation,false,sport_or_fitness_facility,3 +sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,2,sports_and_recreation,true,golf_course,37906 +sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,3,sports_and_recreation,false,golf_course,6116 +sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,2,sports_and_recreation,false,sport_or_fitness_facility,4384 +sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,2,sports_and_recreation,true,gym,541730 sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,3,sports_and_recreation,false,gym, -sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,2,sports_and_recreation,false,sport_or_fitness_facility,18050 +sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,2,sports_and_recreation,false,sport_or_fitness_facility,415 sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,2,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,2,sports_and_recreation,false,sport_or_fitness_facility,10682 +sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,3,sports_and_recreation,false,sport_or_fitness_facility,33372 +sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,2,sports_and_recreation,false,sport_or_fitness_facility,8463 +sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,2,sports_and_recreation,false,sport_or_fitness_facility,1339 +sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,2,sports_and_recreation,false,sport_or_fitness_facility,1106 +sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,2,sports_and_recreation,false,sport_or_fitness_facility,3 +sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,2,sports_and_recreation,false,sport_or_fitness_facility,2538 +sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,2,sports_and_recreation,false,sport_or_fitness_facility,5109 +sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility,1029 +sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,2,sports_and_recreation,false,sport_or_fitness_facility,1 +sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,2,sports_and_recreation,false,sport_or_fitness_facility,7072 +sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,2,sports_and_recreation,false,sport_or_fitness_facility,49 +sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,2,sports_and_recreation,false,sport_or_fitness_facility,17603 +sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,3,sports_and_recreation,false,sport_or_fitness_facility,1084 +sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,2,sports_and_recreation,false,sport_or_fitness_facility,18735 +sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,3,sports_and_recreation,false,sport_or_fitness_facility,417 +sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,3,sports_and_recreation,false,sport_or_fitness_facility,376 sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,2,sports_and_recreation,false,sport_or_fitness_facility,58 +sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,2,sports_and_recreation,false,sport_or_fitness_facility,372 +sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,2,sports_and_recreation,false,sport_or_fitness_facility,18 sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,2,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,2,sports_and_recreation,true,skate_park, -sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,2,sports_and_recreation,true,skating_rink, -sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,3,sports_and_recreation,false,skating_rink, -sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,3,sports_and_recreation,false,skating_rink, -sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,2,sports_and_recreation,false,sport_or_fitness_facility,578 +sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,2,sports_and_recreation,false,sport_or_fitness_facility,17991 +sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,3,sports_and_recreation,false,sport_or_fitness_facility,3684 +sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,2,sports_and_recreation,true,skate_park,18613 +sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,2,sports_and_recreation,true,skating_rink,669 +sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,3,sports_and_recreation,false,skating_rink,5869 +sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,3,sports_and_recreation,false,skating_rink,2275 +sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,2,sports_and_recreation,false,sport_or_fitness_facility,2651 +sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,2,sports_and_recreation,false,sport_or_fitness_facility,1715 sports_and_recreation > sport_or_fitness_facility > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,Sky Diving Drop Zone,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,2,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,3,sports_and_recreation,false,sport_or_fitness_facility,20 sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,3,sports_and_recreation,false,sport_or_fitness_facility,1 sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,2,sports_and_recreation,true,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,3,sports_and_recreation,false,sport_court,4646 +sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,3,sports_and_recreation,false,sport_court,8395 +sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,3,sports_and_recreation,false,sport_court,27 +sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,3,sports_and_recreation,false,sport_court,9 +sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,3,sports_and_recreation,false,sport_court,1 sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,3,sports_and_recreation,false,sport_court,261 +sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,3,sports_and_recreation,false,sport_court,1190 sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,3,sports_and_recreation,false,sport_court, +sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,3,sports_and_recreation,false,sport_court,31657 +sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,3,sports_and_recreation,false,sport_court,2503 sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,2,sports_and_recreation,true,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,3,sports_and_recreation,false,sport_field,78 +sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,3,sports_and_recreation,false,sport_field,86 +sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,3,sports_and_recreation,false,sport_field,17055 +sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,3,sports_and_recreation,false,sport_field,3042 +sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,3,sports_and_recreation,false,sport_field,20 +sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,3,sports_and_recreation,false,sport_field,1208 sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,4,sports_and_recreation,false,sport_field, sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,3,sports_and_recreation,false,sport_field, +sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,3,sports_and_recreation,false,sport_field,1485 +sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,3,sports_and_recreation,false,sport_field,44279 sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,3,sports_and_recreation,false,sport_field, sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,2,sports_and_recreation,true,sports_complex, -sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,2,sports_and_recreation,true,swimming_pool, -sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,3,sports_and_recreation,false,swimming_pool, -sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,2,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,2,sports_and_recreation,false,sport_or_fitness_facility,226 +sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,2,sports_and_recreation,true,swimming_pool,64630 +sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,3,sports_and_recreation,false,swimming_pool,11736 +sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,2,sports_and_recreation,false,sport_or_fitness_facility,67 +sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,2,sports_and_recreation,false,sport_or_fitness_facility,15 sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,3,sports_and_recreation,false,sport_or_fitness_facility, +sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,3,sports_and_recreation,false,sport_or_fitness_facility,854 sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,3,sports_and_recreation,false,sport_or_fitness_facility, sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,4,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,4,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,4,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,1,sports_and_recreation,true,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,4,sports_and_recreation,false,sport_or_fitness_facility,11154 +sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,3,sports_and_recreation,false,sport_or_fitness_facility,669 +sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,3,sports_and_recreation,false,sport_or_fitness_facility,207 +sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,3,sports_and_recreation,false,sport_or_fitness_facility,338 +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,3,sports_and_recreation,false,sport_or_fitness_facility,5131 +sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,4,sports_and_recreation,false,sport_or_fitness_facility,6 +sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,2,sports_and_recreation,false,sport_or_fitness_facility,305 +sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,1,sports_and_recreation,true,sport_or_recreation_club,10279 +sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club,10 sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,2,sports_and_recreation,false,sport_or_recreation_club,2082 +sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,2,sports_and_recreation,false,sport_or_recreation_club,12457 +sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,2,sports_and_recreation,false,sport_or_recreation_club,326 +sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,2,sports_and_recreation,false,sport_or_recreation_club,3989 +sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,2,sports_and_recreation,false,sport_or_recreation_club,1925 +sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,3,sports_and_recreation,false,sport_or_recreation_club,227 +sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,2,sports_and_recreation,false,sport_or_recreation_club,88 sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,2,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,2,sports_and_recreation,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,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,2,sports_and_recreation,false,sport_or_recreation_club,78 +sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,2,sports_and_recreation,false,sport_or_recreation_club,128101 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club,3,sports_and_recreation,false,sport_or_recreation_club,307 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,Chinese Martial Arts Club,3,sports_and_recreation,false,sport_or_recreation_club,186 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,3,sports_and_recreation,false,sport_or_recreation_club,1164 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,3,sports_and_recreation,false,sport_or_recreation_club,951 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,muay_thai_club,Muay Thai Club,3,sports_and_recreation,false,sport_or_recreation_club,116 +sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,3,sports_and_recreation,false,sport_or_recreation_club,717 +sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,2,sports_and_recreation,false,sport_or_recreation_club,14 +sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club,20 sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,2,sports_and_recreation,false,sport_or_recreation_club,64 sports_and_recreation > sport_or_recreation_club > running_and_track_club,running_and_track_club,Running and Track Club,2,sports_and_recreation,false,sport_or_recreation_club, sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club, +sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,2,sports_and_recreation,false,sport_or_recreation_club,591 +sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,2,sports_and_recreation,false,sport_or_recreation_club,1671 +sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,2,sports_and_recreation,false,sport_or_recreation_club,7 +sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club,75 +sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club,306 sports_and_recreation > sport_team,sport_team,Sport Team,1,sports_and_recreation,true,sport_team, -sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,2,sports_and_recreation,false,sport_team, -sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,2,sports_and_recreation,false,sport_team, -sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,2,sports_and_recreation,false,sport_team, -sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,2,sports_and_recreation,false,sport_team, -travel_and_transportation,travel_and_transportation,Travel and Transportation,0,travel_and_transportation,true,travel_and_transportation, +sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,2,sports_and_recreation,false,sport_team,30168 +sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,2,sports_and_recreation,false,sport_team,558 +sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,2,sports_and_recreation,false,sport_team,5869 +sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,2,sports_and_recreation,false,sport_team,1252 +travel_and_transportation,travel_and_transportation,Travel and Transportation,0,travel_and_transportation,true,travel_and_transportation,207498 travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,air_transport_facility_or_service, -travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,2,travel_and_transportation,false,air_transport_facility_or_service, -travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,2,travel_and_transportation,false,air_transport_facility_or_service, -travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,2,travel_and_transportation,true,airport, -travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,3,travel_and_transportation,false,airport, -travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,2,travel_and_transportation,false,air_transport_facility_or_service, -travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,2,travel_and_transportation,false,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,travel_and_transportation,false,air_transport_facility_or_service,1379 +travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,avionics_shop,Avionics Shop,3,travel_and_transportation,false,air_transport_facility_or_service,522 +travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,2,travel_and_transportation,false,air_transport_facility_or_service,12094 +travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,2,travel_and_transportation,false,air_transport_facility_or_service,156 +travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,2,travel_and_transportation,true,airport,53917 +travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,3,travel_and_transportation,false,airport,6149 +travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,3,travel_and_transportation,false,airport,104 +travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,3,travel_and_transportation,false,airport,9 +travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,3,travel_and_transportation,false,airport,1951 +travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,3,travel_and_transportation,false,airport,317 +travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,3,travel_and_transportation,false,airport,1 +travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,2,travel_and_transportation,false,air_transport_facility_or_service,5301 +travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,2,travel_and_transportation,false,air_transport_facility_or_service,259 travel_and_transportation > fueling_station,fueling_station,Fueling Station,1,travel_and_transportation,true,fueling_station, -travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,2,travel_and_transportation,true,ev_charging_station, -travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,2,travel_and_transportation,true,gas_station, -travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,3,travel_and_transportation,false,gas_station, -travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,3,travel_and_transportation,false,gas_station, +travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,2,travel_and_transportation,true,ev_charging_station,49715 +travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,2,travel_and_transportation,true,gas_station,577515 +travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,3,travel_and_transportation,false,gas_station,26 +travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,3,travel_and_transportation,false,gas_station,5518 travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,rail_facility_or_service, -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,3,travel_and_transportation,false,rail_facility_or_service, -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,3,travel_and_transportation,true,train_station, -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,2,travel_and_transportation,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,travel_and_transportation,true,rest_stop, -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,3,travel_and_transportation,true,toll_station, -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,3,travel_and_transportation,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,travel_and_transportation,false,ground_transport_facility_or_service,47 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,public_transit_facility_or_service,Public Transit Facility or Service,2,travel_and_transportation,true,public_transit_facility_or_service,7875 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,bus_station,Bus Station,3,travel_and_transportation,false,public_transit_facility_or_service,67230 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,bus_ticket_agency,Bus Ticket Agency,3,travel_and_transportation,false,public_transit_facility_or_service,144 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,cable_car_service,Cable Car Service,3,travel_and_transportation,false,public_transit_facility_or_service,344 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,coach_bus,Coach Bus,3,travel_and_transportation,false,public_transit_facility_or_service,349 +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,travel_and_transportation,false,public_transit_facility_or_service,1465 +travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,metro_station,Metro Station,3,travel_and_transportation,false,public_transit_facility_or_service,2781 +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,rail_facility_or_service,Rail Facility or Service,2,travel_and_transportation,true,rail_facility_or_service,221 +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,railway_ticket_agent,Railway Ticket Agent,3,travel_and_transportation,false,rail_facility_or_service,12 +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,3,travel_and_transportation,false,rail_facility_or_service,1271 +travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,3,travel_and_transportation,true,train_station,98033 +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,2,travel_and_transportation,false,ground_transport_facility_or_service,102 +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,rest_stop,Rest Stop,3,travel_and_transportation,true,rest_stop,549 +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,3,travel_and_transportation,true,toll_station,65 +travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,3,travel_and_transportation,false,ground_transport_facility_or_service,524 travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,taxi_or_ride_share_service,Taxi or Ride Share Service,2,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,taxi_or_ride_share_service, -travel_and_transportation > parking,parking,Parking,1,travel_and_transportation,true,parking, -travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,2,travel_and_transportation,false,parking, -travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,2,travel_and_transportation,false,parking, -travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,2,travel_and_transportation,true,park_and_ride, +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > car_sharing,car_sharing,Car Sharing,3,travel_and_transportation,false,taxi_or_ride_share_service,2974 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,limo_service,Limo Service,3,travel_and_transportation,false,taxi_or_ride_share_service,13556 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,pedicab_service,Pedicab Service,3,travel_and_transportation,false,taxi_or_ride_share_service,4 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,ride_share_service,Ride Share Service,3,travel_and_transportation,false,taxi_or_ride_share_service,603 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,taxi_service,Taxi Service,3,travel_and_transportation,false,taxi_or_ride_share_service,49666 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,taxi_stand,Taxi Stand,4,travel_and_transportation,false,taxi_or_ride_share_service,53 +travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,town_car_service,Town Car Service,3,travel_and_transportation,false,taxi_or_ride_share_service,340 +travel_and_transportation > parking,parking,Parking,1,travel_and_transportation,true,parking,143540 +travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,2,travel_and_transportation,false,parking,28 +travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,2,travel_and_transportation,false,parking,6 +travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,2,travel_and_transportation,true,park_and_ride,164 travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,2,travel_and_transportation,true,parking_garage, travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,2,travel_and_transportation,true,parking_lot, -travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,1,travel_and_transportation,false,travel_and_transportation, -travel_and_transportation > travel_service,travel_service,Travel Service,1,travel_and_transportation,true,travel_service, -travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,3,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,2,travel_and_transportation,false,travel_service, -travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,2,travel_and_transportation,false,travel_service, +travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,1,travel_and_transportation,false,travel_and_transportation,43 +travel_and_transportation > travel_service,travel_service,Travel Service,1,travel_and_transportation,true,travel_service,395616 +travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,2,travel_and_transportation,false,travel_service,598 +travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,2,travel_and_transportation,false,travel_service,4435 +travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,2,travel_and_transportation,false,travel_service,18915 +travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,3,travel_and_transportation,false,travel_service,160 +travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,2,travel_and_transportation,false,travel_service,124213 +travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,3,travel_and_transportation,false,travel_service,115 +travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,3,travel_and_transportation,false,travel_service,150 +travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,3,travel_and_transportation,false,travel_service,35 +travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,3,travel_and_transportation,false,travel_service,46 +travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,3,travel_and_transportation,false,travel_service,102 +travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,3,travel_and_transportation,false,travel_service,11210 +travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,3,travel_and_transportation,false,travel_service,3449 +travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,3,travel_and_transportation,false,travel_service,12 +travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,3,travel_and_transportation,false,travel_service,1211 +travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,3,travel_and_transportation,false,travel_service,1311 +travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,3,travel_and_transportation,false,travel_service,1146 +travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,3,travel_and_transportation,false,travel_service,7 +travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,3,travel_and_transportation,false,travel_service,12458 +travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,3,travel_and_transportation,false,travel_service,145 +travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,3,travel_and_transportation,false,travel_service,81 +travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,3,travel_and_transportation,false,travel_service,189 +travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,2,travel_and_transportation,false,travel_service,45543 +travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,2,travel_and_transportation,false,travel_service,4084 +travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,2,travel_and_transportation,false,travel_service,6642 travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,1,travel_and_transportation,true,vehicle_service, -travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,2,travel_and_transportation,true,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,4,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,4,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,4,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,4,travel_and_transportation,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,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,3,travel_and_transportation,false,automotive_service, -travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,2,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,2,travel_and_transportation,false,vehicle_service,2762 +travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,2,travel_and_transportation,true,automotive_service,172801 +travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,3,travel_and_transportation,false,automotive_service,89488 +travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,3,travel_and_transportation,false,automotive_service,32666 +travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,3,travel_and_transportation,false,automotive_service,129597 +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,3,travel_and_transportation,false,automotive_service,33179 +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,4,travel_and_transportation,false,automotive_service,17537 +travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,Windshield Installation and Repair,4,travel_and_transportation,false,automotive_service,4012 +travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,3,travel_and_transportation,false,automotive_service,16433 +travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,3,travel_and_transportation,false,automotive_service,1345 +travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,3,travel_and_transportation,false,automotive_service,2465 +travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,3,travel_and_transportation,false,automotive_service,4426 +travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,3,travel_and_transportation,false,automotive_service,9504 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,3,travel_and_transportation,false,automotive_service,878312 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,4,travel_and_transportation,false,automotive_service,8949 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,brake_service_and_repair,Brake Service and Repair,4,travel_and_transportation,false,automotive_service,7168 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,4,travel_and_transportation,false,automotive_service,25 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,4,travel_and_transportation,false,automotive_service,6785 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,Exhaust and Muffler Repair,4,travel_and_transportation,false,automotive_service,359 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,4,travel_and_transportation,false,automotive_service,102 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,4,travel_and_transportation,false,automotive_service,51 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,Tire Dealer and Repair,4,travel_and_transportation,false,automotive_service,125483 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,4,travel_and_transportation,false,automotive_service,806 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,4,travel_and_transportation,false,automotive_service,4318 +travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,Wheel and Rim Repair,4,travel_and_transportation,false,automotive_service,3265 +travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,3,travel_and_transportation,false,automotive_service,644 +travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,3,travel_and_transportation,false,automotive_service,754 +travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,3,travel_and_transportation,false,automotive_service,4609 +travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,3,travel_and_transportation,false,automotive_service,631 +travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,3,travel_and_transportation,false,automotive_service,123805 +travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,3,travel_and_transportation,false,automotive_service,2341 +travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,3,travel_and_transportation,false,automotive_service,8008 +travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,3,travel_and_transportation,false,automotive_service,19505 +travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,3,travel_and_transportation,false,automotive_service,29938 +travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,3,travel_and_transportation,false,automotive_service,38606 +travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,3,travel_and_transportation,false,automotive_service,22657 +travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,3,travel_and_transportation,false,automotive_service,673 +travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,2,travel_and_transportation,false,vehicle_service,14451 travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,3,travel_and_transportation,false,vehicle_service, travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,2,travel_and_transportation,false,vehicle_service, travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,3,travel_and_transportation,false,vehicle_service,94976 travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,3,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,3,travel_and_transportation,false,vehicle_service, +travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,3,travel_and_transportation,false,vehicle_service,4720 +travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,2,travel_and_transportation,false,vehicle_service,1388 +travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,3,travel_and_transportation,false,vehicle_service,574 travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,1,travel_and_transportation,true,water_transport_facility_or_service, -travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,2,travel_and_transportation,true,ferry_service, -travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,2,travel_and_transportation,true,water_taxi_service, +travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,2,travel_and_transportation,true,ferry_service,369 +travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,2,travel_and_transportation,true,water_taxi_service,2 diff --git a/static/taxonomy/2026-08-19.0/taxonomy.json b/static/taxonomy/2026-08-19.0/taxonomy.json new file mode 100644 index 000000000..460cbc2c6 --- /dev/null +++ b/static/taxonomy/2026-08-19.0/taxonomy.json @@ -0,0 +1 @@ +{"version":"2026-08-19.0","schemaVersion":"v1.18.0","releaseDate":"2026-08-19","generatedAt":"2026-09-04","source":{"taxonomy":"overture_taxonomy.json","basicCategories":"overture_basic_category.json"},"stats":{"categories":2302,"basicCategories":298,"rootGroups":13,"maxDepth":5,"totalPlaces":70345858},"tree":[{"name":"arts_and_entertainment","displayName":"Arts and Entertainment","isBasic":true,"count":300372,"totalCount":1482281,"children":[{"name":"amusement_attraction","displayName":"Amusement Attraction","isBasic":true,"totalCount":49823,"children":[{"name":"amusement_park","displayName":"Amusement Park","isBasic":true,"count":43182,"totalCount":43182},{"name":"carnival_venue","displayName":"Carnival Venue","basicCategory":"amusement_attraction","totalCount":0},{"name":"carousel","displayName":"Carousel","basicCategory":"amusement_attraction","count":7,"totalCount":7},{"name":"circus_venue","displayName":"Circus Venue","basicCategory":"amusement_attraction","count":3854,"totalCount":3854},{"name":"haunted_house","displayName":"Haunted House","basicCategory":"amusement_attraction","count":2780,"totalCount":2780}]},{"name":"animal_attraction","displayName":"Animal Attraction","isBasic":true,"totalCount":30129,"children":[{"name":"aquarium","displayName":"Aquarium","isBasic":true,"count":6904,"totalCount":6904},{"name":"wildlife_sanctuary","displayName":"Wildlife Sanctuary","basicCategory":"animal_attraction","count":10715,"totalCount":10715},{"name":"zoo","displayName":"Zoo","isBasic":true,"count":9589,"totalCount":12510,"children":[{"name":"petting_zoo","displayName":"Petting Zoo","basicCategory":"zoo","count":2921,"totalCount":2921},{"name":"zoo_exhibit","displayName":"Zoo Exhibit","basicCategory":"zoo","totalCount":0}]}]},{"name":"arts_and_crafts_space","displayName":"Arts and Crafts Space","isBasic":true,"count":15,"totalCount":159356,"children":[{"name":"art_gallery","displayName":"Art Gallery","isBasic":true,"count":150708,"totalCount":150708},{"name":"artist_studio","displayName":"Artist Studio","basicCategory":"arts_and_crafts_space","totalCount":0},{"name":"glass_blowing_venue","displayName":"Glass Blowing Venue","basicCategory":"arts_and_crafts_space","count":2481,"totalCount":2481},{"name":"paint_and_sip_venue","displayName":"Paint and Sip Venue","basicCategory":"arts_and_crafts_space","count":313,"totalCount":313},{"name":"paint_your_own_pottery_venue","displayName":"Paint Your Own Pottery Venue","basicCategory":"arts_and_crafts_space","count":183,"totalCount":183},{"name":"sculpture_park","displayName":"Sculpture Park","basicCategory":"arts_and_crafts_space","totalCount":0},{"name":"sculpture_statue","displayName":"Sculpture Statue","isBasic":true,"count":4327,"totalCount":4327},{"name":"street_art","displayName":"Street Art","isBasic":true,"count":1329,"totalCount":1329}]},{"name":"event_venue","displayName":"Event Venue","isBasic":true,"count":22534,"totalCount":44489,"children":[{"name":"auditorium","displayName":"Auditorium","basicCategory":"event_venue","count":19652,"totalCount":19652},{"name":"exhibition_and_trade_fair_venue","displayName":"Exhibition and Trade Fair Venue","basicCategory":"event_venue","count":2303,"totalCount":2303}]},{"name":"festival_venue","displayName":"Festival Venue","isBasic":true,"count":3327,"totalCount":13939,"children":[{"name":"fairgrounds","displayName":"Fairgrounds","isBasic":true,"count":10464,"totalCount":10464},{"name":"film_festival_venue","displayName":"Film Festival Venue","basicCategory":"festival_venue","count":79,"totalCount":79},{"name":"music_festival_venue","displayName":"Music Festival Venue","basicCategory":"festival_venue","count":69,"totalCount":69}]},{"name":"gaming_venue","displayName":"Gaming Venue","isBasic":true,"totalCount":107598,"children":[{"name":"arcade","displayName":"Arcade","isBasic":true,"count":29707,"totalCount":29707},{"name":"betting_center","displayName":"Betting Center","basicCategory":"gaming_venue","count":17181,"totalCount":17181},{"name":"bingo_hall","displayName":"Bingo Hall","basicCategory":"gaming_venue","count":3073,"totalCount":3073},{"name":"casino","displayName":"Casino","isBasic":true,"count":31753,"totalCount":31753},{"name":"escape_room","displayName":"Escape Room","basicCategory":"gaming_venue","count":9907,"totalCount":9907},{"name":"lottery_vendor","displayName":"Lottery Vendor","basicCategory":"gaming_venue","count":15960,"totalCount":15960},{"name":"scavenger_hunt","displayName":"Scavenger Hunt","basicCategory":"gaming_venue","count":17,"totalCount":17}]},{"name":"movie_theater","displayName":"Movie Theater","isBasic":true,"count":59201,"totalCount":62376,"children":[{"name":"drive_in_theater","displayName":"Drive-In Theater","basicCategory":"movie_theater","count":3110,"totalCount":3110},{"name":"outdoor_movie_space","displayName":"Outdoor Movie Space","basicCategory":"movie_theater","count":65,"totalCount":65}]},{"name":"museum","displayName":"Museum","isBasic":true,"count":76188,"totalCount":138482,"children":[{"name":"art_museum","displayName":"Art Museum","basicCategory":"museum","count":13036,"totalCount":16718,"children":[{"name":"asian_art_museum","displayName":"Asian Art Museum","basicCategory":"museum","count":108,"totalCount":108},{"name":"cartooning_museum","displayName":"Cartooning Museum","basicCategory":"museum","count":69,"totalCount":69},{"name":"contemporary_art_museum","displayName":"Contemporary Art Museum","basicCategory":"museum","count":1189,"totalCount":1189},{"name":"costume_museum","displayName":"Costume Museum","basicCategory":"museum","count":131,"totalCount":131},{"name":"decorative_arts_museum","displayName":"Decorative Arts Museum","basicCategory":"museum","count":184,"totalCount":184},{"name":"design_museum","displayName":"Design Museum","basicCategory":"museum","count":407,"totalCount":407},{"name":"modern_art_museum","displayName":"Modern Art Museum","basicCategory":"museum","count":967,"totalCount":967},{"name":"photography_museum","displayName":"Photography Museum","basicCategory":"museum","count":209,"totalCount":209},{"name":"textile_museum","displayName":"Textile Museum","basicCategory":"museum","count":418,"totalCount":418}]},{"name":"aviation_museum","displayName":"Aviation Museum","basicCategory":"museum","count":607,"totalCount":607},{"name":"childrens_museum","displayName":"Children's Museum","basicCategory":"museum","count":1571,"totalCount":1571},{"name":"history_museum","displayName":"History Museum","basicCategory":"museum","count":36377,"totalCount":39252,"children":[{"name":"civilization_museum","displayName":"Civilization Museum","basicCategory":"museum","count":513,"totalCount":513},{"name":"community_museum","displayName":"Community Museum","basicCategory":"museum","count":2362,"totalCount":2362}]},{"name":"military_museum","displayName":"Military Museum","basicCategory":"museum","count":34,"totalCount":34},{"name":"national_museum","displayName":"National Museum","basicCategory":"museum","count":8,"totalCount":8},{"name":"science_museum","displayName":"Science Museum","basicCategory":"museum","count":2934,"totalCount":3428,"children":[{"name":"computer_museum","displayName":"Computer Museum","basicCategory":"museum","count":494,"totalCount":494}]},{"name":"sports_museum","displayName":"Sports Museum","basicCategory":"museum","count":475,"totalCount":475},{"name":"state_museum","displayName":"State Museum","basicCategory":"museum","count":201,"totalCount":201}]},{"name":"nightlife_venue","displayName":"Nightlife Venue","isBasic":true,"totalCount":98996,"children":[{"name":"adult_entertainment_venue","displayName":"Adult Entertainment Venue","isBasic":true,"count":11462,"totalCount":12475,"children":[{"name":"erotic_massage_venue","displayName":"Erotic Massage Venue","basicCategory":"adult_entertainment_venue","count":218,"totalCount":218},{"name":"strip_club","displayName":"Strip Club","basicCategory":"adult_entertainment_venue","count":795,"totalCount":795}]},{"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":85287,"totalCount":86497,"children":[{"name":"salsa_club","displayName":"Salsa Club","basicCategory":"dance_club","count":1210,"totalCount":1210}]}]},{"name":"performing_arts_venue","displayName":"Performing Arts Venue","isBasic":true,"count":20329,"totalCount":306433,"children":[{"name":"amphitheater","displayName":"Amphitheater","basicCategory":"performing_arts_venue","totalCount":0},{"name":"cabaret","displayName":"Cabaret","basicCategory":"performing_arts_venue","count":36,"totalCount":36},{"name":"comedy_club","displayName":"Comedy Club","isBasic":true,"count":7335,"totalCount":7335},{"name":"music_venue","displayName":"Music Venue","isBasic":true,"count":187181,"totalCount":225239,"children":[{"name":"band_orchestra_symphony","displayName":"Band Orchestra Symphony","basicCategory":"music_venue","count":420,"totalCount":420},{"name":"choir","displayName":"Choir","basicCategory":"music_venue","count":3809,"totalCount":3809},{"name":"jazz_and_blues_venue","displayName":"Jazz and Blues Venue","basicCategory":"music_venue","count":3219,"totalCount":3219},{"name":"karaoke_venue","displayName":"Karaoke Venue","basicCategory":"music_venue","count":29368,"totalCount":29368},{"name":"opera_and_ballet","displayName":"Opera and Ballet","basicCategory":"music_venue","count":1242,"totalCount":1242}]},{"name":"theatre_venue","displayName":"Theatre Venue","isBasic":true,"count":53142,"totalCount":53494,"children":[{"name":"dinner_theater","displayName":"Dinner Theater","basicCategory":"theatre_venue","count":352,"totalCount":352}]}]},{"name":"rural_attraction","displayName":"Rural Attraction","isBasic":true,"totalCount":2557,"children":[{"name":"attraction_farm","displayName":"Attraction Farm","basicCategory":"rural_attraction","count":131,"totalCount":131},{"name":"corn_maze","displayName":"Corn Maze","basicCategory":"rural_attraction","totalCount":0},{"name":"country_dance_hall","displayName":"Country Dance Hall","basicCategory":"rural_attraction","count":91,"totalCount":91},{"name":"pumpkin_patch","displayName":"Pumpkin Patch","basicCategory":"rural_attraction","count":145,"totalCount":145},{"name":"rodeo","displayName":"Rodeo","isBasic":true,"count":2190,"totalCount":2190}]},{"name":"science_attraction","displayName":"Science Attraction","isBasic":true,"totalCount":4603,"children":[{"name":"makerspace","displayName":"Makerspace","isBasic":true,"count":128,"totalCount":128},{"name":"observatory","displayName":"Observatory","basicCategory":"science_attraction","count":2998,"totalCount":2998},{"name":"planetarium","displayName":"Planetarium","isBasic":true,"count":1372,"totalCount":1372},{"name":"virtual_reality_center","displayName":"Virtual Reality Center","basicCategory":"science_attraction","count":105,"totalCount":105,"children":[{"name":"vr_cafe","displayName":"VR Cafe","basicCategory":"science_attraction","totalCount":0}]}]},{"name":"social_club","displayName":"Social Club","isBasic":true,"count":9343,"totalCount":15451,"children":[{"name":"country_club","displayName":"Country Club","isBasic":true,"count":989,"totalCount":989},{"name":"fraternal_organization","displayName":"Fraternal Organization","basicCategory":"social_club","count":2248,"totalCount":2248},{"name":"veterans_organization","displayName":"Veterans Organization","basicCategory":"social_club","count":2871,"totalCount":2871}]},{"name":"spiritual_advising","displayName":"Spiritual Advising","isBasic":true,"count":234,"totalCount":24551,"children":[{"name":"astrological_advising","displayName":"Astrological Advising","isBasic":true,"count":7919,"totalCount":7919},{"name":"fortune_telling","displayName":"Fortune Telling","basicCategory":"spiritual_advising","count":74,"totalCount":74},{"name":"psychic_advising","displayName":"Psychic Advising","isBasic":true,"count":16324,"totalCount":16324}]},{"name":"stadium_arena","displayName":"Stadium Arena","isBasic":true,"count":92811,"totalCount":122067,"children":[{"name":"arena","displayName":"Arena","basicCategory":"stadium_arena","totalCount":0},{"name":"stadium","displayName":"Stadium","basicCategory":"stadium_arena","totalCount":29256,"children":[{"name":"baseball_stadium","displayName":"Baseball Stadium","basicCategory":"stadium_arena","count":1671,"totalCount":1671},{"name":"basketball_stadium","displayName":"Basketball Stadium","basicCategory":"stadium_arena","count":861,"totalCount":861},{"name":"cricket_ground","displayName":"Cricket Ground","basicCategory":"stadium_arena","count":5315,"totalCount":5315},{"name":"football_stadium","displayName":"Football Stadium","basicCategory":"stadium_arena","count":9034,"totalCount":9034},{"name":"hockey_arena","displayName":"Hockey Arena","basicCategory":"stadium_arena","count":1304,"totalCount":1304},{"name":"rugby_stadium","displayName":"Rugby Stadium","basicCategory":"stadium_arena","count":572,"totalCount":572},{"name":"soccer_stadium","displayName":"Soccer Stadium","basicCategory":"stadium_arena","count":7758,"totalCount":7758},{"name":"tennis_stadium","displayName":"Tennis Stadium","basicCategory":"stadium_arena","count":699,"totalCount":699},{"name":"track_stadium","displayName":"Track Stadium","basicCategory":"stadium_arena","count":2042,"totalCount":2042}]}]},{"name":"ticket_office_or_booth","displayName":"Ticket Office or Booth","isBasic":true,"count":1059,"totalCount":1059}]},{"name":"community_and_government","displayName":"Community and Government","isBasic":true,"count":232773,"totalCount":2722787,"children":[{"name":"civic_organization","displayName":"Civic Organization","isBasic":true,"count":53685,"totalCount":296719,"children":[{"name":"charity_organization","displayName":"Charity Organization","basicCategory":"civic_organization","count":114253,"totalCount":114253},{"name":"civic_center","displayName":"Civic Center","isBasic":true,"count":559,"totalCount":559},{"name":"labor_union","displayName":"Labor Union","isBasic":true,"count":28433,"totalCount":28433},{"name":"non_governmental_association","displayName":"Non Governmental Association","basicCategory":"civic_organization","count":57140,"totalCount":57140},{"name":"political_organization","displayName":"Political Organization","isBasic":true,"count":26869,"totalCount":42649,"children":[{"name":"political_party_office","displayName":"Political Party Office","basicCategory":"political_organization","count":15780,"totalCount":15780}]}]},{"name":"government_office","displayName":"Government Office","isBasic":true,"count":522622,"totalCount":685025,"children":[{"name":"chambers_of_commerce","displayName":"Chambers of Commerce","basicCategory":"government_office","count":1909,"totalCount":1909},{"name":"courthouse","displayName":"Courthouse","isBasic":true,"count":34811,"totalCount":34811},{"name":"embassy","displayName":"Embassy","isBasic":true,"count":16931,"totalCount":16931},{"name":"government_department","displayName":"Government Department","isBasic":true,"totalCount":15442,"children":[{"name":"department_of_motor_vehicles","displayName":"Department of Motor Vehicles","basicCategory":"government_department","count":9426,"totalCount":9426},{"name":"department_of_social_service","displayName":"Department of Social Service","basicCategory":"government_department","count":171,"totalCount":171},{"name":"health_department","displayName":"Health Department","basicCategory":"government_department","count":5845,"totalCount":5845}]},{"name":"immigration_and_naturalization_office","displayName":"Immigration and Naturalization Office","basicCategory":"government_office","count":778,"totalCount":778},{"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":10,"totalCount":10},{"name":"pension_office","displayName":"Pension Office","basicCategory":"government_office","count":316,"totalCount":316},{"name":"registry_office","displayName":"Registry Office","basicCategory":"government_office","count":222,"totalCount":222},{"name":"social_security_service","displayName":"Social Security Service","basicCategory":"government_office","count":1081,"totalCount":1081},{"name":"tax_office","displayName":"Tax Office","basicCategory":"government_office","count":2046,"totalCount":2046},{"name":"town_hall","displayName":"Town Hall","basicCategory":"government_office","count":88703,"totalCount":88703},{"name":"unemployment_office","displayName":"Unemployment Office","basicCategory":"government_office","count":147,"totalCount":147}]},{"name":"military_site","displayName":"Military Site","isBasic":true,"count":35584,"totalCount":35584,"children":[{"name":"military_base","displayName":"Military Base","isBasic":true,"totalCount":0},{"name":"military_office","displayName":"Military Office","isBasic":true,"totalCount":0}]},{"name":"public_facility","displayName":"Public Facility","isBasic":true,"totalCount":78998,"children":[{"name":"public_fountain","displayName":"Public Fountain","isBasic":true,"count":11910,"totalCount":12018,"children":[{"name":"drinking_fountain","displayName":"Drinking Fountain","basicCategory":"public_fountain","count":108,"totalCount":108}]},{"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":62362,"totalCount":62362},{"name":"public_restroom","displayName":"Public Restroom","isBasic":true,"count":4616,"totalCount":4616}]},{"name":"public_safety_service","displayName":"Public Safety Service","isBasic":true,"totalCount":190205,"children":[{"name":"fire_station","displayName":"Fire Station","isBasic":true,"count":83675,"totalCount":83675},{"name":"jail_or_prison","displayName":"Jail or Prison","isBasic":true,"count":9083,"totalCount":9193,"children":[{"name":"juvenile_detention_center","displayName":"Juvenile Detention Center","basicCategory":"jail_or_prison","count":110,"totalCount":110}]},{"name":"police_station","displayName":"Police Station","isBasic":true,"count":97337,"totalCount":97337}]},{"name":"public_utility","displayName":"Public Utility","isBasic":true,"count":14646,"totalCount":122099,"children":[{"name":"electric_utility_provider","displayName":"Electric Utility Provider","isBasic":true,"count":23290,"totalCount":23290},{"name":"garbage_collection_service","displayName":"Garbage Collection Service","basicCategory":"public_utility","count":48292,"totalCount":48292},{"name":"natural_gas_utility_provider","displayName":"Natural Gas Utility Provider","isBasic":true,"count":10233,"totalCount":10233},{"name":"septic_service","displayName":"Septic Service","basicCategory":"public_utility","count":7980,"totalCount":7980},{"name":"water_utility_provider","displayName":"Water Utility Provider","isBasic":true,"count":17658,"totalCount":17658}]},{"name":"social_or_community_service","displayName":"Social or Community Service","isBasic":true,"count":821250,"totalCount":1081384,"children":[{"name":"child_protection_service","displayName":"Child Protection Service","basicCategory":"social_or_community_service","count":1522,"totalCount":1522},{"name":"community_center","displayName":"Community Center","isBasic":true,"count":106008,"totalCount":106008},{"name":"disability_services_and_support_organization","displayName":"Disability Services and Support Organization","basicCategory":"social_or_community_service","count":23286,"totalCount":23286},{"name":"food_bank","displayName":"Food Bank","isBasic":true,"count":8346,"totalCount":8346},{"name":"foster_care_service","displayName":"Foster Care Service","basicCategory":"social_or_community_service","count":1922,"totalCount":1922},{"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":7095,"totalCount":7095},{"name":"housing_authority","displayName":"Housing Authority","basicCategory":"social_or_community_service","count":9404,"totalCount":9404},{"name":"scout_hall","displayName":"Scout Hall","basicCategory":"social_or_community_service","count":9413,"totalCount":9413},{"name":"senior_citizen_service","displayName":"Senior Citizen Service","basicCategory":"social_or_community_service","count":17107,"totalCount":17107},{"name":"social_and_human_service","displayName":"Social and Human Service","basicCategory":"social_or_community_service","count":16422,"totalCount":16422},{"name":"social_welfare_center","displayName":"Social Welfare Center","basicCategory":"social_or_community_service","count":604,"totalCount":604},{"name":"volunteer_association","displayName":"Volunteer Association","basicCategory":"social_or_community_service","count":1003,"totalCount":1003},{"name":"youth_organization","displayName":"Youth Organization","isBasic":true,"count":57839,"totalCount":57839}]}]},{"name":"cultural_and_historic","displayName":"Cultural and Historic","isBasic":true,"totalCount":3109831,"children":[{"name":"cultural_center","displayName":"Cultural Center","isBasic":true,"count":51870,"totalCount":51870},{"name":"historic_site","displayName":"Historic Site","isBasic":true,"count":998562,"totalCount":1027437,"children":[{"name":"castle","displayName":"Castle","isBasic":true,"count":15319,"totalCount":15319},{"name":"fort","displayName":"Fort","isBasic":true,"count":2330,"totalCount":2330},{"name":"historic_mission","displayName":"Historic Mission","basicCategory":"historic_site","count":2116,"totalCount":2116},{"name":"historic_tower","displayName":"Historic Tower","basicCategory":"historic_site","count":10,"totalCount":10},{"name":"lighthouse","displayName":"Lighthouse","isBasic":true,"count":3747,"totalCount":3747},{"name":"palace","displayName":"Palace","basicCategory":"historic_site","count":5324,"totalCount":5324},{"name":"ruin","displayName":"Ruin","basicCategory":"historic_site","count":29,"totalCount":29}]},{"name":"memorial_site","displayName":"Memorial Site","isBasic":true,"totalCount":50028,"children":[{"name":"cemetery","displayName":"Cemetery","isBasic":true,"count":3078,"totalCount":3078},{"name":"memorial_park","displayName":"Memorial Park","basicCategory":"memorial_site","count":126,"totalCount":126},{"name":"monument","displayName":"Monument","isBasic":true,"count":46824,"totalCount":46824}]},{"name":"place_of_worship","displayName":"Place of Worship","isBasic":true,"count":1408,"totalCount":1591578,"children":[{"name":"buddhist_place_of_worship","displayName":"Buddhist Place of Worship","isBasic":true,"count":110363,"totalCount":110363,"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":862941,"totalCount":1215362,"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","totalCount":0,"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","totalCount":0},{"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","totalCount":0},{"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":0,"children":[{"name":"armenian_apostolic_place_of_worship","displayName":"Armenian Apostolic Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"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":42812,"totalCount":213779,"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":24881,"totalCount":24881},{"name":"baptist_place_of_worship","displayName":"Baptist Place of Worship","basicCategory":"christian_place_of_worship","count":103210,"totalCount":103210},{"name":"lutheran_place_of_worship","displayName":"Lutheran Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"methodist_place_of_worship","displayName":"Methodist Place of Worship","basicCategory":"christian_place_of_worship","totalCount":0},{"name":"pentecostal_place_of_worship","displayName":"Pentecostal Place of Worship","basicCategory":"christian_place_of_worship","count":42876,"totalCount":42876},{"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":3185,"children":[{"name":"jehovahs_witness_place_of_worship","displayName":"Jehovahs Witness Place of Worship","basicCategory":"christian_place_of_worship","count":3185,"totalCount":3185},{"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":135457,"totalCount":135457,"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":128014,"totalCount":128014,"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":8295,"totalCount":8295,"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":122811,"totalCount":122811,"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":5325,"totalCount":5325}]},{"name":"religious_landmark","displayName":"Religious Landmark","isBasic":true,"totalCount":7,"children":[{"name":"pilgrimage_site","displayName":"Pilgrimage Site","basicCategory":"religious_landmark","totalCount":0,"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","totalCount":7,"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":388911,"totalCount":388911,"children":[{"name":"convent","displayName":"Convent","basicCategory":"religious_organization","totalCount":0},{"name":"monastery","displayName":"Monastery","basicCategory":"religious_organization","totalCount":0},{"name":"seminary","displayName":"Seminary","basicCategory":"religious_organization","totalCount":0}]},{"name":"religious_retreat_or_center","displayName":"Religious Retreat or Center","isBasic":true,"totalCount":0,"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","totalCount":0},{"name":"zen_center","displayName":"Zen Center","basicCategory":"religious_retreat_or_center","totalCount":0}]}]},{"name":"education","displayName":"Education","isBasic":true,"count":437216,"totalCount":3507880,"children":[{"name":"education_office","displayName":"Education Office","isBasic":true,"totalCount":2446,"children":[{"name":"board_of_education_office","displayName":"Board of Education Office","basicCategory":"education_office","count":463,"totalCount":463},{"name":"school_district_office","displayName":"School District Office","isBasic":true,"count":1983,"totalCount":1983}]},{"name":"educational_facility","displayName":"Educational Facility","isBasic":true,"totalCount":93181,"children":[{"name":"campus","displayName":"Campus","isBasic":true,"totalCount":0},{"name":"campus_building","displayName":"Campus Building","isBasic":true,"count":82488,"totalCount":85946,"children":[{"name":"student_union","displayName":"Student Union","basicCategory":"campus_building","count":3458,"totalCount":3458}]},{"name":"educational_camp","displayName":"Educational Camp","basicCategory":"educational_facility","count":7235,"totalCount":7235}]},{"name":"educational_service","displayName":"Educational Service","isBasic":true,"count":69509,"totalCount":181231,"children":[{"name":"after_school_program","displayName":"After School Program","basicCategory":"educational_service","count":2169,"totalCount":2169},{"name":"archaeological_service","displayName":"Archaeological Service","basicCategory":"educational_service","count":1605,"totalCount":1605},{"name":"college_counseling","displayName":"College Counseling","basicCategory":"educational_service","count":289,"totalCount":289},{"name":"test_preparation","displayName":"Test Preparation","basicCategory":"educational_service","count":18205,"totalCount":18205},{"name":"tutoring_service","displayName":"Tutoring Service","isBasic":true,"count":87959,"totalCount":89454,"children":[{"name":"private_tutor","displayName":"Private Tutor","basicCategory":"tutoring_service","count":1495,"totalCount":1495}]}]},{"name":"library","displayName":"Library","isBasic":true,"count":136849,"totalCount":136849},{"name":"place_of_learning","displayName":"Place of Learning","isBasic":true,"totalCount":2613269,"children":[{"name":"academy","displayName":"Academy","isBasic":true,"totalCount":62,"children":[{"name":"civil_examinations_academy","displayName":"Civil Examinations Academy","basicCategory":"academy","count":62,"totalCount":62}]},{"name":"adult_education_center","displayName":"Adult Education Center","basicCategory":"place_of_learning","count":8420,"totalCount":8420},{"name":"class_venue","displayName":"Class Venue","isBasic":true,"totalCount":38,"children":[{"name":"tasting_class","displayName":"Tasting Class","basicCategory":"class_venue","count":8,"totalCount":38,"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":21,"totalCount":21}]}]},{"name":"college_university","displayName":"College University","isBasic":true,"count":365741,"totalCount":368522,"children":[{"name":"architecture_school","displayName":"Architecture School","basicCategory":"college_university","count":84,"totalCount":84},{"name":"business_school","displayName":"Business School","basicCategory":"college_university","count":1033,"totalCount":1033},{"name":"engineering_school","displayName":"Engineering School","basicCategory":"college_university","count":521,"totalCount":521},{"name":"law_school","displayName":"Law School","basicCategory":"college_university","count":433,"totalCount":433},{"name":"medical_sciences_school","displayName":"Medical Sciences School","basicCategory":"college_university","count":300,"totalCount":651,"children":[{"name":"dentistry_school","displayName":"Dentistry School","basicCategory":"college_university","count":318,"totalCount":318},{"name":"pharmacy_school","displayName":"Pharmacy School","basicCategory":"college_university","count":31,"totalCount":31},{"name":"veterinary_school","displayName":"Veterinary School","basicCategory":"college_university","count":2,"totalCount":2}]},{"name":"science_school","displayName":"Science School","basicCategory":"college_university","count":59,"totalCount":59}]},{"name":"school","displayName":"School","basicCategory":"place_of_learning","count":646351,"totalCount":1739744,"children":[{"name":"charter_school","displayName":"Charter School","basicCategory":"place_of_learning","count":561,"totalCount":561},{"name":"elementary_school","displayName":"Elementary School","isBasic":true,"count":423059,"totalCount":423059},{"name":"high_school","displayName":"High School","isBasic":true,"count":168990,"totalCount":168990},{"name":"kindergarten","displayName":"Kindergarten","isBasic":true,"totalCount":0},{"name":"middle_school","displayName":"Middle School","isBasic":true,"count":66983,"totalCount":66983},{"name":"montessori_school","displayName":"Montessori School","basicCategory":"place_of_learning","count":1041,"totalCount":1041},{"name":"preschool","displayName":"Preschool","isBasic":true,"count":282188,"totalCount":282188},{"name":"private_school","displayName":"Private School","basicCategory":"place_of_learning","count":72921,"totalCount":72921},{"name":"public_school","displayName":"Public School","basicCategory":"place_of_learning","count":51347,"totalCount":51347},{"name":"religious_school","displayName":"Religious School","basicCategory":"place_of_learning","count":26285,"totalCount":26285},{"name":"waldorf_school","displayName":"Waldorf School","basicCategory":"place_of_learning","count":18,"totalCount":18}]},{"name":"specialty_school","displayName":"Specialty School","isBasic":true,"count":52024,"totalCount":496483,"children":[{"name":"art_school","displayName":"Art School","basicCategory":"specialty_school","count":36062,"totalCount":36062},{"name":"bartending_school","displayName":"Bartending School","basicCategory":"specialty_school","count":1063,"totalCount":1063},{"name":"cheerleading","displayName":"Cheerleading","basicCategory":"specialty_school","count":104,"totalCount":104},{"name":"childbirth_education","displayName":"Childbirth Education","basicCategory":"specialty_school","count":208,"totalCount":208},{"name":"circus_school","displayName":"Circus School","basicCategory":"specialty_school","count":38,"totalCount":38},{"name":"computer_coaching","displayName":"Computer Coaching","basicCategory":"specialty_school","count":31690,"totalCount":31690},{"name":"cooking_school","displayName":"Cooking School","basicCategory":"specialty_school","count":10204,"totalCount":10204},{"name":"cosmetology_school","displayName":"Cosmetology School","basicCategory":"specialty_school","count":13188,"totalCount":13188},{"name":"cpr_class","displayName":"CPR Class","basicCategory":"specialty_school","count":1030,"totalCount":1030},{"name":"drama_school","displayName":"Drama School","basicCategory":"specialty_school","count":631,"totalCount":631},{"name":"driving_school","displayName":"Driving School","basicCategory":"specialty_school","count":103912,"totalCount":103912},{"name":"dui_school","displayName":"DUI School","basicCategory":"specialty_school","count":49,"totalCount":49},{"name":"firearm_training","displayName":"Firearm Training","basicCategory":"specialty_school","count":1203,"totalCount":1203},{"name":"first_aid_class","displayName":"First Aid Class","basicCategory":"specialty_school","count":3788,"totalCount":3788},{"name":"flight_school","displayName":"Flight School","basicCategory":"specialty_school","count":10046,"totalCount":10046},{"name":"food_safety_training","displayName":"Food Safety Training","basicCategory":"specialty_school","count":710,"totalCount":710},{"name":"language_school","displayName":"Language School","basicCategory":"specialty_school","count":90099,"totalCount":90099},{"name":"massage_school","displayName":"Massage School","basicCategory":"specialty_school","count":2312,"totalCount":2312},{"name":"medical_school","displayName":"Medical School","basicCategory":"specialty_school","count":10228,"totalCount":10228},{"name":"music_school","displayName":"Music School","basicCategory":"specialty_school","count":69335,"totalCount":69335},{"name":"nursing_school","displayName":"Nursing School","basicCategory":"specialty_school","count":6962,"totalCount":6962},{"name":"parenting_class","displayName":"Parenting Class","basicCategory":"specialty_school","count":174,"totalCount":174},{"name":"photography_class","displayName":"Photography Class","basicCategory":"specialty_school","count":114,"totalCount":114},{"name":"speech_training","displayName":"Speech Training","basicCategory":"specialty_school","count":183,"totalCount":183},{"name":"sports_school","displayName":"Sports School","basicCategory":"specialty_school","count":1107,"totalCount":1107},{"name":"traffic_school","displayName":"Traffic School","basicCategory":"specialty_school","count":1781,"totalCount":1781},{"name":"vocational_and_technical_school","displayName":"Vocational and Technical School","basicCategory":"specialty_school","count":48238,"totalCount":48238}]}]},{"name":"research_institute","displayName":"Research Institute","isBasic":true,"count":3210,"totalCount":43688,"children":[{"name":"educational_research_institute","displayName":"Educational Research Institute","basicCategory":"research_institute","count":18836,"totalCount":18836},{"name":"medical_research_institute","displayName":"Medical Research Institute","basicCategory":"research_institute","count":21642,"totalCount":21642}]}]},{"name":"food_and_drink","displayName":"Food and Drink","isBasic":true,"count":98464,"totalCount":9979041,"children":[{"name":"alcoholic_beverage_venue","displayName":"Alcoholic Beverage Venue","isBasic":true,"totalCount":1181918,"children":[{"name":"bar","displayName":"Bar","isBasic":true,"count":644080,"totalCount":975020,"children":[{"name":"bar_tabac","displayName":"Bar Tabac","basicCategory":"bar","count":140,"totalCount":140},{"name":"beach_bar","displayName":"Beach Bar","basicCategory":"bar","count":451,"totalCount":451},{"name":"beer_bar","displayName":"Beer Bar","basicCategory":"bar","count":23997,"totalCount":23997},{"name":"champagne_bar","displayName":"Champagne Bar","basicCategory":"bar","count":240,"totalCount":240},{"name":"cigar_bar","displayName":"Cigar Bar","basicCategory":"bar","count":535,"totalCount":535},{"name":"cocktail_bar","displayName":"Cocktail Bar","basicCategory":"bar","count":46327,"totalCount":46327},{"name":"dive_bar","displayName":"Dive Bar","basicCategory":"bar","count":4649,"totalCount":4649},{"name":"drive_thru_bar","displayName":"Drive Thru Bar","basicCategory":"bar","count":65,"totalCount":65},{"name":"gay_bar","displayName":"Gay Bar","basicCategory":"bar","count":3664,"totalCount":3664},{"name":"hookah_bar","displayName":"Hookah Bar","basicCategory":"bar","count":16860,"totalCount":16860},{"name":"hotel_bar","displayName":"Hotel Bar","basicCategory":"bar","count":2997,"totalCount":2997},{"name":"piano_bar","displayName":"Piano Bar","basicCategory":"bar","count":126,"totalCount":126},{"name":"pub","displayName":"Pub","basicCategory":"bar","count":144776,"totalCount":151595,"children":[{"name":"irish_pub","displayName":"Irish Pub","basicCategory":"bar","count":6819,"totalCount":6819}]},{"name":"sake_bar","displayName":"Sake Bar","basicCategory":"bar","count":13225,"totalCount":13225},{"name":"speakeasy","displayName":"Speakeasy","basicCategory":"bar","count":2295,"totalCount":2295},{"name":"sports_bar","displayName":"Sports Bar","basicCategory":"bar","count":26179,"totalCount":26179},{"name":"tiki_bar","displayName":"Tiki Bar","basicCategory":"bar","count":1035,"totalCount":1035},{"name":"vermouth_bar","displayName":"Vermouth Bar","basicCategory":"bar","count":1,"totalCount":1},{"name":"whiskey_bar","displayName":"Whiskey Bar","basicCategory":"bar","count":1814,"totalCount":1814},{"name":"wine_bar","displayName":"Wine Bar","basicCategory":"bar","count":34745,"totalCount":34745}]},{"name":"beer_garden","displayName":"Beer Garden","basicCategory":"alcoholic_beverage_venue","count":16278,"totalCount":16278},{"name":"brewery","displayName":"Brewery","isBasic":true,"count":47917,"totalCount":47917},{"name":"cidery","displayName":"Cidery","basicCategory":"alcoholic_beverage_venue","count":151,"totalCount":151},{"name":"distillery","displayName":"Distillery","isBasic":true,"count":9919,"totalCount":9919},{"name":"lounge","displayName":"Lounge","isBasic":true,"count":52495,"totalCount":56186,"children":[{"name":"airport_lounge","displayName":"Airport Lounge","basicCategory":"lounge","count":3691,"totalCount":3691}]},{"name":"winery","displayName":"Winery","isBasic":true,"count":76227,"totalCount":76447,"children":[{"name":"wine_tasting_room","displayName":"Wine Tasting Room","basicCategory":"winery","count":220,"totalCount":220}]}]},{"name":"casual_eatery","displayName":"Casual Eatery","isBasic":true,"totalCount":2551711,"children":[{"name":"bagel_shop","displayName":"Bagel Shop","basicCategory":"casual_eatery","count":10542,"totalCount":10542},{"name":"bakery","displayName":"Bakery","basicCategory":"casual_eatery","count":514933,"totalCount":515790,"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":785,"totalCount":785}]},{"name":"bistro","displayName":"Bistro","basicCategory":"casual_eatery","count":4258,"totalCount":4258},{"name":"cafe","displayName":"Cafe","isBasic":true,"count":700856,"totalCount":724907,"children":[{"name":"animal_cafe","displayName":"Animal Cafe","basicCategory":"cafe","totalCount":0,"children":[{"name":"cat_cafe","displayName":"Cat Cafe","basicCategory":"cafe","totalCount":0},{"name":"dog_cafe","displayName":"Dog Cafe","basicCategory":"cafe","totalCount":0}]},{"name":"hong_kong_style_cafe","displayName":"Hong Kong Style Cafe","basicCategory":"cafe","count":1236,"totalCount":1236},{"name":"internet_cafe","displayName":"Internet Cafe","basicCategory":"cafe","count":22815,"totalCount":22815}]},{"name":"candy_store","displayName":"Candy Store","basicCategory":"casual_eatery","count":61223,"totalCount":91821,"children":[{"name":"chocolatier","displayName":"Chocolatier","basicCategory":"casual_eatery","count":30157,"totalCount":30157},{"name":"indian_sweets_shop","displayName":"Indian Sweets Shop","basicCategory":"casual_eatery","count":119,"totalCount":119},{"name":"japanese_confectionery_shop","displayName":"Japanese Confectionery Shop","basicCategory":"casual_eatery","count":322,"totalCount":322}]},{"name":"canteen","displayName":"Canteen","basicCategory":"casual_eatery","count":2,"totalCount":2},{"name":"delicatessen","displayName":"Delicatessen","basicCategory":"casual_eatery","count":75264,"totalCount":75264},{"name":"dessert_shop","displayName":"Dessert Shop","basicCategory":"casual_eatery","count":120900,"totalCount":383499,"children":[{"name":"cupcake_shop","displayName":"Cupcake Shop","basicCategory":"casual_eatery","count":27896,"totalCount":27896},{"name":"donut_shop","displayName":"Donut Shop","basicCategory":"casual_eatery","count":30561,"totalCount":30561},{"name":"frozen_yogurt_shop","displayName":"Frozen Yogurt Shop","basicCategory":"casual_eatery","count":9688,"totalCount":9688},{"name":"gelato_shop","displayName":"Gelato Shop","basicCategory":"casual_eatery","count":13542,"totalCount":13542},{"name":"ice_cream_shop","displayName":"Ice Cream Shop","basicCategory":"casual_eatery","count":174518,"totalCount":174518},{"name":"pie_shop","displayName":"Pie Shop","basicCategory":"casual_eatery","count":830,"totalCount":830},{"name":"shaved_ice_shop","displayName":"Shaved Ice Shop","basicCategory":"casual_eatery","count":5564,"totalCount":5564}]},{"name":"diner","displayName":"Diner","basicCategory":"casual_eatery","count":90273,"totalCount":90273},{"name":"fast_food_restaurant","displayName":"Fast Food Restaurant","isBasic":true,"count":409785,"totalCount":409785},{"name":"fondue_restaurant","displayName":"Fondue Restaurant","basicCategory":"casual_eatery","count":2428,"totalCount":2428},{"name":"food_court","displayName":"Food Court","isBasic":true,"count":2101,"totalCount":2101},{"name":"food_truck_stand","displayName":"Food Truck or Stand","isBasic":true,"count":83367,"totalCount":83367},{"name":"friterie","displayName":"Friterie","basicCategory":"casual_eatery","count":280,"totalCount":280},{"name":"gastropub","displayName":"Gastropub","basicCategory":"casual_eatery","count":24221,"totalCount":24221},{"name":"popcorn_shop","displayName":"Popcorn Shop","basicCategory":"casual_eatery","count":527,"totalCount":527},{"name":"sandwich_shop","displayName":"Sandwich Shop","basicCategory":"casual_eatery","count":90951,"totalCount":90951},{"name":"sugar_shack","displayName":"Sugar Shack","basicCategory":"casual_eatery","count":5,"totalCount":5},{"name":"tapas_bar","displayName":"Tapas Bar","basicCategory":"casual_eatery","count":41690,"totalCount":41690}]},{"name":"non_alcoholic_beverage_venue","displayName":"Non-Alcoholic Beverage Venue","isBasic":true,"count":155,"totalCount":778574,"children":[{"name":"bubble_tea_shop","displayName":"Bubble Tea Shop","basicCategory":"non_alcoholic_beverage_venue","count":39573,"totalCount":39573},{"name":"coffee_shop","displayName":"Coffee Shop","isBasic":true,"count":610598,"totalCount":612208,"children":[{"name":"coffee_roastery","displayName":"Coffee Roastery","basicCategory":"coffee_shop","count":1610,"totalCount":1610}]},{"name":"kombucha_bar","displayName":"Kombucha Bar","basicCategory":"non_alcoholic_beverage_venue","count":40,"totalCount":40},{"name":"milk_bar","displayName":"Milk Bar","basicCategory":"non_alcoholic_beverage_venue","count":4081,"totalCount":4081},{"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":62736,"totalCount":62736},{"name":"tea_room","displayName":"Tea Room","basicCategory":"non_alcoholic_beverage_venue","count":59781,"totalCount":59781}]},{"name":"restaurant","displayName":"Restaurant","isBasic":true,"count":1812921,"totalCount":5368374,"children":[{"name":"african_restaurant","displayName":"African Restaurant","basicCategory":"restaurant","count":7479,"totalCount":13529,"children":[{"name":"east_african_restaurant","displayName":"East African Restaurant","basicCategory":"restaurant","totalCount":1600,"children":[{"name":"eritrean_restaurant","displayName":"Eritrean Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"ethiopian_restaurant","displayName":"Ethiopian Restaurant","basicCategory":"restaurant","count":1600,"totalCount":1600},{"name":"somalian_restaurant","displayName":"Somalian Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"north_african_restaurant","displayName":"North African Restaurant","basicCategory":"restaurant","totalCount":3815,"children":[{"name":"algerian_restaurant","displayName":"Algerian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"egyptian_restaurant","displayName":"Egyptian Restaurant","basicCategory":"restaurant","count":986,"totalCount":986},{"name":"moroccan_restaurant","displayName":"Moroccan Restaurant","basicCategory":"restaurant","count":2829,"totalCount":2829}]},{"name":"southern_african_restaurant","displayName":"Southern African Restaurant","basicCategory":"restaurant","totalCount":217,"children":[{"name":"south_african_restaurant","displayName":"South African Restaurant","basicCategory":"restaurant","count":217,"totalCount":217}]},{"name":"west_african_restaurant","displayName":"West African Restaurant","basicCategory":"restaurant","totalCount":418,"children":[{"name":"ghanaian_restaurant","displayName":"Ghanaian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"nigerian_restaurant","displayName":"Nigerian Restaurant","basicCategory":"restaurant","count":303,"totalCount":303},{"name":"senegalese_restaurant","displayName":"Senegalese Restaurant","basicCategory":"restaurant","count":115,"totalCount":115}]}]},{"name":"asian_restaurant","displayName":"Asian Restaurant","basicCategory":"restaurant","count":73045,"totalCount":1176555,"children":[{"name":"central_asian_restaurant","displayName":"Central Asian Restaurant","basicCategory":"restaurant","totalCount":2296,"children":[{"name":"afghani_restaurant","displayName":"Afghani Restaurant","basicCategory":"restaurant","count":2055,"totalCount":2055},{"name":"kazakhstani_restaurant","displayName":"Kazakhstani Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"uzbek_restaurant","displayName":"Uzbek Restaurant","basicCategory":"restaurant","count":241,"totalCount":241}]},{"name":"east_asian_restaurant","displayName":"East Asian Restaurant","basicCategory":"restaurant","totalCount":730472,"children":[{"name":"chinese_restaurant","displayName":"Chinese Restaurant","basicCategory":"restaurant","count":181146,"totalCount":186714,"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","totalCount":0},{"name":"dim_sum_restaurant","displayName":"Dim Sum Restaurant","basicCategory":"restaurant","count":4953,"totalCount":4953},{"name":"dongbei_restaurant","displayName":"Dongbei Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"fujian_restaurant","displayName":"Fujian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"hunan_restaurant","displayName":"Hunan Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"indo_chinese_restaurant","displayName":"Indo Chinese Restaurant","basicCategory":"restaurant","count":615,"totalCount":615},{"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","totalCount":0},{"name":"sichuan_restaurant","displayName":"Sichuan Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"xinjiang_restaurant","displayName":"Xinjiang Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"japanese_restaurant","displayName":"Japanese Restaurant","basicCategory":"restaurant","count":348248,"totalCount":449989,"children":[{"name":"sushi_restaurant","displayName":"Sushi Restaurant","basicCategory":"restaurant","count":101741,"totalCount":101741}]},{"name":"korean_restaurant","displayName":"Korean Restaurant","basicCategory":"restaurant","count":84105,"totalCount":84105},{"name":"mongolian_restaurant","displayName":"Mongolian Restaurant","basicCategory":"restaurant","count":751,"totalCount":751},{"name":"taiwanese_restaurant","displayName":"Taiwanese Restaurant","basicCategory":"restaurant","count":8913,"totalCount":8913}]},{"name":"ramen_restaurant","displayName":"Ramen Restaurant","basicCategory":"restaurant","count":45827,"totalCount":45827},{"name":"south_asian_restaurant","displayName":"South Asian Restaurant","basicCategory":"restaurant","totalCount":109128,"children":[{"name":"bangladeshi_restaurant","displayName":"Bangladeshi Restaurant","basicCategory":"restaurant","count":1969,"totalCount":1969},{"name":"himalayan_restaurant","displayName":"Himalayan Restaurant","basicCategory":"restaurant","count":58,"totalCount":58,"children":[{"name":"nepalese_restaurant","displayName":"Nepalese Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"indian_restaurant","displayName":"Indian Restaurant","basicCategory":"restaurant","count":102723,"totalCount":102723,"children":[{"name":"bengali_restaurant","displayName":"Bengali Restaurant","basicCategory":"restaurant","totalCount":0},{"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","totalCount":0},{"name":"north_indian_restaurant","displayName":"North Indian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"punjabi_restaurant","displayName":"Punjabi Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"rajasthani_restaurant","displayName":"Rajasthani Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"south_indian_restaurant","displayName":"South Indian Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"pakistani_restaurant","displayName":"Pakistani Restaurant","basicCategory":"restaurant","count":3240,"totalCount":3240},{"name":"sri_lankan_restaurant","displayName":"Sri Lankan Restaurant","basicCategory":"restaurant","count":1138,"totalCount":1138},{"name":"tibetan_restaurant","displayName":"Tibetan Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"southeast_asian_restaurant","displayName":"Southeast Asian Restaurant","basicCategory":"restaurant","totalCount":215772,"children":[{"name":"burmese_restaurant","displayName":"Burmese Restaurant","basicCategory":"restaurant","count":641,"totalCount":641},{"name":"cambodian_restaurant","displayName":"Cambodian Restaurant","basicCategory":"restaurant","count":791,"totalCount":791},{"name":"filipino_restaurant","displayName":"Filipino Restaurant","basicCategory":"restaurant","count":10665,"totalCount":10665},{"name":"indonesian_restaurant","displayName":"Indonesian Restaurant","basicCategory":"restaurant","count":54634,"totalCount":54634,"children":[{"name":"sundanese_restaurant","displayName":"Sundanese Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"laotian_restaurant","displayName":"Laotian Restaurant","basicCategory":"restaurant","count":20,"totalCount":20},{"name":"malaysian_restaurant","displayName":"Malaysian Restaurant","basicCategory":"restaurant","count":12316,"totalCount":12316},{"name":"nasi_restaurant","displayName":"Nasi Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"singaporean_restaurant","displayName":"Singaporean Restaurant","basicCategory":"restaurant","count":758,"totalCount":758},{"name":"thai_restaurant","displayName":"Thai Restaurant","basicCategory":"restaurant","count":100446,"totalCount":100446},{"name":"vietnamese_restaurant","displayName":"Vietnamese Restaurant","basicCategory":"restaurant","count":35501,"totalCount":35501}]},{"name":"wok_restaurant","displayName":"Wok Restaurant","basicCategory":"restaurant","count":15,"totalCount":15}]},{"name":"bar_and_grill_restaurant","displayName":"Bar and Grill Restaurant","basicCategory":"restaurant","count":88422,"totalCount":88422},{"name":"breakfast_and_brunch_restaurant","displayName":"Breakfast and Brunch Restaurant","basicCategory":"restaurant","count":74087,"totalCount":89509,"children":[{"name":"pancake_house","displayName":"Pancake House","basicCategory":"restaurant","count":15138,"totalCount":15138},{"name":"waffle_restaurant","displayName":"Waffle Restaurant","basicCategory":"restaurant","count":284,"totalCount":284}]},{"name":"buffet_restaurant","displayName":"Buffet Restaurant","basicCategory":"restaurant","count":33644,"totalCount":33644},{"name":"cafeteria","displayName":"Cafeteria","basicCategory":"restaurant","count":2717,"totalCount":2717},{"name":"comfort_food_restaurant","displayName":"Comfort Food Restaurant","basicCategory":"restaurant","count":9536,"totalCount":9536},{"name":"diy_foods_restaurant","displayName":"DIY Foods Restaurant","basicCategory":"restaurant","count":52,"totalCount":52},{"name":"dumpling_restaurant","displayName":"Dumpling Restaurant","basicCategory":"restaurant","count":1115,"totalCount":1115},{"name":"european_restaurant","displayName":"European Restaurant","basicCategory":"restaurant","count":12182,"totalCount":856896,"children":[{"name":"central_european_restaurant","displayName":"Central European Restaurant","basicCategory":"restaurant","totalCount":37819,"children":[{"name":"austrian_restaurant","displayName":"Austrian Restaurant","basicCategory":"restaurant","count":4715,"totalCount":4715},{"name":"czech_restaurant","displayName":"Czech Restaurant","basicCategory":"restaurant","count":1355,"totalCount":1355},{"name":"german_restaurant","displayName":"German Restaurant","basicCategory":"restaurant","count":26141,"totalCount":26141,"children":[{"name":"fischbrotchen_restaurant","displayName":"Fischbrotchen Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"hungarian_restaurant","displayName":"Hungarian Restaurant","basicCategory":"restaurant","count":1108,"totalCount":1108},{"name":"polish_restaurant","displayName":"Polish Restaurant","basicCategory":"restaurant","count":2696,"totalCount":2696},{"name":"schnitzel_restaurant","displayName":"Schnitzel Restaurant","basicCategory":"restaurant","count":9,"totalCount":9},{"name":"slovakian_restaurant","displayName":"Slovakian Restaurant","basicCategory":"restaurant","count":79,"totalCount":79},{"name":"swiss_restaurant","displayName":"Swiss Restaurant","basicCategory":"restaurant","count":1716,"totalCount":1716}]},{"name":"eastern_european_restaurant","displayName":"Eastern European Restaurant","basicCategory":"restaurant","count":3510,"totalCount":7297,"children":[{"name":"belarusian_restaurant","displayName":"Belarusian Restaurant","basicCategory":"restaurant","count":35,"totalCount":35},{"name":"bulgarian_restaurant","displayName":"Bulgarian Restaurant","basicCategory":"restaurant","count":618,"totalCount":618},{"name":"lithuanian_restaurant","displayName":"Lithuanian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"romanian_restaurant","displayName":"Romanian Restaurant","basicCategory":"restaurant","count":614,"totalCount":614},{"name":"russian_restaurant","displayName":"Russian Restaurant","basicCategory":"restaurant","count":1495,"totalCount":1572,"children":[{"name":"tatar_restaurant","displayName":"Tatar Restaurant","basicCategory":"restaurant","count":77,"totalCount":77}]},{"name":"serbo_croatian_restaurant","displayName":"Serbo-Croatian Restaurant","basicCategory":"restaurant","count":10,"totalCount":10},{"name":"ukrainian_restaurant","displayName":"Ukrainian Restaurant","basicCategory":"restaurant","count":938,"totalCount":938}]},{"name":"iberian_restaurant","displayName":"Iberian Restaurant","basicCategory":"restaurant","count":49,"totalCount":41075,"children":[{"name":"portuguese_restaurant","displayName":"Portuguese Restaurant","basicCategory":"restaurant","count":9726,"totalCount":9726},{"name":"spanish_restaurant","displayName":"Spanish Restaurant","basicCategory":"restaurant","count":29021,"totalCount":31300,"children":[{"name":"basque_restaurant","displayName":"Basque Restaurant","basicCategory":"restaurant","count":1060,"totalCount":1060},{"name":"catalan_restaurant","displayName":"Catalan Restaurant","basicCategory":"restaurant","count":1219,"totalCount":1219}]}]},{"name":"mediterranean_restaurant","displayName":"Mediterranean Restaurant","basicCategory":"restaurant","count":26883,"totalCount":679801,"children":[{"name":"greek_restaurant","displayName":"Greek Restaurant","basicCategory":"restaurant","count":26884,"totalCount":26884},{"name":"italian_restaurant","displayName":"Italian Restaurant","basicCategory":"restaurant","count":216908,"totalCount":626034,"children":[{"name":"piadina_restaurant","displayName":"Piadina Restaurant","basicCategory":"restaurant","count":185,"totalCount":185},{"name":"pizza_restaurant","displayName":"Pizza Restaurant","basicCategory":"restaurant","count":408941,"totalCount":408941}]},{"name":"maltese_restaurant","displayName":"Maltese Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"scandinavian_restaurant","displayName":"Scandinavian Restaurant","basicCategory":"restaurant","count":3318,"totalCount":3325,"children":[{"name":"danish_restaurant","displayName":"Danish Restaurant","basicCategory":"restaurant","count":6,"totalCount":6},{"name":"finnish_restaurant","displayName":"Finnish Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"icelandic_restaurant","displayName":"Icelandic Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"norwegian_restaurant","displayName":"Norwegian Restaurant","basicCategory":"restaurant","count":1,"totalCount":1},{"name":"swedish_restaurant","displayName":"Swedish Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"western_european_restaurant","displayName":"Western European Restaurant","basicCategory":"restaurant","totalCount":75397,"children":[{"name":"belgian_restaurant","displayName":"Belgian Restaurant","basicCategory":"restaurant","count":4096,"totalCount":4096},{"name":"british_restaurant","displayName":"British Restaurant","basicCategory":"restaurant","count":4332,"totalCount":4332},{"name":"dutch_restaurant","displayName":"Dutch Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"french_restaurant","displayName":"French Restaurant","basicCategory":"restaurant","count":65306,"totalCount":66247,"children":[{"name":"brasserie","displayName":"Brasserie","basicCategory":"restaurant","count":941,"totalCount":941}]},{"name":"irish_restaurant","displayName":"Irish Restaurant","basicCategory":"restaurant","count":483,"totalCount":483},{"name":"scottish_restaurant","displayName":"Scottish Restaurant","basicCategory":"restaurant","count":239,"totalCount":239},{"name":"welsh_restaurant","displayName":"Welsh Restaurant","basicCategory":"restaurant","totalCount":0}]}]},{"name":"haute_cuisine_restaurant","displayName":"Haute Cuisine Restaurant","basicCategory":"restaurant","count":3,"totalCount":3},{"name":"international_fusion_restaurant","displayName":"International Fusion Restaurant","basicCategory":"restaurant","count":476,"totalCount":16086,"children":[{"name":"asian_fusion_restaurant","displayName":"Asian Fusion Restaurant","basicCategory":"restaurant","count":12746,"totalCount":12746},{"name":"latin_fusion_restaurant","displayName":"Latin Fusion Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"pan_asian_restaurant","displayName":"Pan Asian Restaurant","basicCategory":"restaurant","count":2864,"totalCount":2864}]},{"name":"latin_american_restaurant","displayName":"Latin American Restaurant","basicCategory":"restaurant","count":21756,"totalCount":369939,"children":[{"name":"caribbean_restaurant","displayName":"Caribbean Restaurant","basicCategory":"restaurant","count":7779,"totalCount":16116,"children":[{"name":"cuban_restaurant","displayName":"Cuban Restaurant","basicCategory":"restaurant","count":3109,"totalCount":3109},{"name":"dominican_restaurant","displayName":"Dominican Restaurant","basicCategory":"restaurant","count":1029,"totalCount":1029},{"name":"haitian_restaurant","displayName":"Haitian Restaurant","basicCategory":"restaurant","count":503,"totalCount":503},{"name":"jamaican_restaurant","displayName":"Jamaican Restaurant","basicCategory":"restaurant","count":2508,"totalCount":2508},{"name":"puerto_rican_restaurant","displayName":"Puerto Rican Restaurant","basicCategory":"restaurant","count":1125,"totalCount":1125},{"name":"trinidadian_restaurant","displayName":"Trinidadian Restaurant","basicCategory":"restaurant","count":63,"totalCount":63}]},{"name":"central_american_restaurant","displayName":"Central American Restaurant","basicCategory":"restaurant","totalCount":4422,"children":[{"name":"belizean_restaurant","displayName":"Belizean Restaurant","basicCategory":"restaurant","count":12,"totalCount":12},{"name":"costa_rican_restaurant","displayName":"Costa Rican Restaurant","basicCategory":"restaurant","count":91,"totalCount":91},{"name":"guatemalan_restaurant","displayName":"Guatemalan Restaurant","basicCategory":"restaurant","count":460,"totalCount":460},{"name":"honduran_restaurant","displayName":"Honduran Restaurant","basicCategory":"restaurant","count":806,"totalCount":806},{"name":"nicaraguan_restaurant","displayName":"Nicaraguan Restaurant","basicCategory":"restaurant","count":319,"totalCount":319},{"name":"panamanian_restaurant","displayName":"Panamanian Restaurant","basicCategory":"restaurant","count":257,"totalCount":257},{"name":"salvadoran_restaurant","displayName":"Salvadoran Restaurant","basicCategory":"restaurant","count":2477,"totalCount":2477}]},{"name":"empanada_restaurant","displayName":"Empanada Restaurant","basicCategory":"restaurant","count":274,"totalCount":274},{"name":"mexican_restaurant","displayName":"Mexican Restaurant","basicCategory":"restaurant","count":211662,"totalCount":211662},{"name":"south_american_restaurant","displayName":"South American Restaurant","basicCategory":"restaurant","totalCount":65827,"children":[{"name":"argentine_restaurant","displayName":"Argentine Restaurant","basicCategory":"restaurant","count":4479,"totalCount":4479},{"name":"bolivian_restaurant","displayName":"Bolivian Restaurant","basicCategory":"restaurant","count":153,"totalCount":153},{"name":"brazilian_restaurant","displayName":"Brazilian Restaurant","basicCategory":"restaurant","count":45435,"totalCount":45435},{"name":"chilean_restaurant","displayName":"Chilean Restaurant","basicCategory":"restaurant","count":297,"totalCount":297},{"name":"colombian_restaurant","displayName":"Colombian Restaurant","basicCategory":"restaurant","count":3106,"totalCount":3106},{"name":"ecuadorian_restaurant","displayName":"Ecuadorian Restaurant","basicCategory":"restaurant","count":1001,"totalCount":1001},{"name":"paraguayan_restaurant","displayName":"Paraguayan Restaurant","basicCategory":"restaurant","count":78,"totalCount":78},{"name":"peruvian_restaurant","displayName":"Peruvian Restaurant","basicCategory":"restaurant","count":9377,"totalCount":9377},{"name":"surinamese_restaurant","displayName":"Surinamese Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"uruguayan_restaurant","displayName":"Uruguayan Restaurant","basicCategory":"restaurant","count":203,"totalCount":203},{"name":"venezuelan_restaurant","displayName":"Venezuelan Restaurant","basicCategory":"restaurant","count":1698,"totalCount":1698}]},{"name":"taco_restaurant","displayName":"Taco Restaurant","basicCategory":"restaurant","count":42343,"totalCount":42343},{"name":"texmex_restaurant","displayName":"Texmex Restaurant","basicCategory":"restaurant","count":7539,"totalCount":7539}]},{"name":"meat_restaurant","displayName":"Meat Restaurant","basicCategory":"restaurant","count":57,"totalCount":450403,"children":[{"name":"barbecue_restaurant","displayName":"Barbecue Restaurant","basicCategory":"restaurant","count":112256,"totalCount":112256},{"name":"burger_restaurant","displayName":"Burger Restaurant","basicCategory":"restaurant","count":158132,"totalCount":158132},{"name":"cheesesteak_restaurant","displayName":"Cheesesteak Restaurant","basicCategory":"restaurant","count":563,"totalCount":563},{"name":"chicken_restaurant","displayName":"Chicken Restaurant","basicCategory":"restaurant","count":95913,"totalCount":95913},{"name":"chicken_wings_restaurant","displayName":"Chicken Wings Restaurant","basicCategory":"restaurant","count":7157,"totalCount":7157},{"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":13550,"totalCount":13550},{"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":62767,"totalCount":62767},{"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":16804,"totalCount":93497,"children":[{"name":"arabian_restaurant","displayName":"Arabian Restaurant","basicCategory":"restaurant","count":3210,"totalCount":3210},{"name":"armenian_restaurant","displayName":"Armenian Restaurant","basicCategory":"restaurant","count":414,"totalCount":414},{"name":"azerbaijani_restaurant","displayName":"Azerbaijani Restaurant","basicCategory":"restaurant","count":60,"totalCount":60},{"name":"falafel_restaurant","displayName":"Falafel Restaurant","basicCategory":"restaurant","count":860,"totalCount":860},{"name":"georgian_restaurant","displayName":"Georgian Restaurant","basicCategory":"restaurant","count":1336,"totalCount":1336},{"name":"israeli_restaurant","displayName":"Israeli Restaurant","basicCategory":"restaurant","count":288,"totalCount":288},{"name":"kofta_restaurant","displayName":"Kofta Restaurant","basicCategory":"restaurant","count":17,"totalCount":17},{"name":"kurdish_restaurant","displayName":"Kurdish Restaurant","basicCategory":"restaurant","count":120,"totalCount":120},{"name":"lebanese_restaurant","displayName":"Lebanese Restaurant","basicCategory":"restaurant","count":6717,"totalCount":6717},{"name":"palestinian_restaurant","displayName":"Palestinian Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"persian_restaurant","displayName":"Persian Restaurant","basicCategory":"restaurant","count":2564,"totalCount":2564},{"name":"syrian_restaurant","displayName":"Syrian Restaurant","basicCategory":"restaurant","count":1230,"totalCount":1230},{"name":"turkish_restaurant","displayName":"Turkish Restaurant","basicCategory":"restaurant","count":35007,"totalCount":59877,"children":[{"name":"doner_kebab_restaurant","displayName":"Doner Kebab Restaurant","basicCategory":"restaurant","count":24870,"totalCount":24870}]},{"name":"turkmen_restaurant","displayName":"Turkmen Restaurant","basicCategory":"restaurant","totalCount":0},{"name":"yemenite_restaurant","displayName":"Yemenite Restaurant","basicCategory":"restaurant","totalCount":0}]},{"name":"north_american_restaurant","displayName":"North American Restaurant","basicCategory":"restaurant","totalCount":78296,"children":[{"name":"american_restaurant","displayName":"American Restaurant","basicCategory":"restaurant","count":66136,"totalCount":77201,"children":[{"name":"cajun_and_creole_restaurant","displayName":"Cajun and Creole Restaurant","basicCategory":"restaurant","count":5107,"totalCount":5107},{"name":"southern_american_restaurant","displayName":"Southern American Restaurant","basicCategory":"restaurant","count":5958,"totalCount":5958}]},{"name":"canadian_restaurant","displayName":"Canadian Restaurant","basicCategory":"restaurant","count":1053,"totalCount":1095,"children":[{"name":"poutinerie_restaurant","displayName":"Poutinerie Restaurant","basicCategory":"restaurant","count":42,"totalCount":42}]}]},{"name":"pacific_rim_restaurant","displayName":"Pacific Rim Restaurant","basicCategory":"restaurant","totalCount":9072,"children":[{"name":"australian_restaurant","displayName":"Australian Restaurant","basicCategory":"restaurant","count":1787,"totalCount":1787},{"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":178,"totalCount":7284,"children":[{"name":"hawaiian_restaurant","displayName":"Hawaiian Restaurant","basicCategory":"restaurant","count":2486,"totalCount":7106,"children":[{"name":"poke_restaurant","displayName":"Poke Restaurant","basicCategory":"restaurant","count":4620,"totalCount":4620}]}]}]},{"name":"pop_up_restaurant","displayName":"Pop Up Restaurant","basicCategory":"restaurant","count":97,"totalCount":97},{"name":"salad_bar","displayName":"Salad Bar","basicCategory":"restaurant","count":12830,"totalCount":12830},{"name":"seafood_restaurant","displayName":"Seafood Restaurant","basicCategory":"restaurant","count":144973,"totalCount":162067,"children":[{"name":"fish_and_chips_restaurant","displayName":"Fish and Chips Restaurant","basicCategory":"restaurant","count":17051,"totalCount":17051},{"name":"fish_restaurant","displayName":"Fish Restaurant","basicCategory":"restaurant","count":43,"totalCount":43}]},{"name":"soul_food","displayName":"Soul Food","basicCategory":"restaurant","count":3087,"totalCount":3087},{"name":"soup_restaurant","displayName":"Soup Restaurant","basicCategory":"restaurant","count":13668,"totalCount":13668},{"name":"special_diet_restaurant","displayName":"Special Diet Restaurant","basicCategory":"restaurant","totalCount":51213,"children":[{"name":"acai_bowls","displayName":"Acai Bowls","basicCategory":"restaurant","count":355,"totalCount":355},{"name":"gluten_free_restaurant","displayName":"Gluten Free Restaurant","basicCategory":"restaurant","count":1227,"totalCount":1227},{"name":"halal_restaurant","displayName":"Halal Restaurant","basicCategory":"restaurant","count":7605,"totalCount":7605},{"name":"health_food_restaurant","displayName":"Health Food Restaurant","basicCategory":"restaurant","count":9750,"totalCount":9750},{"name":"jewish_restaurant","displayName":"Jewish Restaurant","basicCategory":"restaurant","count":54,"totalCount":54},{"name":"kosher_restaurant","displayName":"Kosher Restaurant","basicCategory":"restaurant","count":1280,"totalCount":1280},{"name":"live_and_raw_food_restaurant","displayName":"Live and Raw Food Restaurant","basicCategory":"restaurant","count":799,"totalCount":799},{"name":"molecular_gastronomy_restaurant","displayName":"Molecular Gastronomy Restaurant","basicCategory":"restaurant","count":336,"totalCount":336},{"name":"vegan_restaurant","displayName":"Vegan Restaurant","basicCategory":"restaurant","count":4033,"totalCount":4033},{"name":"vegetarian_restaurant","displayName":"Vegetarian Restaurant","basicCategory":"restaurant","count":25774,"totalCount":25774}]},{"name":"supper_club","displayName":"Supper Club","basicCategory":"restaurant","count":7,"totalCount":7},{"name":"theme_restaurant","displayName":"Theme Restaurant","basicCategory":"restaurant","count":23210,"totalCount":23210},{"name":"wrap_restaurant","displayName":"Wrap Restaurant","basicCategory":"restaurant","count":3,"totalCount":3}]}]},{"name":"geographic_entities","displayName":"Geographic Entities","isBasic":true,"count":176263,"totalCount":970417,"children":[{"name":"built_feature","displayName":"Built Feature","isBasic":true,"totalCount":78955,"children":[{"name":"bridge","displayName":"Bridge","isBasic":true,"count":43784,"totalCount":43784},{"name":"building","displayName":"Building","isBasic":true,"totalCount":3,"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,"totalCount":10638,"children":[{"name":"botanical_garden","displayName":"Botanical Garden","basicCategory":"garden","count":10433,"totalCount":10433},{"name":"community_garden","displayName":"Community Garden","basicCategory":"garden","count":205,"totalCount":205}]},{"name":"lookout","displayName":"Lookout","basicCategory":"built_feature","count":19,"totalCount":19},{"name":"marina","displayName":"Marina","isBasic":true,"count":19183,"totalCount":19183},{"name":"pier","displayName":"Pier","isBasic":true,"count":4793,"totalCount":4793},{"name":"quay","displayName":"Quay","basicCategory":"built_feature","count":531,"totalCount":531}]},{"name":"land_feature","displayName":"Land Feature","isBasic":true,"totalCount":348393,"children":[{"name":"beach","displayName":"Beach","isBasic":true,"count":177958,"totalCount":177958,"children":[{"name":"beach_combing_area","displayName":"Beach Combing Area","basicCategory":"beach","totalCount":0}]},{"name":"canyon","displayName":"Canyon","isBasic":true,"count":12,"totalCount":12},{"name":"cave","displayName":"Cave","basicCategory":"land_feature","count":4432,"totalCount":4432},{"name":"crater","displayName":"Crater","basicCategory":"land_feature","totalCount":0},{"name":"desert","displayName":"Desert","basicCategory":"land_feature","count":47,"totalCount":47},{"name":"forest","displayName":"Forest","isBasic":true,"count":7854,"totalCount":7854},{"name":"geologic_formation","displayName":"Geologic Formation","basicCategory":"land_feature","count":1,"totalCount":1},{"name":"hill","displayName":"Hill","isBasic":true,"totalCount":0},{"name":"island","displayName":"Island","isBasic":true,"count":2613,"totalCount":2613},{"name":"mountain","displayName":"Mountain","isBasic":true,"count":131189,"totalCount":131189},{"name":"nature_reserve","displayName":"Nature Reserve","isBasic":true,"count":24277,"totalCount":24277},{"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":366804,"children":[{"name":"canal","displayName":"Canal","isBasic":true,"count":2621,"totalCount":2621},{"name":"hot_springs","displayName":"Hot Springs","isBasic":true,"count":5642,"totalCount":5642},{"name":"lake","displayName":"Lake","isBasic":true,"count":215556,"totalCount":215556},{"name":"ocean","displayName":"Ocean","isBasic":true,"totalCount":0},{"name":"river","displayName":"River","isBasic":true,"count":134916,"totalCount":134916},{"name":"sea","displayName":"Sea","isBasic":true,"totalCount":0},{"name":"waterfall","displayName":"Waterfall","isBasic":true,"count":8069,"totalCount":8069}]}]},{"name":"health_care","displayName":"Health Care","isBasic":true,"count":601038,"totalCount":4580187,"children":[{"name":"emergency_or_urgent_care_facility","displayName":"Emergency or Urgent Care Facility","isBasic":true,"count":3986,"totalCount":56134,"children":[{"name":"ambulance_or_ems_service","displayName":"Ambulance or EMS Service","basicCategory":"emergency_or_urgent_care_facility","count":24238,"totalCount":24238},{"name":"emergency_department","displayName":"Emergency Department","isBasic":true,"count":13985,"totalCount":13985},{"name":"urgent_care_clinic","displayName":"Urgent Care Clinic","isBasic":true,"count":5530,"totalCount":5530},{"name":"walk_in_clinic","displayName":"Walk-In Clinic","isBasic":true,"count":8395,"totalCount":8395}]},{"name":"hospital","displayName":"Hospital","isBasic":true,"count":483089,"totalCount":484264,"children":[{"name":"general_hospital","displayName":"General Hospital","isBasic":true,"totalCount":0},{"name":"specialty_hospital","displayName":"Specialty Hospital","isBasic":true,"totalCount":1175,"children":[{"name":"childrens_hospital","displayName":"Children's Hospital","basicCategory":"specialty_hospital","count":1175,"totalCount":1175},{"name":"long_term_care_hospital","displayName":"Long Term Care Hospital","basicCategory":"specialty_hospital","totalCount":0},{"name":"psychiatric_hospital","displayName":"Psychiatric Hospital","basicCategory":"specialty_hospital","totalCount":0},{"name":"rehabilitation_hospital","displayName":"Rehabilitation Hospital","basicCategory":"specialty_hospital","totalCount":0},{"name":"veterans_hospital","displayName":"Veterans Hospital","basicCategory":"specialty_hospital","totalCount":0}]}]},{"name":"medical_service","displayName":"Medical Service","isBasic":true,"totalCount":183597,"children":[{"name":"blood_and_plasma_donation_center","displayName":"Blood and Plasma Donation Center","basicCategory":"medical_service","count":8151,"totalCount":8151},{"name":"ems_training","displayName":"EMS Training","basicCategory":"medical_service","count":394,"totalCount":394},{"name":"health_insurance_office","displayName":"Health Insurance Office","basicCategory":"medical_service","count":10637,"totalCount":10637},{"name":"home_health_care","displayName":"Home Health Care","basicCategory":"medical_service","count":81007,"totalCount":81007},{"name":"hospice","displayName":"Hospice","basicCategory":"medical_service","count":10856,"totalCount":10856},{"name":"medical_billing","displayName":"Medical Billing","basicCategory":"medical_service","count":2550,"totalCount":2550},{"name":"medical_cannabis","displayName":"Medical Cannabis","basicCategory":"medical_service","totalCount":10774,"children":[{"name":"cannabis_clinic","displayName":"Cannabis Clinic","basicCategory":"medical_service","count":10589,"totalCount":10589},{"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":169,"totalCount":169}]},{"name":"medical_service_organization","displayName":"Medical Service Organization","basicCategory":"medical_service","count":56259,"totalCount":56259},{"name":"medical_transportation","displayName":"Medical Transportation","basicCategory":"medical_service","count":2932,"totalCount":2932},{"name":"sperm_clinic","displayName":"Sperm Clinic","basicCategory":"medical_service","count":37,"totalCount":37}]},{"name":"outpatient_care_facility","displayName":"Outpatient Care Facility","isBasic":true,"count":210956,"totalCount":3109994,"children":[{"name":"behavioral_or_mental_health_clinic","displayName":"Behavioral or Mental Health Clinic","isBasic":true,"count":32418,"totalCount":234588,"children":[{"name":"behavioral_or_crisis_service","displayName":"Behavioral or Crisis Service","basicCategory":"behavioral_or_mental_health_clinic","totalCount":1600,"children":[{"name":"behavior_analysis","displayName":"Behavior Analysis","basicCategory":"behavioral_or_mental_health_clinic","count":459,"totalCount":459},{"name":"crisis_intervention_service","displayName":"Crisis Intervention Service","basicCategory":"behavioral_or_mental_health_clinic","count":1111,"totalCount":1111},{"name":"stress_management_service","displayName":"Stress Management Service","basicCategory":"behavioral_or_mental_health_clinic","count":28,"totalCount":28},{"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","totalCount":14967,"children":[{"name":"family_counseling","displayName":"Family Counseling","basicCategory":"behavioral_or_mental_health_clinic","count":6168,"totalCount":6168},{"name":"marriage_or_relationship_counseling","displayName":"Marriage or Relationship Counseling","basicCategory":"behavioral_or_mental_health_clinic","count":7079,"totalCount":7079},{"name":"sex_therapy","displayName":"Sex Therapy","basicCategory":"behavioral_or_mental_health_clinic","count":1720,"totalCount":1720}]},{"name":"psychiatry_or_psychology_service","displayName":"Psychiatry or Psychology Service","basicCategory":"behavioral_or_mental_health_clinic","totalCount":185603,"children":[{"name":"psychiatry","displayName":"Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":23040,"totalCount":24656,"children":[{"name":"child_psychiatry","displayName":"Child Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":1568,"totalCount":1568},{"name":"geriatric_psychiatry","displayName":"Geriatric Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","count":48,"totalCount":48}]},{"name":"psychoanalysis","displayName":"Psychoanalysis","basicCategory":"behavioral_or_mental_health_clinic","count":114,"totalCount":114},{"name":"psychology","displayName":"Psychology","basicCategory":"behavioral_or_mental_health_clinic","count":106517,"totalCount":106823,"children":[{"name":"sports_psychology","displayName":"Sports Psychology","basicCategory":"behavioral_or_mental_health_clinic","count":306,"totalCount":306}]},{"name":"psychotherapy","displayName":"Psychotherapy","basicCategory":"behavioral_or_mental_health_clinic","count":50832,"totalCount":54010,"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":3178,"totalCount":3178}]}]},{"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":19458,"totalCount":338489,"children":[{"name":"acupuncture","displayName":"Acupuncture","basicCategory":"complementary_and_alternative_medicine","count":44440,"totalCount":44440},{"name":"aromatherapy","displayName":"Aromatherapy","basicCategory":"complementary_and_alternative_medicine","count":5367,"totalCount":5367},{"name":"ayurveda","displayName":"Ayurveda","basicCategory":"complementary_and_alternative_medicine","count":294,"totalCount":294},{"name":"chiropractic","displayName":"Chiropractic","basicCategory":"complementary_and_alternative_medicine","count":112958,"totalCount":112958},{"name":"homeopathy","displayName":"Homeopathy","basicCategory":"complementary_and_alternative_medicine","count":1197,"totalCount":1197},{"name":"naturopathic_medicine","displayName":"Naturopathic Medicine","basicCategory":"complementary_and_alternative_medicine","count":145746,"totalCount":145746},{"name":"reflexology","displayName":"Reflexology","basicCategory":"complementary_and_alternative_medicine","count":7363,"totalCount":7363},{"name":"reiki","displayName":"Reiki","basicCategory":"complementary_and_alternative_medicine","count":1473,"totalCount":1473},{"name":"traditional_chinese_medicine","displayName":"Traditional Chinese Medicine","basicCategory":"complementary_and_alternative_medicine","count":145,"totalCount":193,"children":[{"name":"tui_na","displayName":"Tui Na","basicCategory":"complementary_and_alternative_medicine","count":48,"totalCount":48}]}]},{"name":"dental_clinic","displayName":"Dental Clinic","isBasic":true,"count":505874,"totalCount":717294,"children":[{"name":"cosmetic_dentistry","displayName":"Cosmetic Dentistry","basicCategory":"dental_clinic","count":26945,"totalCount":26945},{"name":"dental_hygiene","displayName":"Dental Hygiene","basicCategory":"dental_clinic","count":189,"totalCount":189},{"name":"endodontics","displayName":"Endodontics","basicCategory":"dental_clinic","count":6970,"totalCount":6970},{"name":"general_dentistry","displayName":"General Dentistry","basicCategory":"dental_clinic","count":114479,"totalCount":114479},{"name":"orthodontics","displayName":"Orthodontics","basicCategory":"dental_clinic","count":36749,"totalCount":36749},{"name":"pediatric_dentistry","displayName":"Pediatric Dentistry","basicCategory":"dental_clinic","count":17614,"totalCount":17614},{"name":"periodontics","displayName":"Periodontics","basicCategory":"dental_clinic","count":5308,"totalCount":5308},{"name":"prosthodontics","displayName":"Prosthodontics","basicCategory":"dental_clinic","count":3166,"totalCount":3166}]},{"name":"diagnostics_imaging_or_lab_service","displayName":"Diagnostics Imaging or Lab Service","isBasic":true,"totalCount":485376,"children":[{"name":"diagnostic_imaging","displayName":"Diagnostic Imaging","basicCategory":"diagnostics_imaging_or_lab_service","count":24563,"totalCount":24676,"children":[{"name":"ultrasound_imaging","displayName":"Ultrasound Imaging","basicCategory":"diagnostics_imaging_or_lab_service","count":113,"totalCount":113}]},{"name":"doctors_office","displayName":"Doctors Office","basicCategory":"diagnostics_imaging_or_lab_service","count":356733,"totalCount":356733},{"name":"laboratory_testing","displayName":"Laboratory Testing","basicCategory":"diagnostics_imaging_or_lab_service","count":83843,"totalCount":84064,"children":[{"name":"paternity_testing","displayName":"Paternity Testing","basicCategory":"diagnostics_imaging_or_lab_service","count":221,"totalCount":221}]},{"name":"pathology","displayName":"Pathology","basicCategory":"diagnostics_imaging_or_lab_service","count":6003,"totalCount":6003},{"name":"radiology","displayName":"Radiology","basicCategory":"diagnostics_imaging_or_lab_service","count":13900,"totalCount":13900}]},{"name":"pediatric_clinic","displayName":"Pediatric Clinic","isBasic":true,"count":58503,"totalCount":63944,"children":[{"name":"general_pediatrics","displayName":"General Pediatrics","basicCategory":"pediatric_clinic","totalCount":0},{"name":"pediatric_anesthesiology","displayName":"Pediatric Anesthesiology","basicCategory":"pediatric_clinic","count":111,"totalCount":111},{"name":"pediatric_cardiology","displayName":"Pediatric Cardiology","basicCategory":"pediatric_clinic","count":2010,"totalCount":2010},{"name":"pediatric_endocrinology","displayName":"Pediatric Endocrinology","basicCategory":"pediatric_clinic","count":602,"totalCount":602},{"name":"pediatric_gastroenterology","displayName":"Pediatric Gastroenterology","basicCategory":"pediatric_clinic","count":695,"totalCount":695},{"name":"pediatric_infectious_disease","displayName":"Pediatric Infectious Disease","basicCategory":"pediatric_clinic","count":20,"totalCount":20},{"name":"pediatric_nephrology","displayName":"Pediatric Nephrology","basicCategory":"pediatric_clinic","count":232,"totalCount":232},{"name":"pediatric_neurology","displayName":"Pediatric Neurology","basicCategory":"pediatric_clinic","count":561,"totalCount":561},{"name":"pediatric_oncology","displayName":"Pediatric Oncology","basicCategory":"pediatric_clinic","count":465,"totalCount":465},{"name":"pediatric_pulmonology","displayName":"Pediatric Pulmonology","basicCategory":"pediatric_clinic","count":676,"totalCount":676},{"name":"pediatric_radiology","displayName":"Pediatric Radiology","basicCategory":"pediatric_clinic","count":69,"totalCount":69}]},{"name":"physical_medicine_and_rehabilitation","displayName":"Physical Medicine and Rehabilitation","isBasic":true,"totalCount":262284,"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":13083,"totalCount":13083},{"name":"orthotics","displayName":"Orthotics","basicCategory":"physical_medicine_and_rehabilitation","count":1210,"totalCount":1210},{"name":"physical_therapy","displayName":"Physical Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":209566,"totalCount":209566},{"name":"prosthetics","displayName":"Prosthetics","basicCategory":"physical_medicine_and_rehabilitation","count":7755,"totalCount":7755},{"name":"psychomotor_therapy","displayName":"Psychomotor Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":3,"totalCount":3},{"name":"rehabilitation_center","displayName":"Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","count":6536,"totalCount":11862,"children":[{"name":"addiction_rehabilitation_center","displayName":"Addiction Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","count":5326,"totalCount":5326}]},{"name":"speech_therapy","displayName":"Speech Therapy","basicCategory":"physical_medicine_and_rehabilitation","count":18793,"totalCount":18793}]},{"name":"primary_care_or_general_clinic","displayName":"Primary Care or General Clinic","isBasic":true,"totalCount":105104,"children":[{"name":"community_health_center","displayName":"Community Health Center","basicCategory":"primary_care_or_general_clinic","count":1068,"totalCount":1068},{"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":61513,"totalCount":61513},{"name":"mobile_clinic","displayName":"Mobile Clinic","basicCategory":"primary_care_or_general_clinic","count":307,"totalCount":307},{"name":"public_health_clinic","displayName":"Public Health Clinic","basicCategory":"primary_care_or_general_clinic","count":42136,"totalCount":42136},{"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":12735,"totalCount":99026,"children":[{"name":"doula_service","displayName":"Doula Service","basicCategory":"reproductive_perinatal_and_womens_care","count":330,"totalCount":330},{"name":"lactation_service","displayName":"Lactation Service","basicCategory":"reproductive_perinatal_and_womens_care","count":159,"totalCount":159},{"name":"maternity_center","displayName":"Maternity Center","basicCategory":"reproductive_perinatal_and_womens_care","count":7257,"totalCount":7257},{"name":"midwifery","displayName":"Midwifery","basicCategory":"reproductive_perinatal_and_womens_care","count":2161,"totalCount":2161},{"name":"obstetrics_and_gynecology","displayName":"Obstetrics and Gynecology","basicCategory":"reproductive_perinatal_and_womens_care","count":66963,"totalCount":66963},{"name":"prenatal_and_perinatal_care","displayName":"Prenatal and Perinatal Care","basicCategory":"reproductive_perinatal_and_womens_care","count":9421,"totalCount":9421}]},{"name":"specialized_health_care","displayName":"Specialized Health Care","isBasic":true,"count":9268,"totalCount":463997,"children":[{"name":"cardiovascular_and_vascular_medicine","displayName":"Cardiovascular and Vascular Medicine","basicCategory":"specialized_health_care","totalCount":34470,"children":[{"name":"cardiology","displayName":"Cardiology","basicCategory":"specialized_health_care","count":34058,"totalCount":34058},{"name":"phlebology","displayName":"Phlebology","basicCategory":"specialized_health_care","count":43,"totalCount":43},{"name":"vascular_medicine","displayName":"Vascular Medicine","basicCategory":"specialized_health_care","count":369,"totalCount":369}]},{"name":"ear_nose_and_throat","displayName":"Ear Nose and Throat","basicCategory":"specialized_health_care","count":19067,"totalCount":37440,"children":[{"name":"audiology","displayName":"Audiology","basicCategory":"specialized_health_care","count":18087,"totalCount":18087},{"name":"otolaryngology","displayName":"Otolaryngology","basicCategory":"specialized_health_care","totalCount":286,"children":[{"name":"neurotology","displayName":"Neurotology","basicCategory":"specialized_health_care","count":12,"totalCount":12},{"name":"otology","displayName":"Otology","basicCategory":"specialized_health_care","count":274,"totalCount":274}]}]},{"name":"endocrinology","displayName":"Endocrinology","basicCategory":"specialized_health_care","count":8422,"totalCount":8422},{"name":"gastroenterology","displayName":"Gastroenterology","basicCategory":"specialized_health_care","count":17532,"totalCount":19875,"children":[{"name":"endoscopy","displayName":"Endoscopy","basicCategory":"specialized_health_care","count":38,"totalCount":38},{"name":"hepatology","displayName":"Hepatology","basicCategory":"specialized_health_care","count":192,"totalCount":192},{"name":"proctology","displayName":"Proctology","basicCategory":"specialized_health_care","count":2113,"totalCount":2113}]},{"name":"genetics","displayName":"Genetics","basicCategory":"specialized_health_care","count":106,"totalCount":941,"children":[{"name":"gerontology","displayName":"Gerontology","basicCategory":"specialized_health_care","count":835,"totalCount":835}]},{"name":"geriatric_medicine","displayName":"Geriatric Medicine","basicCategory":"specialized_health_care","count":1561,"totalCount":1561},{"name":"internal_medicine","displayName":"Internal Medicine","basicCategory":"specialized_health_care","count":34727,"totalCount":72387,"children":[{"name":"allergy_and_immunology","displayName":"Allergy and Immunology","basicCategory":"specialized_health_care","count":6978,"totalCount":6978},{"name":"infectious_disease","displayName":"Infectious Disease","basicCategory":"specialized_health_care","count":4177,"totalCount":4177,"children":[{"name":"tropical_medicine","displayName":"Tropical Medicine","basicCategory":"specialized_health_care","totalCount":0}]},{"name":"oncology","displayName":"Oncology","basicCategory":"specialized_health_care","count":16799,"totalCount":21198,"children":[{"name":"hematology","displayName":"Hematology","basicCategory":"specialized_health_care","count":4399,"totalCount":4399}]},{"name":"rheumatology","displayName":"Rheumatology","basicCategory":"specialized_health_care","count":5307,"totalCount":5307}]},{"name":"medical_skin_care","displayName":"Medical Skin Care","basicCategory":"specialized_health_care","totalCount":47769,"children":[{"name":"aesthetic_medicine","displayName":"Aesthetic Medicine","basicCategory":"specialized_health_care","count":290,"totalCount":290},{"name":"body_contouring","displayName":"Body Contouring","basicCategory":"specialized_health_care","count":455,"totalCount":455},{"name":"dermatology","displayName":"Dermatology","basicCategory":"specialized_health_care","count":46464,"totalCount":46494,"children":[{"name":"immunodermatology","displayName":"Immunodermatology","basicCategory":"specialized_health_care","count":30,"totalCount":30}]},{"name":"tattoo_removal","displayName":"Tattoo Removal","basicCategory":"specialized_health_care","count":530,"totalCount":530}]},{"name":"musculoskeletal_medicine","displayName":"Musculoskeletal Medicine","basicCategory":"specialized_health_care","totalCount":85809,"children":[{"name":"orthopedics","displayName":"Orthopedics","basicCategory":"specialized_health_care","count":42337,"totalCount":42337},{"name":"podiatry","displayName":"Podiatry","basicCategory":"specialized_health_care","count":43472,"totalCount":43472}]},{"name":"nephrology","displayName":"Nephrology","basicCategory":"specialized_health_care","count":6341,"totalCount":6341},{"name":"neurology","displayName":"Neurology","basicCategory":"specialized_health_care","count":21495,"totalCount":23757,"children":[{"name":"neuropathology","displayName":"Neuropathology","basicCategory":"specialized_health_care","count":2262,"totalCount":2262}]},{"name":"nursing","displayName":"Nursing","basicCategory":"specialized_health_care","count":40849,"totalCount":40849},{"name":"osteopathic_medicine","displayName":"Osteopathic Medicine","basicCategory":"specialized_health_care","count":22494,"totalCount":22494},{"name":"pain_management","displayName":"Pain Management","basicCategory":"specialized_health_care","count":7748,"totalCount":15463,"children":[{"name":"anesthesiology","displayName":"Anesthesiology","basicCategory":"specialized_health_care","count":7715,"totalCount":7715}]},{"name":"preventive_medicine","displayName":"Preventive Medicine","basicCategory":"specialized_health_care","count":89,"totalCount":2348,"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":183,"totalCount":183},{"name":"occupational_medicine","displayName":"Occupational Medicine","basicCategory":"specialized_health_care","count":2036,"totalCount":2036},{"name":"toxicology","displayName":"Toxicology","basicCategory":"specialized_health_care","count":35,"totalCount":35}]},{"name":"pulmonology","displayName":"Pulmonology","basicCategory":"specialized_health_care","count":7869,"totalCount":10184,"children":[{"name":"sleep_medicine","displayName":"Sleep Medicine","basicCategory":"specialized_health_care","count":2315,"totalCount":2315}]},{"name":"sports_medicine","displayName":"Sports Medicine","basicCategory":"specialized_health_care","count":6605,"totalCount":6605},{"name":"urology","displayName":"Urology","basicCategory":"specialized_health_care","count":18014,"totalCount":18014}]},{"name":"vision_or_eye_care_clinic","displayName":"Vision or Eye Care Clinic","isBasic":true,"count":33767,"totalCount":128936,"children":[{"name":"ophthalmology","displayName":"Ophthalmology","basicCategory":"vision_or_eye_care_clinic","count":14478,"totalCount":16511,"children":[{"name":"refractive_surgery_or_lasik","displayName":"Refractive Surgery or Lasik","basicCategory":"vision_or_eye_care_clinic","count":1800,"totalCount":1800},{"name":"retina_services","displayName":"Retina Services","basicCategory":"vision_or_eye_care_clinic","count":233,"totalCount":233}]},{"name":"optometry","displayName":"Optometry","basicCategory":"vision_or_eye_care_clinic","count":78658,"totalCount":78658}]}]},{"name":"specialized_medical_facility","displayName":"Specialized Medical Facility","isBasic":true,"totalCount":145160,"children":[{"name":"abortion_clinic","displayName":"Abortion Clinic","basicCategory":"specialized_medical_facility","count":453,"totalCount":453},{"name":"abuse_and_addiction_treatment_center","displayName":"Abuse and Addiction Treatment Center","basicCategory":"specialized_medical_facility","count":19606,"totalCount":24561,"children":[{"name":"alcohol_and_drug_treatment_center","displayName":"Alcohol and Drug Treatment Center","basicCategory":"specialized_medical_facility","count":4955,"totalCount":4955}]},{"name":"cancer_treatment_center","displayName":"Cancer Treatment Center","basicCategory":"specialized_medical_facility","count":1946,"totalCount":1946},{"name":"dialysis_clinic","displayName":"Dialysis Clinic","basicCategory":"specialized_medical_facility","count":12922,"totalCount":12922},{"name":"eating_disorder_treatment_center","displayName":"Eating Disorder Treatment Center","basicCategory":"specialized_medical_facility","count":215,"totalCount":215},{"name":"fertility_clinic","displayName":"Fertility Clinic","basicCategory":"specialized_medical_facility","count":6919,"totalCount":6919},{"name":"organ_and_tissue_donor_service","displayName":"Organ and Tissue Donor Service","basicCategory":"specialized_medical_facility","count":40,"totalCount":40},{"name":"surgery","displayName":"Surgery","isBasic":true,"count":34095,"totalCount":98104,"children":[{"name":"cardiothoracic_surgery","displayName":"Cardiothoracic Surgery","basicCategory":"surgery","count":2528,"totalCount":2528},{"name":"oral_and_maxillofacial_surgery","displayName":"Oral and Maxillofacial Surgery","basicCategory":"surgery","count":13467,"totalCount":13467},{"name":"orthopedic_surgery","displayName":"Orthopedic Surgery","basicCategory":"surgery","totalCount":698,"children":[{"name":"pediatric_orthopedic_surgery","displayName":"Pediatric Orthopedic Surgery","basicCategory":"surgery","count":504,"totalCount":504},{"name":"spine_surgery","displayName":"Spine Surgery","basicCategory":"surgery","count":194,"totalCount":194}]},{"name":"pediatric_surgery","displayName":"Pediatric Surgery","basicCategory":"surgery","count":480,"totalCount":480},{"name":"plastic_and_reconstructive_surgery","displayName":"Plastic and Reconstructive Surgery","basicCategory":"surgery","count":33857,"totalCount":36437,"children":[{"name":"cosmetic_surgery","displayName":"Cosmetic Surgery","basicCategory":"surgery","count":2580,"totalCount":2580}]},{"name":"surgery_center","displayName":"Surgery Center","basicCategory":"surgery","count":10399,"totalCount":10399}]}]}]},{"name":"lifestyle_services","displayName":"Lifestyle Services","isBasic":true,"totalCount":4624751,"children":[{"name":"animal_or_pet_service","displayName":"Animal or Pet Service","isBasic":true,"count":80894,"totalCount":524232,"children":[{"name":"animal_adoption_or_rescue","displayName":"Animal Adoption or Rescue","basicCategory":"animal_or_pet_service","totalCount":34886,"children":[{"name":"animal_rescue_service","displayName":"Animal Rescue Service","basicCategory":"animal_or_pet_service","count":5740,"totalCount":5740},{"name":"animal_shelter","displayName":"Animal Shelter","basicCategory":"animal_or_pet_service","count":27738,"totalCount":27738},{"name":"pet_adoption","displayName":"Pet Adoption","basicCategory":"animal_or_pet_service","count":1408,"totalCount":1408}]},{"name":"equine_service","displayName":"Equine Service","basicCategory":"animal_or_pet_service","totalCount":21932,"children":[{"name":"farrier_service","displayName":"Farrier Service","basicCategory":"animal_or_pet_service","count":30,"totalCount":30},{"name":"horse_boarding","displayName":"Horse Boarding","basicCategory":"animal_or_pet_service","count":16133,"totalCount":16133},{"name":"horse_trainer","displayName":"Horse Trainer","basicCategory":"animal_or_pet_service","count":5769,"totalCount":5769}]},{"name":"pet_breeder","displayName":"Pet Breeder","basicCategory":"animal_or_pet_service","count":27294,"totalCount":27294},{"name":"pet_care_service","displayName":"Pet Care Service","basicCategory":"animal_or_pet_service","totalCount":161055,"children":[{"name":"aquarium_service","displayName":"Aquarium Service","basicCategory":"animal_or_pet_service","count":158,"totalCount":158},{"name":"dog_walker","displayName":"Dog Walker","basicCategory":"animal_or_pet_service","count":5740,"totalCount":5740},{"name":"pet_boarding","displayName":"Pet Boarding","basicCategory":"animal_or_pet_service","count":18459,"totalCount":18459},{"name":"pet_groomer","displayName":"Pet Groomer","basicCategory":"animal_or_pet_service","count":97813,"totalCount":97813},{"name":"pet_sitting","displayName":"Pet Sitting","basicCategory":"animal_or_pet_service","count":12840,"totalCount":12840},{"name":"pet_training","displayName":"Pet Training","basicCategory":"animal_or_pet_service","count":1211,"totalCount":25933,"children":[{"name":"dog_trainer","displayName":"Dog Trainer","basicCategory":"animal_or_pet_service","count":24722,"totalCount":24722}]},{"name":"pet_transportation","displayName":"Pet Transportation","basicCategory":"animal_or_pet_service","count":58,"totalCount":58},{"name":"pet_waste_removal","displayName":"Pet Waste Removal","basicCategory":"animal_or_pet_service","count":54,"totalCount":54}]},{"name":"pet_cemetery_and_crematorium_service","displayName":"Pet Cemetery and Crematorium Service","basicCategory":"animal_or_pet_service","count":370,"totalCount":370},{"name":"pet_insurance","displayName":"Pet Insurance","basicCategory":"animal_or_pet_service","count":27,"totalCount":27},{"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","totalCount":197703,"children":[{"name":"animal_hospital","displayName":"Animal Hospital","basicCategory":"animal_or_pet_service","count":1966,"totalCount":1966},{"name":"animal_physical_therapy","displayName":"Animal Physical Therapy","basicCategory":"animal_or_pet_service","count":17,"totalCount":17},{"name":"emergency_pet_hospital","displayName":"Emergency Pet Hospital","basicCategory":"animal_or_pet_service","count":579,"totalCount":579},{"name":"holistic_animal_care","displayName":"Holistic Animal Care","basicCategory":"animal_or_pet_service","count":77,"totalCount":77},{"name":"pet_hospice","displayName":"Pet Hospice","basicCategory":"animal_or_pet_service","count":1114,"totalCount":1114},{"name":"veterinarian","displayName":"Veterinarian","basicCategory":"animal_or_pet_service","count":193950,"totalCount":193950}]}]},{"name":"food_service","displayName":"Food Service","isBasic":true,"totalCount":66743,"children":[{"name":"food_consultant","displayName":"Food Consultant","basicCategory":"food_service","count":2837,"totalCount":2837},{"name":"food_delivery_service","displayName":"Food Delivery Service","basicCategory":"food_service","count":56168,"totalCount":63906,"children":[{"name":"pizza_delivery_service","displayName":"Pizza Delivery Service","basicCategory":"food_service","count":7738,"totalCount":7738}]}]},{"name":"personal_or_beauty_service","displayName":"Personal or Beauty Service","isBasic":true,"count":34051,"totalCount":3003213,"children":[{"name":"acne_treatment","displayName":"Acne Treatment","basicCategory":"personal_or_beauty_service","count":79,"totalCount":79},{"name":"barber","displayName":"Barber","basicCategory":"personal_or_beauty_service","count":385973,"totalCount":385973,"children":[{"name":"mens_grooming_salon","displayName":"Men's Grooming Salon","basicCategory":"personal_or_beauty_service","totalCount":0}]},{"name":"beauty_salon","displayName":"Beauty Salon","basicCategory":"personal_or_beauty_service","count":1238909,"totalCount":1238909,"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":187336,"children":[{"name":"body_art","displayName":"Body Art","basicCategory":"personal_or_beauty_service","totalCount":0},{"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":176733,"totalCount":187336,"children":[{"name":"piercing","displayName":"Piercing","basicCategory":"personal_or_beauty_service","count":1931,"totalCount":1931},{"name":"tattoo","displayName":"Tattoo","basicCategory":"personal_or_beauty_service","count":8672,"totalCount":8672}]}]},{"name":"eyebrow_service","displayName":"Eyebrow Service","basicCategory":"personal_or_beauty_service","count":828,"totalCount":828},{"name":"eyelash_service","displayName":"Eyelash Service","basicCategory":"personal_or_beauty_service","count":4531,"totalCount":4531},{"name":"foot_care","displayName":"Foot Care","basicCategory":"personal_or_beauty_service","count":541,"totalCount":541},{"name":"hair_removal","displayName":"Hair Removal","basicCategory":"personal_or_beauty_service","count":12425,"totalCount":51954,"children":[{"name":"laser_hair_removal","displayName":"Laser Hair Removal","basicCategory":"personal_or_beauty_service","count":19491,"totalCount":19491},{"name":"sugaring","displayName":"Sugaring","basicCategory":"personal_or_beauty_service","count":1417,"totalCount":1417},{"name":"threading_service","displayName":"Threading Service","basicCategory":"personal_or_beauty_service","count":3425,"totalCount":3425},{"name":"waxing","displayName":"Waxing","basicCategory":"personal_or_beauty_service","count":15196,"totalCount":15196}]},{"name":"hair_replacement","displayName":"Hair Replacement","basicCategory":"personal_or_beauty_service","count":6940,"totalCount":17158,"children":[{"name":"hair_extensions","displayName":"Hair Extensions","basicCategory":"personal_or_beauty_service","count":9275,"totalCount":9275},{"name":"hair_loss_center","displayName":"Hair Loss Center","basicCategory":"personal_or_beauty_service","count":943,"totalCount":943},{"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":619934,"totalCount":635017,"children":[{"name":"blow_dry_blow_out_service","displayName":"Blow Dry Blow Out Service","basicCategory":"personal_or_beauty_service","count":413,"totalCount":413},{"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":12601,"totalCount":12601},{"name":"kids_hair_salon","displayName":"Kids Hair Salon","basicCategory":"personal_or_beauty_service","count":2069,"totalCount":2069}]},{"name":"image_consultant","displayName":"Image Consultant","basicCategory":"personal_or_beauty_service","count":3462,"totalCount":3462},{"name":"life_coach","displayName":"Life Coach","basicCategory":"personal_or_beauty_service","count":30912,"totalCount":30912},{"name":"matchmaker","displayName":"Matchmaker","basicCategory":"personal_or_beauty_service","count":403,"totalCount":403},{"name":"nail_salon","displayName":"Nail Salon","basicCategory":"personal_or_beauty_service","count":240060,"totalCount":240060},{"name":"shoe_repair","displayName":"Shoe Repair","basicCategory":"personal_or_beauty_service","count":15752,"totalCount":15752},{"name":"shoe_shining_service","displayName":"Shoe Shining Service","basicCategory":"personal_or_beauty_service","count":60,"totalCount":60},{"name":"skin_care_and_makeup","displayName":"Skin Care and Makeup","basicCategory":"personal_or_beauty_service","count":78561,"totalCount":118291,"children":[{"name":"esthetician","displayName":"Esthetician","basicCategory":"personal_or_beauty_service","count":381,"totalCount":381},{"name":"makeup_artist","displayName":"Makeup Artist","basicCategory":"personal_or_beauty_service","count":37505,"totalCount":37505},{"name":"permanent_makeup","displayName":"Permanent Makeup","basicCategory":"personal_or_beauty_service","count":1844,"totalCount":1844}]},{"name":"tanning_salon","displayName":"Tanning Salon","basicCategory":"personal_or_beauty_service","count":34112,"totalCount":35148,"children":[{"name":"spray_tanning","displayName":"Spray Tanning","basicCategory":"personal_or_beauty_service","count":881,"totalCount":881},{"name":"tanning_bed","displayName":"Tanning Bed","basicCategory":"personal_or_beauty_service","count":155,"totalCount":155}]},{"name":"teeth_whitening","displayName":"Teeth Whitening","basicCategory":"personal_or_beauty_service","count":2748,"totalCount":2748}]},{"name":"wellness_service","displayName":"Wellness Service","isBasic":true,"count":6714,"totalCount":1030563,"children":[{"name":"colonic_hydrotherapy","displayName":"Colonic Hydrotherapy","basicCategory":"wellness_service","count":75,"totalCount":75},{"name":"cryotherapy","displayName":"Cryotherapy","basicCategory":"wellness_service","count":244,"totalCount":244},{"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":12729,"totalCount":12729},{"name":"health_coaching","displayName":"Health Coaching","basicCategory":"wellness_service","count":7956,"totalCount":7956},{"name":"hydrotherapy","displayName":"Hydrotherapy","basicCategory":"wellness_service","count":22,"totalCount":22},{"name":"iv_hydration","displayName":"IV Hydration","basicCategory":"wellness_service","count":304,"totalCount":304},{"name":"massage_therapy","displayName":"Massage Therapy","basicCategory":"wellness_service","count":184871,"totalCount":184871},{"name":"meditation_center","displayName":"Meditation Center","basicCategory":"wellness_service","count":10080,"totalCount":10080},{"name":"nutrition_service","displayName":"Nutrition Service","basicCategory":"wellness_service","count":62884,"totalCount":62884},{"name":"oxygen_bar","displayName":"Oxygen Bar","basicCategory":"wellness_service","count":14,"totalCount":14},{"name":"public_bath_house","displayName":"Public Bath House","basicCategory":"wellness_service","count":639,"totalCount":5337,"children":[{"name":"onsen","displayName":"Onsen","basicCategory":"wellness_service","count":4698,"totalCount":4698},{"name":"turkish_bath","displayName":"Turkish Bath","basicCategory":"wellness_service","totalCount":0}]},{"name":"sauna","displayName":"Sauna","basicCategory":"wellness_service","count":758,"totalCount":758},{"name":"snuggle_service","displayName":"Snuggle Service","basicCategory":"wellness_service","count":4,"totalCount":4},{"name":"spa","displayName":"Spa","basicCategory":"wellness_service","count":614847,"totalCount":715816,"children":[{"name":"day_spa","displayName":"Day Spa","basicCategory":"wellness_service","count":31000,"totalCount":31000},{"name":"float_spa","displayName":"Float Spa","basicCategory":"wellness_service","count":57,"totalCount":57},{"name":"health_spa","displayName":"Health Spa","basicCategory":"wellness_service","count":18157,"totalCount":18157},{"name":"medical_spa","displayName":"Medical Spa","basicCategory":"wellness_service","count":51755,"totalCount":51755}]},{"name":"weight_loss_center","displayName":"Weight Loss Center","basicCategory":"wellness_service","count":22720,"totalCount":22720}]}]},{"name":"lodging","displayName":"Lodging","isBasic":true,"count":430223,"totalCount":2504443,"children":[{"name":"bed_and_breakfast","displayName":"Bed and Breakfast","isBasic":true,"count":155160,"totalCount":155160},{"name":"cabin","displayName":"Cabin","basicCategory":"lodging","count":38975,"totalCount":38975},{"name":"campground","displayName":"Campground","isBasic":true,"count":104128,"totalCount":104128},{"name":"cottage","displayName":"Cottage","basicCategory":"lodging","count":39784,"totalCount":39784},{"name":"country_house","displayName":"Country House","basicCategory":"lodging","count":41,"totalCount":41},{"name":"holiday_park","displayName":"Holiday Park","basicCategory":"lodging","count":75,"totalCount":75},{"name":"hostel","displayName":"Hostel","basicCategory":"lodging","count":58920,"totalCount":58920},{"name":"hotel","displayName":"Hotel","isBasic":true,"count":1172978,"totalCount":1204115,"children":[{"name":"motel","displayName":"Motel","basicCategory":"hotel","count":31137,"totalCount":31137}]},{"name":"houseboat","displayName":"Houseboat","basicCategory":"lodging","count":15,"totalCount":15},{"name":"inn","displayName":"Inn","isBasic":true,"count":25854,"totalCount":25854},{"name":"lodge","displayName":"Lodge","basicCategory":"lodging","count":68594,"totalCount":68594},{"name":"mountain_hut","displayName":"Mountain Hut","basicCategory":"lodging","count":144,"totalCount":144},{"name":"private_lodging","displayName":"Private Lodging","isBasic":true,"totalCount":209625,"children":[{"name":"guest_house","displayName":"Guest House","basicCategory":"private_lodging","count":4329,"totalCount":4329},{"name":"holiday_rental_home","displayName":"Holiday Rental Home","basicCategory":"private_lodging","count":205296,"totalCount":205296}]},{"name":"resort","displayName":"Resort","isBasic":true,"count":102837,"totalCount":125486,"children":[{"name":"beach_resort","displayName":"Beach Resort","basicCategory":"resort","count":7942,"totalCount":7942},{"name":"ski_resort","displayName":"Ski Resort","basicCategory":"resort","count":14707,"totalCount":14707}]},{"name":"retreat","displayName":"Retreat","basicCategory":"lodging","totalCount":115,"children":[{"name":"health_retreat","displayName":"Health Retreat","basicCategory":"lodging","count":115,"totalCount":115}]},{"name":"rv_park","displayName":"RV Park","isBasic":true,"count":23854,"totalCount":23854},{"name":"ryokan","displayName":"Ryokan","basicCategory":"lodging","count":3,"totalCount":3},{"name":"self_catering_accommodation","displayName":"Self Catering Accommodation","basicCategory":"lodging","count":698,"totalCount":698},{"name":"service_apartment","displayName":"Service Apartment","basicCategory":"lodging","count":18634,"totalCount":18634}]},{"name":"services_and_business","displayName":"Services and Business","isBasic":true,"totalCount":16963744,"children":[{"name":"agricultural_service","displayName":"Agricultural Service","isBasic":true,"count":89225,"totalCount":370901,"children":[{"name":"agriculture_association","displayName":"Agriculture Association","basicCategory":"agricultural_service","count":652,"totalCount":652},{"name":"farm","displayName":"Farm","isBasic":true,"count":254727,"totalCount":280790,"children":[{"name":"dairy_farm","displayName":"Dairy Farm","basicCategory":"farm","count":12379,"totalCount":12379},{"name":"orchard","displayName":"Orchard","basicCategory":"farm","count":73,"totalCount":73},{"name":"pig_farm","displayName":"Pig Farm","basicCategory":"farm","count":81,"totalCount":81},{"name":"poultry_farm","displayName":"Poultry Farm","basicCategory":"farm","count":6138,"totalCount":6138},{"name":"ranch","displayName":"Ranch","basicCategory":"farm","count":447,"totalCount":447},{"name":"urban_farm","displayName":"Urban Farm","basicCategory":"farm","count":6945,"totalCount":6945}]},{"name":"farm_equipment_repair_service","displayName":"Farm Equipment Repair Service","basicCategory":"agricultural_service","count":234,"totalCount":234}]},{"name":"b2b_service","displayName":"B2B Service","isBasic":true,"count":50289,"totalCount":2072968,"children":[{"name":"b2b_agriculture_service","displayName":"B2B Agriculture Service","basicCategory":"b2b_service","count":84,"totalCount":136451,"children":[{"name":"agricultural_cooperative","displayName":"Agricultural Cooperative","basicCategory":"b2b_service","count":27508,"totalCount":27508},{"name":"agriculture","displayName":"Agriculture","basicCategory":"b2b_service","count":64916,"totalCount":64916},{"name":"apiary_beekeeper","displayName":"Apiary Beekeeper","basicCategory":"b2b_service","count":33,"totalCount":33},{"name":"b2b_dairy","displayName":"B2B Dairy","basicCategory":"b2b_service","count":70,"totalCount":70},{"name":"b2b_farming","displayName":"B2B Farming","basicCategory":"b2b_service","count":12,"totalCount":13762,"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":6185,"totalCount":8053,"children":[{"name":"fertilizer_store","displayName":"Fertilizer Store","basicCategory":"b2b_service","count":546,"totalCount":546},{"name":"grain_elevator","displayName":"Grain Elevator","basicCategory":"b2b_service","count":1106,"totalCount":1106},{"name":"greenhouse","displayName":"Greenhouse","basicCategory":"b2b_service","count":216,"totalCount":216}]},{"name":"farming_service","displayName":"Farming Service","basicCategory":"b2b_service","count":5617,"totalCount":5617}]},{"name":"b2b_food_products","displayName":"B2B Food Products","basicCategory":"b2b_service","count":1357,"totalCount":1357},{"name":"crops_production","displayName":"Crops Production","basicCategory":"b2b_service","count":824,"totalCount":1874,"children":[{"name":"grain_production","displayName":"Grain Production","basicCategory":"b2b_service","count":1045,"totalCount":1045},{"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":152,"totalCount":6837,"children":[{"name":"fish_farm","displayName":"Fish Farm","basicCategory":"b2b_service","count":6685,"totalCount":6685}]},{"name":"livestock_breeder","displayName":"Livestock Breeder","basicCategory":"b2b_service","count":19821,"totalCount":19821},{"name":"livestock_dealer","displayName":"Livestock Dealer","basicCategory":"b2b_service","count":79,"totalCount":79},{"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":35130,"totalCount":59625,"children":[{"name":"b2b_mining","displayName":"B2B Mining","basicCategory":"b2b_energy_and_utility_service","count":10389,"totalCount":11730,"children":[{"name":"b2b_coal_and_coke","displayName":"B2B Coal and Coke","basicCategory":"b2b_energy_and_utility_service","count":581,"totalCount":581},{"name":"b2b_quarry","displayName":"B2B Quarry","basicCategory":"b2b_energy_and_utility_service","count":760,"totalCount":760}]},{"name":"b2b_oil_and_gas","displayName":"B2B Oil and Gas","basicCategory":"b2b_energy_and_utility_service","count":6542,"totalCount":11245,"children":[{"name":"b2b_oil_and_gas_equipment","displayName":"B2B Oil and Gas Equipment","basicCategory":"b2b_energy_and_utility_service","count":1833,"totalCount":1833},{"name":"b2b_oil_and_gas_exploration_and_development","displayName":"B2B Oil and Gas Exploration and Development","basicCategory":"b2b_energy_and_utility_service","count":145,"totalCount":145},{"name":"b2b_oil_and_gas_extraction","displayName":"B2B Oil and Gas Extraction","basicCategory":"b2b_energy_and_utility_service","count":1360,"totalCount":1360},{"name":"b2b_oil_refinery","displayName":"B2B Oil Refinery","basicCategory":"b2b_energy_and_utility_service","count":1365,"totalCount":1365}]},{"name":"b2b_power_plants_and_power_plant_service","displayName":"B2B Power Plants and Power Plant Service","basicCategory":"b2b_energy_and_utility_service","count":823,"totalCount":823},{"name":"energy_management_service","displayName":"Energy Management Service","basicCategory":"b2b_energy_and_utility_service","count":697,"totalCount":697}]},{"name":"b2b_environmental_service","displayName":"B2B Environmental Service","basicCategory":"b2b_service","count":7347,"totalCount":62159,"children":[{"name":"b2b_cleaning_and_waste_management","displayName":"B2B Cleaning and Waste Management","basicCategory":"b2b_service","count":6428,"totalCount":6428},{"name":"b2b_water_treatment_service","displayName":"B2B Water Treatment Service","basicCategory":"b2b_service","count":29205,"totalCount":29205},{"name":"geological_service","displayName":"Geological Service","basicCategory":"b2b_service","count":3986,"totalCount":3986},{"name":"logging_contractor","displayName":"Logging Contractor","basicCategory":"b2b_service","count":2307,"totalCount":2307},{"name":"logging_equipment_and_supplies","displayName":"Logging Equipment and Supplies","basicCategory":"b2b_service","count":396,"totalCount":396},{"name":"logging_service","displayName":"Logging Service","basicCategory":"b2b_service","count":12490,"totalCount":12490}]},{"name":"b2b_industrial_and_machine_service","displayName":"B2B Industrial and Machine Service","isBasic":true,"count":3478,"totalCount":98826,"children":[{"name":"automation_service","displayName":"Automation Service","basicCategory":"b2b_industrial_and_machine_service","count":21056,"totalCount":21056},{"name":"b2b_equipment_maintenance_and_repair","displayName":"B2B Equipment Maintenance and Repair","basicCategory":"b2b_industrial_and_machine_service","count":626,"totalCount":626},{"name":"casting_molding_service","displayName":"Casting Molding Service","basicCategory":"b2b_industrial_and_machine_service","count":137,"totalCount":137},{"name":"chemical_plant","displayName":"Chemical Plant","basicCategory":"b2b_industrial_and_machine_service","count":54309,"totalCount":54309},{"name":"inventory_control_service","displayName":"Inventory Control Service","basicCategory":"b2b_industrial_and_machine_service","count":1060,"totalCount":1060},{"name":"laser_cutting_service","displayName":"Laser Cutting Service","basicCategory":"b2b_industrial_and_machine_service","count":203,"totalCount":203},{"name":"manufacturing_and_industrial_consultant","displayName":"Manufacturing and Industrial Consultant","basicCategory":"b2b_industrial_and_machine_service","count":233,"totalCount":233},{"name":"metal_plating_service","displayName":"Metal Plating Service","basicCategory":"b2b_industrial_and_machine_service","count":2939,"totalCount":2939},{"name":"occupational_safety","displayName":"Occupational Safety","basicCategory":"b2b_industrial_and_machine_service","count":14486,"totalCount":14486},{"name":"plastic_injection_molding_service","displayName":"Plastic Injection Molding Service","basicCategory":"b2b_industrial_and_machine_service","count":239,"totalCount":239},{"name":"turnery","displayName":"Turnery","basicCategory":"b2b_industrial_and_machine_service","count":60,"totalCount":60}]},{"name":"b2b_media_service","displayName":"B2B Media Service","basicCategory":"b2b_service","totalCount":2682,"children":[{"name":"b2b_audio_visual_production","displayName":"B2B Audio Visual Production","basicCategory":"b2b_service","count":2682,"totalCount":2682}]},{"name":"b2b_medical_support_service","displayName":"B2B Medical Support Service","basicCategory":"b2b_service","count":210,"totalCount":33187,"children":[{"name":"b2b_clinical_lab","displayName":"B2B Clinical Lab","basicCategory":"b2b_service","count":5983,"totalCount":5983},{"name":"b2b_dental_lab","displayName":"B2B Dental Lab","basicCategory":"b2b_service","count":1151,"totalCount":1151},{"name":"b2b_hospital_equipment_and_supplies","displayName":"B2B Hospital Equipment and Supplies","basicCategory":"b2b_service","count":1563,"totalCount":1563},{"name":"b2b_surgical_appliances_and_supplies","displayName":"B2B Surgical Appliances and Supplies","basicCategory":"b2b_service","count":24280,"totalCount":24280}]},{"name":"b2b_office_and_professional_service","displayName":"B2B Office and Professional Service","isBasic":true,"totalCount":192767,"children":[{"name":"b2b_advertising_and_marketing_service","displayName":"B2B Advertising and Marketing Service","basicCategory":"b2b_office_and_professional_service","count":48779,"totalCount":81975,"children":[{"name":"b2b_direct_mail_advertising","displayName":"B2B Direct Mail Advertising","basicCategory":"b2b_office_and_professional_service","count":196,"totalCount":196},{"name":"b2b_marketing_consultant","displayName":"B2B Marketing Consultant","basicCategory":"b2b_office_and_professional_service","count":24298,"totalCount":24298},{"name":"b2b_newspaper_advertising","displayName":"B2B Newspaper Advertising","basicCategory":"b2b_office_and_professional_service","count":627,"totalCount":627},{"name":"b2b_outdoor_advertising","displayName":"B2B Outdoor Advertising","basicCategory":"b2b_office_and_professional_service","count":177,"totalCount":177},{"name":"b2b_promotional_products_and_services","displayName":"B2B Promotional Products and Services","basicCategory":"b2b_office_and_professional_service","count":2029,"totalCount":2029},{"name":"b2b_publicity_service","displayName":"B2B Publicity Service","basicCategory":"b2b_office_and_professional_service","count":690,"totalCount":690},{"name":"b2b_radio_and_television_commercials","displayName":"B2B Radio and Television Commercials","basicCategory":"b2b_office_and_professional_service","count":1201,"totalCount":1201},{"name":"b2b_signage_service","displayName":"B2B Signage Service","basicCategory":"b2b_office_and_professional_service","count":1341,"totalCount":1341},{"name":"b2b_telemarketing_service","displayName":"B2B Telemarketing Service","basicCategory":"b2b_office_and_professional_service","count":2637,"totalCount":2637}]},{"name":"b2b_background_check_service","displayName":"B2B Background Check Service","basicCategory":"b2b_office_and_professional_service","count":36,"totalCount":36},{"name":"b2b_business_management_service","displayName":"B2B Business Management Service","basicCategory":"b2b_office_and_professional_service","count":81576,"totalCount":83968,"children":[{"name":"b2b_executive_search_consultants","displayName":"B2B Executive Search Consultants","basicCategory":"b2b_office_and_professional_service","count":700,"totalCount":700},{"name":"b2b_secretarial_service","displayName":"B2B Secretarial Service","basicCategory":"b2b_office_and_professional_service","count":1692,"totalCount":1692}]},{"name":"b2b_domestic_trade_service","displayName":"B2B Domestic Trade Service","basicCategory":"b2b_office_and_professional_service","count":1154,"totalCount":1154},{"name":"b2b_human_resource_service","displayName":"B2B Human Resource Service","basicCategory":"b2b_office_and_professional_service","count":4727,"totalCount":4727},{"name":"b2b_international_trade_service","displayName":"B2B International Trade Service","basicCategory":"b2b_office_and_professional_service","count":8400,"totalCount":8400},{"name":"b2b_records_storage_service","displayName":"B2B Records Storage Service","basicCategory":"b2b_office_and_professional_service","count":1211,"totalCount":1211},{"name":"restaurant_management","displayName":"Restaurant Management","basicCategory":"b2b_office_and_professional_service","count":13,"totalCount":13},{"name":"transcription_service","displayName":"Transcription Service","basicCategory":"b2b_office_and_professional_service","count":212,"totalCount":212},{"name":"translating_and_interpreting_service","displayName":"Translating and Interpreting Service","basicCategory":"b2b_office_and_professional_service","count":11071,"totalCount":11071}]},{"name":"b2b_science_and_technology_service","displayName":"B2B Science and Technology Service","isBasic":true,"count":14826,"totalCount":15498,"children":[{"name":"b2b_scientific_equipment","displayName":"B2B Scientific Equipment","basicCategory":"b2b_science_and_technology_service","count":507,"totalCount":507},{"name":"b2b_scientific_lab","displayName":"B2B Scientific Lab","basicCategory":"b2b_science_and_technology_service","count":165,"totalCount":165}]},{"name":"b2b_telecommunications_service","displayName":"B2B Telecommunications Service","basicCategory":"b2b_service","totalCount":20,"children":[{"name":"tower_communication_service","displayName":"Tower Communication Service","basicCategory":"b2b_service","count":20,"totalCount":20}]},{"name":"b2b_transportation_and_storage_service","displayName":"B2B Transportation and Storage Service","isBasic":true,"count":1110,"totalCount":204810,"children":[{"name":"b2b_storage","displayName":"B2B Storage","basicCategory":"b2b_transportation_and_storage_service","count":106,"totalCount":10174,"children":[{"name":"warehouse","displayName":"Warehouse","basicCategory":"b2b_transportation_and_storage_service","count":9999,"totalCount":9999},{"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":173480,"totalCount":183160,"children":[{"name":"distribution_service","displayName":"Distribution Service","basicCategory":"b2b_transportation_and_storage_service","count":6159,"totalCount":6159},{"name":"freight_forwarding_agency","displayName":"Freight Forwarding Agency","basicCategory":"b2b_transportation_and_storage_service","count":3521,"totalCount":3521}]},{"name":"motor_freight_trucking","displayName":"Motor Freight Trucking","basicCategory":"b2b_transportation_and_storage_service","count":1701,"totalCount":1701},{"name":"pipeline_transportation","displayName":"Pipeline Transportation","basicCategory":"b2b_transportation_and_storage_service","count":630,"totalCount":630},{"name":"railroad_freight","displayName":"Railroad Freight","basicCategory":"b2b_transportation_and_storage_service","count":4867,"totalCount":4867},{"name":"truck_and_industrial_vehicle_services","displayName":"Truck and Industrial Vehicle Services","basicCategory":"b2b_transportation_and_storage_service","count":335,"totalCount":3168,"children":[{"name":"tractor_dealer","displayName":"Tractor Dealer","basicCategory":"b2b_transportation_and_storage_service","count":1681,"totalCount":1681},{"name":"truck_parts_and_accessories","displayName":"Truck Parts and Accessories","basicCategory":"b2b_transportation_and_storage_service","count":1152,"totalCount":1152}]}]},{"name":"commercial_industrial","displayName":"Commercial Industrial","basicCategory":"b2b_service","count":102336,"totalCount":102336},{"name":"manufacturer","displayName":"Manufacturer","isBasic":true,"count":258533,"totalCount":759962,"children":[{"name":"apparel_manufacturer","displayName":"Apparel Manufacturer","basicCategory":"manufacturer","count":7834,"totalCount":7873,"children":[{"name":"shoe_factory_manufacturer","displayName":"Shoe Factory Manufacturer","basicCategory":"manufacturer","count":39,"totalCount":39}]},{"name":"appliance_manufacturer","displayName":"Appliance Manufacturer","basicCategory":"manufacturer","count":9347,"totalCount":9347},{"name":"cosmetic_products_manufacturer","displayName":"Cosmetic Products Manufacturer","basicCategory":"manufacturer","count":204,"totalCount":204},{"name":"furniture_manufacturer","displayName":"Furniture Manufacturer","basicCategory":"manufacturer","count":12423,"totalCount":12423},{"name":"glass_manufacturer","displayName":"Glass Manufacturer","basicCategory":"manufacturer","count":6808,"totalCount":6808},{"name":"hardware_and_fastener_manufacturer","displayName":"Hardware and Fastener Manufacturer","basicCategory":"manufacturer","count":146,"totalCount":146},{"name":"jewelry_and_watches_manufacturer","displayName":"Jewelry and Watches Manufacturer","basicCategory":"manufacturer","count":39778,"totalCount":39778},{"name":"jewelry_manufacturer","displayName":"Jewelry Manufacturer","basicCategory":"manufacturer","count":75,"totalCount":75},{"name":"leather_products_manufacturer","displayName":"Leather Products Manufacturer","basicCategory":"manufacturer","count":592,"totalCount":592},{"name":"lighting_fixture_manufacturer","displayName":"Lighting Fixture Manufacturer","basicCategory":"manufacturer","count":249,"totalCount":249},{"name":"machinery_and_tool_manufacturer","displayName":"Machinery and Tool Manufacturer","basicCategory":"manufacturer","count":1579,"totalCount":218684,"children":[{"name":"industrial_equipment_manufacturer","displayName":"Industrial Equipment Manufacturer","basicCategory":"manufacturer","count":217105,"totalCount":217105}]},{"name":"mattress_manufacturing","displayName":"Mattress Manufacturing","basicCategory":"manufacturer","count":3048,"totalCount":3048},{"name":"metal_fabricator","displayName":"Metal Fabricator","basicCategory":"manufacturer","count":124092,"totalCount":126518,"children":[{"name":"iron_fabricator","displayName":"Iron Fabricator","basicCategory":"manufacturer","totalCount":0},{"name":"sheet_metal_fabricator","displayName":"Sheet Metal Fabricator","basicCategory":"manufacturer","count":322,"totalCount":322},{"name":"steel_fabricator","displayName":"Steel Fabricator","basicCategory":"manufacturer","count":2104,"totalCount":2104}]},{"name":"mill","displayName":"Mill","basicCategory":"manufacturer","count":226,"totalCount":5199,"children":[{"name":"cotton_mill","displayName":"Cotton Mill","basicCategory":"manufacturer","count":193,"totalCount":193},{"name":"flour_mill","displayName":"Flour Mill","basicCategory":"manufacturer","count":97,"totalCount":97},{"name":"paper_mill","displayName":"Paper Mill","basicCategory":"manufacturer","count":901,"totalCount":901},{"name":"rice_mill","displayName":"Rice Mill","basicCategory":"manufacturer","count":76,"totalCount":76},{"name":"sawmill","displayName":"Sawmill","basicCategory":"manufacturer","count":1108,"totalCount":1108},{"name":"textile_mill","displayName":"Textile Mill","basicCategory":"manufacturer","count":2573,"totalCount":2573},{"name":"weaving_mill","displayName":"Weaving Mill","basicCategory":"manufacturer","count":25,"totalCount":25}]},{"name":"plastic_manufacturer","displayName":"Plastic Manufacturer","basicCategory":"manufacturer","count":16962,"totalCount":16962},{"name":"rubber_and_plastics_manufacturer","displayName":"Rubber and Plastics Manufacturer","basicCategory":"manufacturer","count":2062,"totalCount":2062},{"name":"sporting_goods_manufacturer","displayName":"Sporting Goods Manufacturer","basicCategory":"manufacturer","count":340,"totalCount":340},{"name":"textile_manufacturer","displayName":"Textile Manufacturer","basicCategory":"manufacturer","count":34762,"totalCount":34762},{"name":"vehicle_manufacturer","displayName":"Vehicle Manufacturer","basicCategory":"manufacturer","count":170,"totalCount":16277,"children":[{"name":"aircraft_manufacturer","displayName":"Aircraft Manufacturer","basicCategory":"manufacturer","count":784,"totalCount":784},{"name":"auto_manufacturer","displayName":"Auto Manufacturer","basicCategory":"manufacturer","count":12742,"totalCount":12742},{"name":"boat_and_ship_manufacturer","displayName":"Boat and Ship Manufacturer","basicCategory":"manufacturer","count":196,"totalCount":196},{"name":"motorcycle_manufacturer","displayName":"Motorcycle Manufacturer","basicCategory":"manufacturer","count":2385,"totalCount":2385}]},{"name":"vehicle_parts_manufacturer","displayName":"Vehicle Parts Manufacturer","basicCategory":"manufacturer","totalCount":82,"children":[{"name":"tires_manufacturer","displayName":"Tires Manufacturer","basicCategory":"manufacturer","count":82,"totalCount":82}]}]},{"name":"supplier_or_distributor","displayName":"Supplier or Distributor","isBasic":true,"count":5376,"totalCount":291878,"children":[{"name":"abrasives_supplier","displayName":"Abrasives Supplier","basicCategory":"supplier_or_distributor","count":110,"totalCount":110},{"name":"aggregate_supplier","displayName":"Aggregate Supplier","basicCategory":"supplier_or_distributor","count":178,"totalCount":178},{"name":"aluminum_supplier","displayName":"Aluminum Supplier","basicCategory":"supplier_or_distributor","count":393,"totalCount":393},{"name":"awning_supplier","displayName":"Awning Supplier","basicCategory":"supplier_or_distributor","count":955,"totalCount":955},{"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":353,"totalCount":353},{"name":"beauty_product_supplier","displayName":"Beauty Product Supplier","basicCategory":"supplier_or_distributor","count":25937,"totalCount":25937},{"name":"beverage_supplier","displayName":"Beverage Supplier","basicCategory":"supplier_or_distributor","count":5209,"totalCount":5209},{"name":"box_lunch_supplier","displayName":"Box Lunch Supplier","basicCategory":"supplier_or_distributor","count":80,"totalCount":80},{"name":"business_office_supplies_and_stationery","displayName":"Business Office Supplies and Stationery","basicCategory":"supplier_or_distributor","count":4097,"totalCount":4097},{"name":"cement_supplier","displayName":"Cement Supplier","basicCategory":"supplier_or_distributor","count":1169,"totalCount":1169},{"name":"cleaning_products_supplier","displayName":"Cleaning Products Supplier","basicCategory":"supplier_or_distributor","count":1846,"totalCount":1846},{"name":"corporate_gift_supplier","displayName":"Corporate Gift Supplier","basicCategory":"supplier_or_distributor","count":92,"totalCount":92},{"name":"electronic_equipment_supplier","displayName":"Electronic Equipment Supplier","basicCategory":"supplier_or_distributor","count":24617,"totalCount":24617},{"name":"electronic_parts_supplier","displayName":"Electronic Parts Supplier","basicCategory":"supplier_or_distributor","count":4525,"totalCount":4525},{"name":"fastener_supplier","displayName":"Fastener Supplier","basicCategory":"supplier_or_distributor","count":762,"totalCount":762},{"name":"food_beverage_distributor","displayName":"Food Beverage Distributor","basicCategory":"supplier_or_distributor","count":50030,"totalCount":50030},{"name":"granite_supplier","displayName":"Granite Supplier","basicCategory":"supplier_or_distributor","count":15913,"totalCount":15913},{"name":"hotel_supply_service","displayName":"Hotel Supply Service","basicCategory":"supplier_or_distributor","count":2548,"totalCount":2548},{"name":"hvac_supplier","displayName":"HVAC Supplier","basicCategory":"supplier_or_distributor","count":10080,"totalCount":10080},{"name":"hydraulic_equipment_supplier","displayName":"Hydraulic Equipment Supplier","basicCategory":"supplier_or_distributor","count":3503,"totalCount":3503},{"name":"ice_supplier","displayName":"Ice Supplier","basicCategory":"supplier_or_distributor","count":891,"totalCount":891},{"name":"import_export_service","displayName":"Import Export Service","basicCategory":"supplier_or_distributor","count":3782,"totalCount":6211,"children":[{"name":"exporter","displayName":"Exporter","basicCategory":"supplier_or_distributor","count":947,"totalCount":1760,"children":[{"name":"food_and_beverage_exporter","displayName":"Food and Beverage Exporter","basicCategory":"supplier_or_distributor","count":813,"totalCount":813}]},{"name":"importer","displayName":"Importer","basicCategory":"supplier_or_distributor","count":669,"totalCount":669}]},{"name":"laboratory_equipment_supplier","displayName":"Laboratory Equipment Supplier","basicCategory":"supplier_or_distributor","count":776,"totalCount":776},{"name":"metal_supplier","displayName":"Metal Supplier","basicCategory":"supplier_or_distributor","count":49043,"totalCount":49043},{"name":"pipe_supplier","displayName":"Pipe Supplier","basicCategory":"supplier_or_distributor","count":664,"totalCount":664},{"name":"playground_equipment_supplier","displayName":"Playground Equipment Supplier","basicCategory":"supplier_or_distributor","count":6,"totalCount":6},{"name":"printing_equipment_supplier","displayName":"Printing Equipment Supplier","basicCategory":"supplier_or_distributor","count":1887,"totalCount":1887},{"name":"propane_supplier","displayName":"Propane Supplier","basicCategory":"supplier_or_distributor","count":47004,"totalCount":47004},{"name":"restaurant_equipment_and_supply","displayName":"Restaurant Equipment and Supply","basicCategory":"supplier_or_distributor","count":12496,"totalCount":12496},{"name":"retaining_wall_supplier","displayName":"Retaining Wall Supplier","basicCategory":"supplier_or_distributor","count":43,"totalCount":43},{"name":"sand_and_gravel_supplier","displayName":"Sand and Gravel Supplier","basicCategory":"supplier_or_distributor","count":859,"totalCount":859},{"name":"scale_supplier","displayName":"Scale Supplier","basicCategory":"supplier_or_distributor","count":214,"totalCount":214},{"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":100,"totalCount":100},{"name":"stone_supplier","displayName":"Stone Supplier","basicCategory":"supplier_or_distributor","count":972,"totalCount":972},{"name":"tableware_supplier","displayName":"Tableware Supplier","basicCategory":"supplier_or_distributor","count":261,"totalCount":261},{"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":4,"totalCount":4},{"name":"vending_machine_supplier","displayName":"Vending Machine Supplier","basicCategory":"supplier_or_distributor","count":6248,"totalCount":6248},{"name":"water_softening_equipment_supplier","displayName":"Water Softening Equipment Supplier","basicCategory":"supplier_or_distributor","count":567,"totalCount":567},{"name":"window_supplier","displayName":"Window Supplier","basicCategory":"supplier_or_distributor","count":5847,"totalCount":5847}]},{"name":"wholesaler","displayName":"Wholesaler","isBasic":true,"count":15756,"totalCount":62478,"children":[{"name":"computer_wholesaler","displayName":"Computer Wholesaler","basicCategory":"wholesaler","count":8605,"totalCount":8605},{"name":"electrical_wholesaler","displayName":"Electrical Wholesaler","basicCategory":"wholesaler","count":1012,"totalCount":1012},{"name":"fabric_wholesaler","displayName":"Fabric Wholesaler","basicCategory":"wholesaler","count":322,"totalCount":322},{"name":"fitness_equipment_wholesaler","displayName":"Fitness Equipment Wholesaler","basicCategory":"wholesaler","count":413,"totalCount":413},{"name":"fmcg_wholesaler","displayName":"Fmcg Wholesaler","basicCategory":"wholesaler","count":157,"totalCount":157},{"name":"footwear_wholesaler","displayName":"Footwear Wholesaler","basicCategory":"wholesaler","count":72,"totalCount":72},{"name":"furniture_wholesaler","displayName":"Furniture Wholesaler","basicCategory":"wholesaler","count":973,"totalCount":973},{"name":"greengrocer","displayName":"Greengrocer","basicCategory":"wholesaler","count":179,"totalCount":179},{"name":"industrial_spares_and_products_wholesaler","displayName":"Industrial Spares and Products Wholesaler","basicCategory":"wholesaler","count":319,"totalCount":319},{"name":"iron_and_steel_store","displayName":"Iron and Steel Store","basicCategory":"wholesaler","count":138,"totalCount":138},{"name":"lingerie_wholesaler","displayName":"Lingerie Wholesaler","basicCategory":"wholesaler","count":7,"totalCount":7},{"name":"meat_wholesaler","displayName":"Meat Wholesaler","basicCategory":"wholesaler","count":12567,"totalCount":12567},{"name":"optical_wholesaler","displayName":"Optical Wholesaler","basicCategory":"wholesaler","count":577,"totalCount":577},{"name":"pharmaceutical_products_wholesaler","displayName":"Pharmaceutical Products Wholesaler","basicCategory":"wholesaler","count":6503,"totalCount":6503},{"name":"produce_wholesaler","displayName":"Produce Wholesaler","basicCategory":"wholesaler","count":1197,"totalCount":1197},{"name":"restaurant_wholesale","displayName":"Restaurant Wholesale","basicCategory":"wholesaler","count":2740,"totalCount":2740},{"name":"seafood_wholesaler","displayName":"Seafood Wholesaler","basicCategory":"wholesaler","count":261,"totalCount":261},{"name":"spices_wholesaler","displayName":"Spices Wholesaler","basicCategory":"wholesaler","count":39,"totalCount":39},{"name":"tea_wholesaler","displayName":"Tea Wholesaler","basicCategory":"wholesaler","count":34,"totalCount":34},{"name":"threads_and_yarns_wholesaler","displayName":"Threads and Yarns Wholesaler","basicCategory":"wholesaler","count":280,"totalCount":280},{"name":"tools_wholesaler","displayName":"Tools Wholesaler","basicCategory":"wholesaler","count":376,"totalCount":376},{"name":"wholesale_florist","displayName":"Wholesale Florist","basicCategory":"wholesaler","count":388,"totalCount":388},{"name":"wholesale_grocer","displayName":"Wholesale Grocer","basicCategory":"wholesaler","count":8379,"totalCount":8379},{"name":"wine_wholesaler","displayName":"Wine Wholesaler","basicCategory":"wholesaler","count":1184,"totalCount":1184}]}]},{"name":"building_or_construction_service","displayName":"Building or Construction Service","isBasic":true,"count":343319,"totalCount":526757,"children":[{"name":"blacksmith","displayName":"Blacksmith","basicCategory":"building_or_construction_service","count":311,"totalCount":311},{"name":"blueprinter","displayName":"Blueprinter","basicCategory":"building_or_construction_service","count":97,"totalCount":97},{"name":"civil_engineer","displayName":"Civil Engineer","basicCategory":"building_or_construction_service","count":3673,"totalCount":3673},{"name":"construction_management","displayName":"Construction Management","basicCategory":"building_or_construction_service","count":1023,"totalCount":1023},{"name":"crane_service","displayName":"Crane Service","basicCategory":"building_or_construction_service","count":1722,"totalCount":1722},{"name":"engineering_service","displayName":"Engineering Service","basicCategory":"building_or_construction_service","count":161545,"totalCount":161545},{"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":2216,"totalCount":2216},{"name":"instrumentation_engineer","displayName":"Instrumentation Engineer","basicCategory":"building_or_construction_service","count":78,"totalCount":78},{"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":49,"totalCount":49},{"name":"marble_and_granite_professional","displayName":"Marble and Granite Professional","basicCategory":"building_or_construction_service","count":906,"totalCount":906},{"name":"masonry_contractor","displayName":"Masonry Contractor","basicCategory":"building_or_construction_service","count":4488,"totalCount":4488},{"name":"mechanical_engineer","displayName":"Mechanical Engineer","basicCategory":"building_or_construction_service","count":1739,"totalCount":1739},{"name":"metal_material_expert","displayName":"Metal Material Expert","basicCategory":"building_or_construction_service","count":711,"totalCount":711},{"name":"road_contractor","displayName":"Road Contractor","basicCategory":"building_or_construction_service","count":1111,"totalCount":1111},{"name":"stone_and_masonry","displayName":"Stone and Masonry","basicCategory":"building_or_construction_service","count":1096,"totalCount":1096},{"name":"welder","displayName":"Welder","basicCategory":"building_or_construction_service","count":2586,"totalCount":2586}]},{"name":"corporate_or_business_office","displayName":"Corporate or Business Office","isBasic":true,"count":164478,"totalCount":683806,"children":[{"name":"auto_company","displayName":"Auto Company","basicCategory":"corporate_or_business_office","count":51595,"totalCount":51595},{"name":"bags_luggage_company","displayName":"Bags Luggage Company","basicCategory":"corporate_or_business_office","count":3202,"totalCount":3202},{"name":"biotechnology_company","displayName":"Biotechnology Company","basicCategory":"corporate_or_business_office","count":9059,"totalCount":9059},{"name":"bottled_water_company","displayName":"Bottled Water Company","basicCategory":"corporate_or_business_office","count":18748,"totalCount":18748},{"name":"clothing_company","displayName":"Clothing Company","basicCategory":"corporate_or_business_office","count":19317,"totalCount":19317},{"name":"energy_company","displayName":"Energy Company","basicCategory":"corporate_or_business_office","count":31777,"totalCount":31777},{"name":"ferry_boat_company","displayName":"Ferry Boat Company","basicCategory":"corporate_or_business_office","count":8015,"totalCount":8015},{"name":"industrial_company","displayName":"Industrial Company","basicCategory":"corporate_or_business_office","count":79208,"totalCount":79208},{"name":"information_technology_company","displayName":"Information Technology Company","basicCategory":"corporate_or_business_office","count":133627,"totalCount":133627},{"name":"pharmaceutical_company","displayName":"Pharmaceutical Company","basicCategory":"corporate_or_business_office","count":20971,"totalCount":20971},{"name":"plastics_company","displayName":"Plastics Company","basicCategory":"corporate_or_business_office","count":21136,"totalCount":21136},{"name":"private_association","displayName":"Private Association","basicCategory":"corporate_or_business_office","count":14242,"totalCount":14242},{"name":"telecommunications_company","displayName":"Telecommunications Company","basicCategory":"corporate_or_business_office","count":77931,"totalCount":77931},{"name":"tobacco_company","displayName":"Tobacco Company","basicCategory":"corporate_or_business_office","count":656,"totalCount":656},{"name":"travel_company","displayName":"Travel Company","basicCategory":"corporate_or_business_office","count":29844,"totalCount":29844}]},{"name":"design_service","displayName":"Design Service","isBasic":true,"totalCount":317708,"children":[{"name":"architect","displayName":"Architect","basicCategory":"design_service","count":32082,"totalCount":32082},{"name":"architectural_designer","displayName":"Architectural Designer","basicCategory":"design_service","count":100199,"totalCount":100199},{"name":"graphic_designer","displayName":"Graphic Designer","basicCategory":"design_service","count":68540,"totalCount":68540},{"name":"product_design","displayName":"Product Design","basicCategory":"design_service","count":5268,"totalCount":5268},{"name":"sign_making","displayName":"Sign Making","basicCategory":"design_service","count":38412,"totalCount":38412},{"name":"web_designer","displayName":"Web Designer","basicCategory":"design_service","count":73207,"totalCount":73207}]},{"name":"environmental_or_ecological_service","displayName":"Environmental or Ecological Service","isBasic":true,"count":11061,"totalCount":57657,"children":[{"name":"environmental_abatement_service","displayName":"Environmental Abatement Service","basicCategory":"environmental_or_ecological_service","count":247,"totalCount":247},{"name":"environmental_conservation_organization","displayName":"Environmental Conservation Organization","basicCategory":"environmental_or_ecological_service","count":29506,"totalCount":29506},{"name":"environmental_testing_service","displayName":"Environmental Testing Service","basicCategory":"environmental_or_ecological_service","count":2943,"totalCount":2943},{"name":"forestry_service","displayName":"Forestry Service","basicCategory":"environmental_or_ecological_service","count":13645,"totalCount":13645},{"name":"wildlife_control","displayName":"Wildlife Control","basicCategory":"environmental_or_ecological_service","count":255,"totalCount":255}]},{"name":"event_or_party_service","displayName":"Event or Party Service","isBasic":true,"count":1,"totalCount":960019,"children":[{"name":"audiovisual_equipment_rental","displayName":"Audiovisual Equipment Rental","basicCategory":"event_or_party_service","count":5510,"totalCount":5510},{"name":"balloon_service","displayName":"Balloon Service","basicCategory":"event_or_party_service","count":462,"totalCount":462},{"name":"bartender","displayName":"Bartender","basicCategory":"event_or_party_service","count":3122,"totalCount":3122},{"name":"boat_charter","displayName":"Boat Charter","basicCategory":"event_or_party_service","count":712,"totalCount":712},{"name":"bounce_house_rental","displayName":"Bounce House Rental","basicCategory":"event_or_party_service","count":432,"totalCount":432},{"name":"caricature","displayName":"Caricature","basicCategory":"event_or_party_service","count":19,"totalCount":19},{"name":"caterer","displayName":"Caterer","basicCategory":"event_or_party_service","count":88970,"totalCount":88970},{"name":"clown","displayName":"Clown","basicCategory":"event_or_party_service","count":38,"totalCount":38},{"name":"dj_service","displayName":"DJ Service","basicCategory":"event_or_party_service","count":5727,"totalCount":5727},{"name":"event_technology_service","displayName":"Event Technology Service","basicCategory":"event_or_party_service","count":10345,"totalCount":10345},{"name":"face_painting","displayName":"Face Painting","basicCategory":"event_or_party_service","count":47,"totalCount":47},{"name":"floral_designer","displayName":"Floral Designer","basicCategory":"event_or_party_service","count":111,"totalCount":111},{"name":"game_truck_rental","displayName":"Game Truck Rental","basicCategory":"event_or_party_service","count":11,"totalCount":11},{"name":"golf_cart_rental","displayName":"Golf Cart Rental","basicCategory":"event_or_party_service","count":66,"totalCount":66},{"name":"henna_artist","displayName":"Henna Artist","basicCategory":"event_or_party_service","count":57,"totalCount":57},{"name":"karaoke_rental","displayName":"Karaoke Rental","basicCategory":"event_or_party_service","count":32,"totalCount":32},{"name":"kids_recreation_and_party","displayName":"Kids Recreation and Party","basicCategory":"event_or_party_service","count":14759,"totalCount":14759},{"name":"magician","displayName":"Magician","basicCategory":"event_or_party_service","count":883,"totalCount":883},{"name":"mohel","displayName":"Mohel","basicCategory":"event_or_party_service","count":5,"totalCount":5},{"name":"musician","displayName":"Musician","basicCategory":"event_or_party_service","count":1465,"totalCount":1465},{"name":"officiating_service","displayName":"Officiating Service","basicCategory":"event_or_party_service","count":248,"totalCount":248},{"name":"party_and_event_planning","displayName":"Party and Event Planning","basicCategory":"event_or_party_service","count":771950,"totalCount":771950},{"name":"party_bike_rental","displayName":"Party Bike Rental","basicCategory":"event_or_party_service","count":3,"totalCount":3},{"name":"party_bus_rental","displayName":"Party Bus Rental","basicCategory":"event_or_party_service","count":261,"totalCount":261},{"name":"party_character","displayName":"Party Character","basicCategory":"event_or_party_service","count":20,"totalCount":20},{"name":"party_equipment_rental","displayName":"Party Equipment Rental","basicCategory":"event_or_party_service","count":3413,"totalCount":3413},{"name":"personal_chef","displayName":"Personal Chef","basicCategory":"event_or_party_service","count":1307,"totalCount":1307},{"name":"photo_booth_rental","displayName":"Photo Booth Rental","basicCategory":"event_or_party_service","count":4391,"totalCount":4391},{"name":"silent_disco","displayName":"Silent Disco","basicCategory":"event_or_party_service","count":3,"totalCount":3},{"name":"sommelier_service","displayName":"Sommelier Service","basicCategory":"event_or_party_service","count":1,"totalCount":1},{"name":"team_building_activity","displayName":"Team Building Activity","basicCategory":"event_or_party_service","count":136,"totalCount":136},{"name":"trivia_host","displayName":"Trivia Host","basicCategory":"event_or_party_service","count":3,"totalCount":3},{"name":"valet_service","displayName":"Valet Service","basicCategory":"event_or_party_service","count":434,"totalCount":434},{"name":"videographer","displayName":"Videographer","basicCategory":"event_or_party_service","count":4466,"totalCount":4466},{"name":"wedding_chapel","displayName":"Wedding Chapel","basicCategory":"event_or_party_service","count":854,"totalCount":854},{"name":"wedding_planning","displayName":"Wedding Planning","basicCategory":"event_or_party_service","count":39755,"totalCount":39755}]},{"name":"family_service","displayName":"Family Service","isBasic":true,"totalCount":237858,"children":[{"name":"adoption_service","displayName":"Adoption Service","basicCategory":"family_service","count":1137,"totalCount":1137},{"name":"child_care_and_day_care","displayName":"Child Care and Day Care","basicCategory":"family_service","count":23193,"totalCount":120026,"children":[{"name":"day_care_preschool","displayName":"Day Care Preschool","basicCategory":"family_service","count":96833,"totalCount":96833}]},{"name":"elder_care_planning","displayName":"Elder Care Planning","basicCategory":"family_service","count":30,"totalCount":30},{"name":"family_service_center","displayName":"Family Service Center","basicCategory":"family_service","count":450,"totalCount":450},{"name":"funeral_service","displayName":"Funeral Service","basicCategory":"family_service","count":106769,"totalCount":112345,"children":[{"name":"cremation_service","displayName":"Cremation Service","basicCategory":"family_service","count":5363,"totalCount":5363},{"name":"mortuary_service","displayName":"Mortuary Service","basicCategory":"family_service","count":213,"totalCount":213}]},{"name":"genealogist","displayName":"Genealogist","basicCategory":"family_service","count":757,"totalCount":757},{"name":"mobility_equipment_service","displayName":"Mobility Equipment Service","basicCategory":"family_service","count":2089,"totalCount":2089},{"name":"nanny_service","displayName":"Nanny Service","basicCategory":"family_service","count":1024,"totalCount":1024}]},{"name":"financial_service","displayName":"Financial Service","isBasic":true,"count":313147,"totalCount":2417141,"children":[{"name":"accountant","displayName":"Accountant","basicCategory":"financial_service","count":176951,"totalCount":176951},{"name":"appraisal_service","displayName":"Appraisal Service","basicCategory":"financial_service","count":23411,"totalCount":23411},{"name":"atm","displayName":"ATM","isBasic":true,"count":342719,"totalCount":342719},{"name":"bank_or_credit_union","displayName":"Bank or Credit Union","isBasic":true,"count":358594,"totalCount":662583,"children":[{"name":"bank","displayName":"Bank","basicCategory":"bank_or_credit_union","count":234566,"totalCount":234566},{"name":"credit_union","displayName":"Credit Union","basicCategory":"bank_or_credit_union","count":69423,"totalCount":69423}]},{"name":"broker","displayName":"Broker","basicCategory":"financial_service","count":8156,"totalCount":21277,"children":[{"name":"business_broker","displayName":"Business Broker","basicCategory":"financial_service","count":2391,"totalCount":2391},{"name":"stock_and_bond_broker","displayName":"Stock and Bond Broker","basicCategory":"financial_service","count":10730,"totalCount":10730}]},{"name":"business_banking_service","displayName":"Business Banking Service","basicCategory":"financial_service","count":345,"totalCount":345},{"name":"business_financing","displayName":"Business Financing","basicCategory":"financial_service","count":282,"totalCount":282},{"name":"check_cashing_payday_loans","displayName":"Check Cashing Payday Loans","basicCategory":"financial_service","count":11241,"totalCount":11241},{"name":"coin_dealer","displayName":"Coin Dealer","basicCategory":"financial_service","count":191,"totalCount":191},{"name":"collection_agency","displayName":"Collection Agency","basicCategory":"financial_service","count":3868,"totalCount":3868},{"name":"credit_and_debt_counseling","displayName":"Credit and Debt Counseling","basicCategory":"financial_service","count":7867,"totalCount":7867},{"name":"currency_exchange","displayName":"Currency Exchange","basicCategory":"financial_service","count":17552,"totalCount":17552},{"name":"customs_broker","displayName":"Customs Broker","basicCategory":"financial_service","count":413,"totalCount":413},{"name":"debt_relief_service","displayName":"Debt Relief Service","basicCategory":"financial_service","count":786,"totalCount":786},{"name":"financial_advising","displayName":"Financial Advising","basicCategory":"financial_service","count":65596,"totalCount":65596},{"name":"gold_buyer","displayName":"Gold Buyer","basicCategory":"financial_service","count":1893,"totalCount":1893},{"name":"holding_company","displayName":"Holding Company","basicCategory":"financial_service","count":1015,"totalCount":1015},{"name":"installment_loans","displayName":"Installment Loans","basicCategory":"financial_service","count":35157,"totalCount":60121,"children":[{"name":"auto_loan_provider","displayName":"Auto Loan Provider","basicCategory":"financial_service","count":1301,"totalCount":1301},{"name":"mortgage_lender","displayName":"Mortgage Lender","basicCategory":"financial_service","count":23663,"totalCount":23663}]},{"name":"insurance_agency","displayName":"Insurance Agency","basicCategory":"financial_service","count":303702,"totalCount":353175,"children":[{"name":"auto_insurance","displayName":"Auto Insurance","basicCategory":"financial_service","count":37594,"totalCount":37594},{"name":"farm_insurance","displayName":"Farm Insurance","basicCategory":"financial_service","count":34,"totalCount":34},{"name":"fidelity_and_surety_bonds","displayName":"Fidelity and Surety Bonds","basicCategory":"financial_service","count":34,"totalCount":34},{"name":"home_and_rental_insurance","displayName":"Home and Rental Insurance","basicCategory":"financial_service","count":577,"totalCount":577},{"name":"life_insurance","displayName":"Life Insurance","basicCategory":"financial_service","count":11234,"totalCount":11234}]},{"name":"investing","displayName":"Investing","basicCategory":"financial_service","count":24554,"totalCount":24554},{"name":"investment_management_company","displayName":"Investment Management Company","basicCategory":"financial_service","count":103,"totalCount":103},{"name":"money_transfer_service","displayName":"Money Transfer Service","basicCategory":"financial_service","count":151147,"totalCount":151147},{"name":"mortgage_broker","displayName":"Mortgage Broker","basicCategory":"financial_service","count":55452,"totalCount":55452},{"name":"private_equity_firm","displayName":"Private Equity Firm","basicCategory":"financial_service","count":299,"totalCount":299},{"name":"public_adjuster","displayName":"Public Adjuster","basicCategory":"financial_service","count":254,"totalCount":254},{"name":"real_estate_investment","displayName":"Real Estate Investment","basicCategory":"financial_service","count":11519,"totalCount":11519},{"name":"tax_service","displayName":"Tax Service","basicCategory":"financial_service","count":37965,"totalCount":37965},{"name":"trusts","displayName":"Trusts","basicCategory":"financial_service","count":71415,"totalCount":71415}]},{"name":"home_service","displayName":"Home Service","isBasic":true,"count":151878,"totalCount":2306963,"children":[{"name":"air_duct_cleaning_service","displayName":"Air Duct Cleaning Service","basicCategory":"home_service","count":1307,"totalCount":1307},{"name":"antenna_service","displayName":"Antenna Service","basicCategory":"home_service","count":125,"totalCount":125},{"name":"appliance_repair_service","displayName":"Appliance Repair Service","basicCategory":"home_service","count":44541,"totalCount":44541},{"name":"artificial_turf","displayName":"Artificial Turf","basicCategory":"home_service","count":204,"totalCount":204},{"name":"bathroom_remodeling","displayName":"Bathroom Remodeling","basicCategory":"home_service","count":6249,"totalCount":6249},{"name":"bathtub_and_sink_repair","displayName":"Bathtub and Sink Repair","basicCategory":"home_service","count":330,"totalCount":330},{"name":"cabinet_sales_service","displayName":"Cabinet Sales Service","basicCategory":"home_service","count":7706,"totalCount":7706},{"name":"carpenter","displayName":"Carpenter","basicCategory":"home_service","count":86482,"totalCount":86482},{"name":"carpet_cleaning","displayName":"Carpet Cleaning","basicCategory":"home_service","count":18689,"totalCount":18689},{"name":"carpet_dyeing","displayName":"Carpet Dyeing","basicCategory":"home_service","totalCount":0},{"name":"carpet_installation","displayName":"Carpet Installation","basicCategory":"home_service","count":794,"totalCount":794},{"name":"ceiling_and_roofing_repair_and_service","displayName":"Ceiling and Roofing Repair and Service","basicCategory":"home_service","count":187,"totalCount":90078,"children":[{"name":"ceiling_service","displayName":"Ceiling Service","basicCategory":"home_service","count":1142,"totalCount":1142},{"name":"roofing","displayName":"Roofing","basicCategory":"home_service","count":88749,"totalCount":88749}]},{"name":"childproofing","displayName":"Childproofing","basicCategory":"home_service","count":21,"totalCount":21},{"name":"chimney_service","displayName":"Chimney Service","basicCategory":"home_service","count":221,"totalCount":7295,"children":[{"name":"chimney_sweep","displayName":"Chimney Sweep","basicCategory":"home_service","count":7074,"totalCount":7074}]},{"name":"clock_repair_service","displayName":"Clock Repair Service","basicCategory":"home_service","count":179,"totalCount":179},{"name":"closet_remodeling","displayName":"Closet Remodeling","basicCategory":"home_service","count":39,"totalCount":39},{"name":"community_book_box","displayName":"Community Book Box","basicCategory":"home_service","totalCount":0},{"name":"contractor","displayName":"Contractor","basicCategory":"home_service","count":328751,"totalCount":373165,"children":[{"name":"altering_and_remodeling_contractor","displayName":"Altering and Remodeling Contractor","basicCategory":"home_service","count":4819,"totalCount":4819},{"name":"building_contractor","displayName":"Building Contractor","basicCategory":"home_service","count":10895,"totalCount":10895},{"name":"flooring_contractor","displayName":"Flooring Contractor","basicCategory":"home_service","count":17930,"totalCount":17930},{"name":"paving_contractor","displayName":"Paving Contractor","basicCategory":"home_service","count":10770,"totalCount":10770}]},{"name":"countertop_installation","displayName":"Countertop Installation","basicCategory":"home_service","count":27141,"totalCount":27141},{"name":"damage_restoration","displayName":"Damage Restoration","basicCategory":"home_service","count":12798,"totalCount":20627,"children":[{"name":"fire_and_water_damage_restoration","displayName":"Fire and Water Damage Restoration","basicCategory":"home_service","count":7829,"totalCount":7829}]},{"name":"deck_and_railing_sales_service","displayName":"Deck and Railing Sales Service","basicCategory":"home_service","count":1764,"totalCount":1764},{"name":"demolition_service","displayName":"Demolition Service","basicCategory":"home_service","count":2240,"totalCount":2240},{"name":"donation_center","displayName":"Donation Center","basicCategory":"home_service","count":396,"totalCount":396},{"name":"door_sales_service","displayName":"Door Sales Service","basicCategory":"home_service","count":3508,"totalCount":3508},{"name":"drywall_service","displayName":"Drywall Service","basicCategory":"home_service","count":4120,"totalCount":4120},{"name":"electrician","displayName":"Electrician","basicCategory":"home_service","count":120027,"totalCount":120027},{"name":"excavation_service","displayName":"Excavation Service","basicCategory":"home_service","count":17406,"totalCount":17406},{"name":"exterior_design","displayName":"Exterior Design","basicCategory":"home_service","count":102,"totalCount":102},{"name":"fence_and_gate_sales_service","displayName":"Fence and Gate Sales Service","basicCategory":"home_service","count":18025,"totalCount":18025},{"name":"feng_shui","displayName":"Feng Shui","basicCategory":"home_service","count":49,"totalCount":49},{"name":"fire_protection_service","displayName":"Fire Protection Service","basicCategory":"home_service","count":25857,"totalCount":25857},{"name":"fireplace_service","displayName":"Fireplace Service","basicCategory":"home_service","count":7937,"totalCount":7937},{"name":"firewood","displayName":"Firewood","basicCategory":"home_service","count":456,"totalCount":456},{"name":"foundation_repair","displayName":"Foundation Repair","basicCategory":"home_service","count":615,"totalCount":615},{"name":"furniture_assembly","displayName":"Furniture Assembly","basicCategory":"home_service","count":31407,"totalCount":31407},{"name":"furniture_rental_service","displayName":"Furniture Rental Service","basicCategory":"home_service","count":600,"totalCount":600},{"name":"furniture_repair","displayName":"Furniture Repair","basicCategory":"home_service","count":703,"totalCount":703},{"name":"furniture_reupholstery","displayName":"Furniture Reupholstery","basicCategory":"home_service","count":1970,"totalCount":1970},{"name":"garage_door_service","displayName":"Garage Door Service","basicCategory":"home_service","count":20276,"totalCount":20276},{"name":"glass_and_mirror_sales_service","displayName":"Glass and Mirror Sales Service","basicCategory":"home_service","count":38290,"totalCount":38290},{"name":"grout_service","displayName":"Grout Service","basicCategory":"home_service","count":288,"totalCount":288},{"name":"gutter_service","displayName":"Gutter Service","basicCategory":"home_service","count":7060,"totalCount":7060},{"name":"handyman","displayName":"Handyman","basicCategory":"home_service","count":14458,"totalCount":14458},{"name":"holiday_decorating_service","displayName":"Holiday Decorating Service","basicCategory":"home_service","count":33,"totalCount":33},{"name":"home_automation","displayName":"Home Automation","basicCategory":"home_service","count":1097,"totalCount":1097},{"name":"home_cleaning","displayName":"Home Cleaning","basicCategory":"home_service","count":123054,"totalCount":123054},{"name":"home_energy_auditor","displayName":"Home Energy Auditor","basicCategory":"home_service","count":120,"totalCount":120},{"name":"home_inspector","displayName":"Home Inspector","basicCategory":"home_service","count":11733,"totalCount":11733},{"name":"home_network_installation","displayName":"Home Network Installation","basicCategory":"home_service","count":113,"totalCount":113},{"name":"home_security","displayName":"Home Security","basicCategory":"home_service","count":29716,"totalCount":29716},{"name":"home_window_tinting","displayName":"Home Window Tinting","basicCategory":"home_service","count":617,"totalCount":617},{"name":"house_sitting","displayName":"House Sitting","basicCategory":"home_service","count":512,"totalCount":512},{"name":"hvac_service","displayName":"HVAC Service","basicCategory":"home_service","count":132266,"totalCount":132266},{"name":"hydro_jetting","displayName":"Hydro Jetting","basicCategory":"home_service","count":35,"totalCount":35},{"name":"indoor_landscaping","displayName":"Indoor Landscaping","basicCategory":"home_service","count":117,"totalCount":117},{"name":"insulation_installation","displayName":"Insulation Installation","basicCategory":"home_service","count":2606,"totalCount":2606},{"name":"interior_design","displayName":"Interior Design","basicCategory":"home_service","count":129816,"totalCount":129816},{"name":"irrigation_service","displayName":"Irrigation Service","basicCategory":"home_service","count":2200,"totalCount":2200},{"name":"junk_removal_and_hauling","displayName":"Junk Removal and Hauling","basicCategory":"home_service","count":3031,"totalCount":3031},{"name":"key_and_locksmith","displayName":"Key and Locksmith","basicCategory":"home_service","count":71344,"totalCount":71344},{"name":"kitchen_remodeling","displayName":"Kitchen Remodeling","basicCategory":"home_service","count":5002,"totalCount":5002},{"name":"knife_sharpening","displayName":"Knife Sharpening","basicCategory":"home_service","count":293,"totalCount":293},{"name":"landscaping","displayName":"Landscaping","basicCategory":"home_service","count":85973,"totalCount":167050,"children":[{"name":"gardener","displayName":"Gardener","basicCategory":"home_service","count":40551,"totalCount":40551},{"name":"landscape_architect","displayName":"Landscape Architect","basicCategory":"home_service","count":8996,"totalCount":8996},{"name":"lawn_service","displayName":"Lawn Service","basicCategory":"home_service","count":5355,"totalCount":5355},{"name":"tree_service","displayName":"Tree Service","basicCategory":"home_service","count":26175,"totalCount":26175}]},{"name":"lawn_mower_repair_service","displayName":"Lawn Mower Repair Service","basicCategory":"home_service","count":136,"totalCount":136},{"name":"lighting_fixtures_and_equipment","displayName":"Lighting Fixtures and Equipment","basicCategory":"home_service","count":419,"totalCount":419},{"name":"masonry_concrete","displayName":"Masonry Concrete","basicCategory":"home_service","count":26076,"totalCount":26076},{"name":"misting_system_service","displayName":"Misting System Service","basicCategory":"home_service","count":4,"totalCount":4},{"name":"mobile_home_repair","displayName":"Mobile Home Repair","basicCategory":"home_service","count":75,"totalCount":75},{"name":"mover","displayName":"Mover","basicCategory":"home_service","count":14144,"totalCount":14144},{"name":"packing_service","displayName":"Packing Service","basicCategory":"home_service","count":2332,"totalCount":2332},{"name":"painting","displayName":"Painting","basicCategory":"home_service","count":58586,"totalCount":58586},{"name":"patio_covers","displayName":"Patio Covers","basicCategory":"home_service","count":4993,"totalCount":4993},{"name":"personal_assistant","displayName":"Personal Assistant","basicCategory":"home_service","count":834,"totalCount":834},{"name":"pest_control_service","displayName":"Pest Control Service","basicCategory":"home_service","count":42345,"totalCount":42345},{"name":"plasterer","displayName":"Plasterer","basicCategory":"home_service","count":575,"totalCount":575},{"name":"plumbing","displayName":"Plumbing","basicCategory":"home_service","count":97862,"totalCount":97958,"children":[{"name":"backflow_service","displayName":"Backflow Service","basicCategory":"home_service","count":96,"totalCount":96}]},{"name":"pool_and_hot_tub_service","displayName":"Pool and Hot Tub Service","basicCategory":"home_service","count":3364,"totalCount":3364},{"name":"pool_cleaning","displayName":"Pool Cleaning","basicCategory":"home_service","count":26936,"totalCount":26936},{"name":"pressure_washing","displayName":"Pressure Washing","basicCategory":"home_service","count":2766,"totalCount":2766},{"name":"recycling_center","displayName":"Recycling Center","basicCategory":"home_service","count":28911,"totalCount":28911},{"name":"refinishing_service","displayName":"Refinishing Service","basicCategory":"home_service","count":523,"totalCount":523},{"name":"security_systems","displayName":"Security Systems","basicCategory":"home_service","count":7332,"totalCount":7332},{"name":"sewing_and_alterations","displayName":"Sewing and Alterations","basicCategory":"home_service","count":49857,"totalCount":53570,"children":[{"name":"tailor","displayName":"Tailor","basicCategory":"home_service","count":3713,"totalCount":3713}]},{"name":"shades_and_blinds","displayName":"Shades and Blinds","basicCategory":"home_service","count":2507,"totalCount":2507},{"name":"shutters","displayName":"Shutters","basicCategory":"home_service","count":221,"totalCount":221},{"name":"siding","displayName":"Siding","basicCategory":"home_service","count":946,"totalCount":946},{"name":"snow_removal_service","displayName":"Snow Removal Service","basicCategory":"home_service","count":330,"totalCount":330},{"name":"solar_installation","displayName":"Solar Installation","basicCategory":"home_service","count":20853,"totalCount":20853},{"name":"solar_panel_cleaning","displayName":"Solar Panel Cleaning","basicCategory":"home_service","count":17,"totalCount":17},{"name":"structural_engineer","displayName":"Structural Engineer","basicCategory":"home_service","count":5640,"totalCount":5640},{"name":"stucco_service","displayName":"Stucco Service","basicCategory":"home_service","count":465,"totalCount":465},{"name":"television_service_provider","displayName":"Television Service Provider","basicCategory":"home_service","count":11322,"totalCount":11322},{"name":"tiling","displayName":"Tiling","basicCategory":"home_service","count":8412,"totalCount":8412},{"name":"tv_mounting","displayName":"TV Mounting","basicCategory":"home_service","count":2446,"totalCount":2446},{"name":"wallpaper_installer","displayName":"Wallpaper Installer","basicCategory":"home_service","count":32,"totalCount":32},{"name":"washer_and_dryer_repair_service","displayName":"Washer and Dryer Repair Service","basicCategory":"home_service","count":96,"totalCount":96},{"name":"water_delivery","displayName":"Water Delivery","basicCategory":"home_service","count":61,"totalCount":61},{"name":"water_heater_installation_repair","displayName":"Water Heater Installation Repair","basicCategory":"home_service","count":1753,"totalCount":1753},{"name":"water_purification_service","displayName":"Water Purification Service","basicCategory":"home_service","count":1207,"totalCount":1207},{"name":"waterproofing","displayName":"Waterproofing","basicCategory":"home_service","count":1288,"totalCount":1288},{"name":"well_drilling","displayName":"Well Drilling","basicCategory":"home_service","count":7766,"totalCount":7766},{"name":"window_washing","displayName":"Window Washing","basicCategory":"home_service","count":2097,"totalCount":2097},{"name":"windows_installation","displayName":"Windows Installation","basicCategory":"home_service","count":32290,"totalCount":32466,"children":[{"name":"skylight_installation","displayName":"Skylight Installation","basicCategory":"home_service","count":176,"totalCount":176}]}]},{"name":"housing_or_property_service","displayName":"Housing or Property Service","isBasic":true,"totalCount":229378,"children":[{"name":"apartment","displayName":"Apartment","isBasic":true,"count":28150,"totalCount":28150},{"name":"condominium","displayName":"Condominium","isBasic":true,"count":13157,"totalCount":13157},{"name":"halfway_house","displayName":"Halfway House","basicCategory":"housing_or_property_service","count":1902,"totalCount":1902},{"name":"low_income_housing","displayName":"Low Income Housing","basicCategory":"housing_or_property_service","count":125,"totalCount":125},{"name":"mobile_home_park","displayName":"Mobile Home Park","basicCategory":"housing_or_property_service","count":12068,"totalCount":12068},{"name":"senior_living_facility","displayName":"Senior Living Facility","isBasic":true,"totalCount":173002,"children":[{"name":"assisted_living_facility","displayName":"Assisted Living Facility","basicCategory":"senior_living_facility","count":27634,"totalCount":27634},{"name":"memory_care_facility","displayName":"Memory Care Facility","basicCategory":"senior_living_facility","count":15,"totalCount":15},{"name":"retirement_home","displayName":"Retirement Home","basicCategory":"senior_living_facility","count":145353,"totalCount":145353}]},{"name":"university_housing","displayName":"University Housing","basicCategory":"housing_or_property_service","count":974,"totalCount":974}]},{"name":"industrial_facility_or_service","displayName":"Industrial Facility or Service","isBasic":true,"totalCount":9404,"children":[{"name":"hazardous_waste_disposal","displayName":"Hazardous Waste Disposal","basicCategory":"industrial_facility_or_service","count":167,"totalCount":167},{"name":"powder_coating_service","displayName":"Powder Coating Service","basicCategory":"industrial_facility_or_service","count":6021,"totalCount":6021},{"name":"sandblasting_service","displayName":"Sandblasting Service","basicCategory":"industrial_facility_or_service","count":3216,"totalCount":3216}]},{"name":"laundry_service","displayName":"Laundry Service","isBasic":true,"count":16277,"totalCount":170140,"children":[{"name":"dry_cleaning","displayName":"Dry Cleaning","basicCategory":"laundry_service","count":50734,"totalCount":50734},{"name":"laundromat","displayName":"Laundromat","basicCategory":"laundry_service","count":103129,"totalCount":103129}]},{"name":"legal_service","displayName":"Legal Service","isBasic":true,"count":67183,"totalCount":560384,"children":[{"name":"attorney_or_law_firm","displayName":"Attorney or Law Firm","isBasic":true,"count":316077,"totalCount":441683,"children":[{"name":"appellate_practice_lawyer","displayName":"Appellate Practice Lawyer","basicCategory":"attorney_or_law_firm","count":2885,"totalCount":2885},{"name":"bankruptcy_law","displayName":"Bankruptcy Law","basicCategory":"attorney_or_law_firm","count":7873,"totalCount":7873},{"name":"business_law","displayName":"Business Law","basicCategory":"attorney_or_law_firm","count":3250,"totalCount":3250},{"name":"civil_rights_lawyer","displayName":"Civil Rights Lawyer","basicCategory":"attorney_or_law_firm","count":231,"totalCount":231},{"name":"contract_law","displayName":"Contract Law","basicCategory":"attorney_or_law_firm","count":349,"totalCount":349},{"name":"criminal_defense_law","displayName":"Criminal Defense Law","basicCategory":"attorney_or_law_firm","count":19239,"totalCount":19239},{"name":"disability_law","displayName":"Disability Law","basicCategory":"attorney_or_law_firm","count":2121,"totalCount":2121},{"name":"divorce_and_family_law","displayName":"Divorce and Family Law","basicCategory":"attorney_or_law_firm","count":22793,"totalCount":22793},{"name":"dui_law","displayName":"DUI Law","basicCategory":"attorney_or_law_firm","count":622,"totalCount":622},{"name":"employment_law","displayName":"Employment Law","basicCategory":"attorney_or_law_firm","count":8928,"totalCount":8928},{"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":3111,"totalCount":3111},{"name":"general_litigation","displayName":"General Litigation","basicCategory":"attorney_or_law_firm","count":1292,"totalCount":1292},{"name":"immigration_law","displayName":"Immigration Law","basicCategory":"attorney_or_law_firm","count":13742,"totalCount":13742},{"name":"ip_and_internet_law","displayName":"Ip and Internet Law","basicCategory":"attorney_or_law_firm","count":2227,"totalCount":2227},{"name":"medical_law","displayName":"Medical Law","basicCategory":"attorney_or_law_firm","count":1326,"totalCount":1326},{"name":"paralegal_service","displayName":"Paralegal Service","basicCategory":"attorney_or_law_firm","count":551,"totalCount":551},{"name":"personal_injury_law","displayName":"Personal Injury Law","basicCategory":"attorney_or_law_firm","count":21505,"totalCount":21505},{"name":"real_estate_law","displayName":"Real Estate Law","basicCategory":"attorney_or_law_firm","count":3697,"totalCount":3697},{"name":"social_security_law","displayName":"Social Security Law","basicCategory":"attorney_or_law_firm","count":641,"totalCount":641},{"name":"tax_law","displayName":"Tax Law","basicCategory":"attorney_or_law_firm","count":2818,"totalCount":2818},{"name":"traffic_ticketing_law","displayName":"Traffic Ticketing Law","basicCategory":"attorney_or_law_firm","count":32,"totalCount":32},{"name":"wills_trusts_and_probate","displayName":"Wills Trusts and Probate","basicCategory":"attorney_or_law_firm","count":5986,"totalCount":5986},{"name":"workers_compensation_law","displayName":"Workers Compensation Law","basicCategory":"attorney_or_law_firm","count":144,"totalCount":144}]},{"name":"bail_bonds_service","displayName":"Bail Bonds Service","basicCategory":"legal_service","count":6067,"totalCount":6067},{"name":"court_reporter","displayName":"Court Reporter","basicCategory":"legal_service","count":522,"totalCount":522},{"name":"mediator","displayName":"Mediator","basicCategory":"legal_service","count":728,"totalCount":728},{"name":"notary_public","displayName":"Notary Public","basicCategory":"legal_service","count":31228,"totalCount":31228},{"name":"patent_law","displayName":"Patent Law","basicCategory":"legal_service","count":963,"totalCount":963},{"name":"private_investigation","displayName":"Private Investigation","basicCategory":"legal_service","count":7257,"totalCount":7257},{"name":"process_server","displayName":"Process Server","basicCategory":"legal_service","count":4678,"totalCount":4678},{"name":"tenant_and_eviction_law","displayName":"Tenant and Eviction Law","basicCategory":"legal_service","count":75,"totalCount":75}]},{"name":"media_service","displayName":"Media Service","isBasic":true,"count":13702,"totalCount":434968,"children":[{"name":"art_restoration_service","displayName":"Art Restoration Service","basicCategory":"media_service","count":3868,"totalCount":3868},{"name":"bookbinding","displayName":"Bookbinding","basicCategory":"media_service","count":1353,"totalCount":1353},{"name":"calligraphy","displayName":"Calligraphy","basicCategory":"media_service","count":27,"totalCount":27},{"name":"commissioned_artist","displayName":"Commissioned Artist","basicCategory":"media_service","count":593,"totalCount":593},{"name":"corporate_entertainment_service","displayName":"Corporate Entertainment Service","basicCategory":"media_service","count":241,"totalCount":241},{"name":"digitizing_service","displayName":"Digitizing Service","basicCategory":"media_service","count":592,"totalCount":592},{"name":"engraving","displayName":"Engraving","basicCategory":"media_service","count":461,"totalCount":461},{"name":"media_critic","displayName":"Media Critic","basicCategory":"media_service","count":65,"totalCount":106,"children":[{"name":"movie_critic","displayName":"Movie Critic","basicCategory":"media_service","count":9,"totalCount":9},{"name":"music_critic","displayName":"Music Critic","basicCategory":"media_service","count":10,"totalCount":10},{"name":"video_game_critic","displayName":"Video Game Critic","basicCategory":"media_service","count":22,"totalCount":22}]},{"name":"media_news_company","displayName":"Media News Company","basicCategory":"media_service","count":23214,"totalCount":247443,"children":[{"name":"animation_studio","displayName":"Animation Studio","basicCategory":"media_service","count":2787,"totalCount":2787},{"name":"book_magazine_distribution","displayName":"Book Magazine Distribution","basicCategory":"media_service","count":2767,"totalCount":2767},{"name":"broadcasting_media_production","displayName":"Broadcasting Media Production","basicCategory":"media_service","count":49938,"totalCount":49938},{"name":"game_publisher","displayName":"Game Publisher","basicCategory":"media_service","count":4588,"totalCount":4588},{"name":"media_agency","displayName":"Media Agency","basicCategory":"media_service","count":24427,"totalCount":24427},{"name":"movie_television_studio","displayName":"Movie Television Studio","basicCategory":"media_service","count":15306,"totalCount":15306},{"name":"music_production","displayName":"Music Production","basicCategory":"media_service","count":52884,"totalCount":52884},{"name":"publisher","displayName":"Publisher","basicCategory":"media_service","count":44126,"totalCount":44126},{"name":"radio_station","displayName":"Radio Station","isBasic":true,"count":24573,"totalCount":24573},{"name":"social_media_company","displayName":"Social Media Company","basicCategory":"media_service","count":1738,"totalCount":1738},{"name":"television_station","displayName":"Television Station","isBasic":true,"count":1073,"totalCount":1073},{"name":"weather_forecast_service","displayName":"Weather Forecast Service","basicCategory":"media_service","count":22,"totalCount":22}]},{"name":"media_news_website","displayName":"Media News Website","basicCategory":"media_service","count":6598,"totalCount":6598},{"name":"media_restoration_service","displayName":"Media Restoration Service","basicCategory":"media_service","count":900,"totalCount":900},{"name":"music_production_service","displayName":"Music Production Service","basicCategory":"media_service","count":452,"totalCount":452},{"name":"musical_instrument_service","displayName":"Musical Instrument Service","basicCategory":"media_service","count":338,"totalCount":1466,"children":[{"name":"piano_service","displayName":"Piano Service","basicCategory":"media_service","count":979,"totalCount":979},{"name":"vocal_coach","displayName":"Vocal Coach","basicCategory":"media_service","count":149,"totalCount":149}]},{"name":"photography_service","displayName":"Photography Service","basicCategory":"media_service","count":10838,"totalCount":107173,"children":[{"name":"boudoir_photography_service","displayName":"Boudoir Photography Service","basicCategory":"media_service","count":90,"totalCount":90},{"name":"event_photography_service","displayName":"Event Photography Service","basicCategory":"media_service","count":90581,"totalCount":90581},{"name":"session_photography_service","displayName":"Session Photography Service","basicCategory":"media_service","count":5664,"totalCount":5664}]},{"name":"print_media","displayName":"Print Media","basicCategory":"media_service","count":21014,"totalCount":21014},{"name":"record_label","displayName":"Record Label","basicCategory":"media_service","count":6956,"totalCount":6956},{"name":"recording_and_rehearsal_studio","displayName":"Recording and Rehearsal Studio","basicCategory":"media_service","count":2634,"totalCount":2634},{"name":"studio_taping","displayName":"Studio Taping","basicCategory":"media_service","count":90,"totalCount":90},{"name":"theatrical_production","displayName":"Theatrical Production","basicCategory":"media_service","count":15179,"totalCount":15179},{"name":"video_film_production","displayName":"Video Film Production","basicCategory":"media_service","count":3807,"totalCount":3807},{"name":"weather_station","displayName":"Weather Station","basicCategory":"media_service","count":313,"totalCount":313}]},{"name":"printing_service","displayName":"Printing Service","isBasic":true,"count":298475,"totalCount":343799,"children":[{"name":"3d_printing_service","displayName":"3d Printing Service","basicCategory":"printing_service","count":822,"totalCount":822},{"name":"commercial_printer","displayName":"Commercial Printer","basicCategory":"printing_service","count":1341,"totalCount":1341},{"name":"duplication_service","displayName":"Duplication Service","basicCategory":"printing_service","count":115,"totalCount":115},{"name":"screen_printing_service","displayName":"Screen Printing Service","basicCategory":"printing_service","totalCount":43046,"children":[{"name":"t_shirt_printing_service","displayName":"T-shirt Printing Service","basicCategory":"printing_service","count":43046,"totalCount":43046}]}]},{"name":"professional_service","displayName":"Professional Service","isBasic":true,"count":1267482,"totalCount":1918896,"children":[{"name":"advertising_agency","displayName":"Advertising Agency","basicCategory":"professional_service","count":231973,"totalCount":231973},{"name":"bank_equipment_service","displayName":"Bank Equipment Service","basicCategory":"professional_service","count":729,"totalCount":729},{"name":"billing_service","displayName":"Billing Service","basicCategory":"professional_service","count":676,"totalCount":676},{"name":"bookkeeper","displayName":"Bookkeeper","basicCategory":"professional_service","count":2159,"totalCount":2159},{"name":"business_consulting","displayName":"Business Consulting","basicCategory":"professional_service","count":33463,"totalCount":33463},{"name":"career_counseling","displayName":"Career Counseling","basicCategory":"professional_service","count":7160,"totalCount":7160},{"name":"certification_agency","displayName":"Certification Agency","basicCategory":"professional_service","count":151,"totalCount":151},{"name":"cleaning_service","displayName":"Cleaning Service","basicCategory":"professional_service","count":20553,"totalCount":49588,"children":[{"name":"industrial_cleaning_service","displayName":"Industrial Cleaning Service","basicCategory":"professional_service","count":285,"totalCount":285},{"name":"janitorial_service","displayName":"Janitorial Service","basicCategory":"professional_service","count":23518,"totalCount":23518},{"name":"office_cleaning","displayName":"Office Cleaning","basicCategory":"professional_service","count":5232,"totalCount":5232}]},{"name":"copywriting_service","displayName":"Copywriting Service","basicCategory":"professional_service","count":846,"totalCount":846},{"name":"coworking_space","displayName":"Coworking Space","basicCategory":"professional_service","count":10905,"totalCount":10905},{"name":"e_commerce_service","displayName":"E-commerce Service","basicCategory":"professional_service","count":7957,"totalCount":7957},{"name":"editorial_service","displayName":"Editorial Service","basicCategory":"professional_service","count":107,"totalCount":107},{"name":"employment_agency","displayName":"Employment Agency","basicCategory":"professional_service","count":102515,"totalCount":107522,"children":[{"name":"temp_agency","displayName":"Temp Agency","basicCategory":"professional_service","count":5007,"totalCount":5007}]},{"name":"food_and_beverage_consultant","displayName":"Food and Beverage Consultant","basicCategory":"professional_service","count":503,"totalCount":503},{"name":"immigration_assistance_service","displayName":"Immigration Assistance Service","basicCategory":"professional_service","count":109,"totalCount":109},{"name":"internet_marketing_service","displayName":"Internet Marketing Service","basicCategory":"professional_service","count":32808,"totalCount":32808},{"name":"marketing_agency","displayName":"Marketing Agency","basicCategory":"professional_service","count":124986,"totalCount":124986},{"name":"merchandising_service","displayName":"Merchandising Service","basicCategory":"professional_service","count":7753,"totalCount":7753},{"name":"payroll_service","displayName":"Payroll Service","basicCategory":"professional_service","count":688,"totalCount":688},{"name":"public_relations","displayName":"Public Relations","basicCategory":"professional_service","count":10979,"totalCount":10979},{"name":"shredding_service","displayName":"Shredding Service","basicCategory":"professional_service","count":2102,"totalCount":2102},{"name":"social_media_agency","displayName":"Social Media Agency","basicCategory":"professional_service","count":10293,"totalCount":10293},{"name":"talent_agency","displayName":"Talent Agency","basicCategory":"professional_service","count":1307,"totalCount":1307},{"name":"translation_service","displayName":"Translation Service","basicCategory":"professional_service","count":3539,"totalCount":3539},{"name":"typing_service","displayName":"Typing Service","basicCategory":"professional_service","count":108,"totalCount":108},{"name":"writing_service","displayName":"Writing Service","basicCategory":"professional_service","count":3003,"totalCount":3003}]},{"name":"real_estate_service","displayName":"Real Estate Service","isBasic":true,"count":740534,"totalCount":1688256,"children":[{"name":"builder","displayName":"Builder","basicCategory":"real_estate_service","count":15120,"totalCount":139528,"children":[{"name":"home_developer","displayName":"Home Developer","basicCategory":"real_estate_service","count":124408,"totalCount":124408}]},{"name":"commercial_real_estate","displayName":"Commercial Real Estate","basicCategory":"real_estate_service","count":33119,"totalCount":33119},{"name":"display_home_center","displayName":"Display Home Center","basicCategory":"real_estate_service","count":448,"totalCount":448},{"name":"escrow_service","displayName":"Escrow Service","basicCategory":"real_estate_service","count":3770,"totalCount":3770},{"name":"estate_liquidation","displayName":"Estate Liquidation","basicCategory":"real_estate_service","count":296,"totalCount":296},{"name":"home_organization","displayName":"Home Organization","basicCategory":"real_estate_service","count":1812,"totalCount":1812},{"name":"home_staging","displayName":"Home Staging","basicCategory":"real_estate_service","count":4264,"totalCount":4264},{"name":"homeowner_association","displayName":"Homeowner Association","basicCategory":"real_estate_service","count":289,"totalCount":289},{"name":"housing_cooperative","displayName":"Housing Cooperative","basicCategory":"real_estate_service","count":1033,"totalCount":1033},{"name":"kitchen_incubator","displayName":"Kitchen Incubator","basicCategory":"real_estate_service","count":4,"totalCount":4},{"name":"land_surveying","displayName":"Land Surveying","basicCategory":"real_estate_service","count":24388,"totalCount":24388},{"name":"mobile_home_dealer","displayName":"Mobile Home Dealer","basicCategory":"real_estate_service","count":7163,"totalCount":7163},{"name":"property_management","displayName":"Property Management","basicCategory":"real_estate_service","count":115520,"totalCount":115520},{"name":"real_estate_agent","displayName":"Real Estate Agent","basicCategory":"real_estate_service","count":614266,"totalCount":615582,"children":[{"name":"apartment_agent","displayName":"Apartment Agent","basicCategory":"real_estate_service","count":1316,"totalCount":1316}]},{"name":"real_estate_photography","displayName":"Real Estate Photography","basicCategory":"real_estate_service","count":187,"totalCount":187},{"name":"shared_office_space","displayName":"Shared Office Space","basicCategory":"real_estate_service","count":319,"totalCount":319}]},{"name":"rental_service","displayName":"Rental Service","isBasic":true,"count":69201,"totalCount":444155,"children":[{"name":"art_space_rental","displayName":"Art Space Rental","basicCategory":"rental_service","count":1,"totalCount":1},{"name":"bus_rental","displayName":"Bus Rental","basicCategory":"rental_service","count":1345,"totalCount":1345},{"name":"clothing_rental","displayName":"Clothing Rental","basicCategory":"rental_service","count":4920,"totalCount":4920},{"name":"dumpster_rental","displayName":"Dumpster Rental","basicCategory":"rental_service","count":1825,"totalCount":1825},{"name":"machine_and_tool_rental","displayName":"Machine and Tool Rental","basicCategory":"rental_service","count":8393,"totalCount":8393},{"name":"rental_kiosk","displayName":"Rental Kiosk","basicCategory":"rental_service","count":199664,"totalCount":199664},{"name":"vehicle_rental_service","displayName":"Vehicle Rental Service","basicCategory":"rental_service","totalCount":158806,"children":[{"name":"car_rental_service","displayName":"Car Rental Service","basicCategory":"rental_service","count":100731,"totalCount":100731},{"name":"motorcycle_rental_service","displayName":"Motorcycle Rental Service","basicCategory":"rental_service","count":2391,"totalCount":2391},{"name":"rv_rental_service","displayName":"RV Rental Service","basicCategory":"rental_service","count":4016,"totalCount":4016},{"name":"trailer_rental_service","displayName":"Trailer Rental Service","basicCategory":"rental_service","count":6215,"totalCount":6215},{"name":"truck_rental_service","displayName":"Truck Rental Service","basicCategory":"rental_service","count":45453,"totalCount":45453}]}]},{"name":"security_service","displayName":"Security Service","isBasic":true,"count":7724,"totalCount":8135,"children":[{"name":"fingerprinting_service","displayName":"Fingerprinting Service","basicCategory":"security_service","count":411,"totalCount":411}]},{"name":"shipping_or_delivery_service","displayName":"Shipping or Delivery Service","isBasic":true,"totalCount":381631,"children":[{"name":"courier_and_delivery_service","displayName":"Courier and Delivery Service","basicCategory":"shipping_or_delivery_service","count":54895,"totalCount":54895},{"name":"mailbox_center","displayName":"Mailbox Center","basicCategory":"shipping_or_delivery_service","count":437,"totalCount":437},{"name":"packaging_contractors_and_service","displayName":"Packaging Contractors and Service","basicCategory":"shipping_or_delivery_service","count":452,"totalCount":452},{"name":"post_office","displayName":"Post Office","basicCategory":"shipping_or_delivery_service","count":233650,"totalCount":233650},{"name":"shipping_center","displayName":"Shipping Center","basicCategory":"shipping_or_delivery_service","count":87524,"totalCount":87524},{"name":"shipping_collection_service","displayName":"Shipping Collection Service","basicCategory":"shipping_or_delivery_service","count":1061,"totalCount":1061},{"name":"vehicle_shipping","displayName":"Vehicle Shipping","basicCategory":"shipping_or_delivery_service","count":3612,"totalCount":3612}]},{"name":"storage_facility","displayName":"Storage Facility","isBasic":true,"count":80256,"totalCount":269637,"children":[{"name":"automotive_storage_facility","displayName":"Automotive Storage Facility","basicCategory":"storage_facility","count":2232,"totalCount":2232},{"name":"boat_storage_facility","displayName":"Boat Storage Facility","basicCategory":"storage_facility","count":462,"totalCount":462},{"name":"package_locker","displayName":"Package Locker","basicCategory":"storage_facility","count":121868,"totalCount":121868},{"name":"rv_storage_facility","displayName":"RV Storage Facility","basicCategory":"storage_facility","count":674,"totalCount":674},{"name":"self_storage_facility","displayName":"Self Storage Facility","basicCategory":"storage_facility","count":64145,"totalCount":64145}]},{"name":"technical_service","displayName":"Technical Service","isBasic":true,"totalCount":517739,"children":[{"name":"acoustical_consultant","displayName":"Acoustical Consultant","basicCategory":"technical_service","count":218,"totalCount":218},{"name":"bike_repair_maintenance","displayName":"Bike Repair Maintenance","basicCategory":"technical_service","count":13744,"totalCount":13744},{"name":"commercial_refrigeration","displayName":"Commercial Refrigeration","basicCategory":"technical_service","count":8396,"totalCount":8396},{"name":"computer_hardware_company","displayName":"Computer Hardware Company","basicCategory":"technical_service","count":30718,"totalCount":30718},{"name":"electronics_repair_shop","displayName":"Electronics Repair Shop","basicCategory":"technical_service","count":1938,"totalCount":1938},{"name":"elevator_service","displayName":"Elevator Service","basicCategory":"technical_service","count":8423,"totalCount":8423},{"name":"generator_installation_repair","displayName":"Generator Installation Repair","basicCategory":"technical_service","count":67,"totalCount":67},{"name":"hydraulic_repair_service","displayName":"Hydraulic Repair Service","basicCategory":"technical_service","count":514,"totalCount":514},{"name":"internet_service_provider","displayName":"Internet Service Provider","basicCategory":"technical_service","count":41419,"totalCount":42693,"children":[{"name":"web_hosting_service","displayName":"Web Hosting Service","basicCategory":"technical_service","count":1274,"totalCount":1274}]},{"name":"it_service_and_computer_repair","displayName":"IT Service and Computer Repair","basicCategory":"technical_service","count":175655,"totalCount":186326,"children":[{"name":"it_consultant","displayName":"IT Consultant","basicCategory":"technical_service","count":2072,"totalCount":2072},{"name":"mobile_phone_repair","displayName":"Mobile Phone Repair","basicCategory":"technical_service","count":8599,"totalCount":8599}]},{"name":"jewelry_repair_service","displayName":"Jewelry Repair Service","basicCategory":"technical_service","count":49,"totalCount":49},{"name":"laboratory","displayName":"Laboratory","basicCategory":"technical_service","count":14241,"totalCount":14241},{"name":"machine_shop","displayName":"Machine Shop","basicCategory":"technical_service","count":55723,"totalCount":55723},{"name":"metal_detector_service","displayName":"Metal Detector Service","basicCategory":"technical_service","count":8,"totalCount":8},{"name":"software_development","displayName":"Software Development","basicCategory":"technical_service","count":148533,"totalCount":148533},{"name":"taxidermist","displayName":"Taxidermist","basicCategory":"technical_service","count":5351,"totalCount":5351},{"name":"telephone_service","displayName":"Telephone Service","basicCategory":"technical_service","count":678,"totalCount":678},{"name":"watch_repair_service","displayName":"Watch Repair Service","basicCategory":"technical_service","count":119,"totalCount":119}]},{"name":"telecommunications_service","displayName":"Telecommunications Service","isBasic":true,"count":35375,"totalCount":35375},{"name":"utility_energy_infrastructure","displayName":"Utility Energy Infrastructure","isBasic":true,"totalCount":69,"children":[{"name":"wind_energy","displayName":"Wind Energy","basicCategory":"utility_energy_infrastructure","count":69,"totalCount":69}]}]},{"name":"shopping","displayName":"Shopping","isBasic":true,"count":1225096,"totalCount":13416679,"children":[{"name":"convenience_store","displayName":"Convenience Store","isBasic":true,"count":469802,"totalCount":469802},{"name":"department_store","displayName":"Department Store","isBasic":true,"count":86591,"totalCount":86591},{"name":"discount_store","displayName":"Discount Store","isBasic":true,"count":124970,"totalCount":124970},{"name":"fashion_and_apparel_store","displayName":"Fashion and Apparel Store","isBasic":true,"count":97108,"totalCount":2629848,"children":[{"name":"baby_gear_and_nursery_store","displayName":"Baby Gear and Nursery Store","basicCategory":"fashion_and_apparel_store","count":5475,"totalCount":5475},{"name":"clothing_store","displayName":"Clothing Store","basicCategory":"fashion_and_apparel_store","count":897039,"totalCount":1566530,"children":[{"name":"bridal_shop","displayName":"Bridal Shop","basicCategory":"fashion_and_apparel_store","count":55741,"totalCount":55741},{"name":"childrens_clothing_store","displayName":"Children's Clothing Store","basicCategory":"fashion_and_apparel_store","count":119892,"totalCount":119892},{"name":"custom_clothing_store","displayName":"Custom Clothing Store","basicCategory":"fashion_and_apparel_store","count":1266,"totalCount":1266},{"name":"denim_wear_store","displayName":"Denim Wear Store","basicCategory":"fashion_and_apparel_store","count":233,"totalCount":233},{"name":"designer_clothing","displayName":"Designer Clothing","basicCategory":"fashion_and_apparel_store","count":6818,"totalCount":6818},{"name":"formal_wear_store","displayName":"Formal Wear Store","basicCategory":"fashion_and_apparel_store","count":1310,"totalCount":1310},{"name":"fur_clothing","displayName":"Fur Clothing","basicCategory":"fashion_and_apparel_store","count":572,"totalCount":572},{"name":"lingerie_store","displayName":"Lingerie Store","basicCategory":"fashion_and_apparel_store","count":49278,"totalCount":49278},{"name":"maternity_wear","displayName":"Maternity Wear","basicCategory":"fashion_and_apparel_store","count":2582,"totalCount":2582},{"name":"mens_clothing_store","displayName":"Men's Clothing Store","basicCategory":"fashion_and_apparel_store","count":98311,"totalCount":98311},{"name":"plus_size_clothing_store","displayName":"Plus Size Clothing Store","basicCategory":"fashion_and_apparel_store","count":371,"totalCount":371},{"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":5198,"totalCount":7488,"children":[{"name":"custom_t_shirt_store","displayName":"Custom T-shirt Store","basicCategory":"fashion_and_apparel_store","count":2290,"totalCount":2290}]},{"name":"traditional_clothing","displayName":"Traditional Clothing","basicCategory":"fashion_and_apparel_store","count":1809,"totalCount":1857,"children":[{"name":"saree_shop","displayName":"Saree Shop","basicCategory":"fashion_and_apparel_store","count":48,"totalCount":48}]},{"name":"uniform_store","displayName":"Uniform Store","basicCategory":"fashion_and_apparel_store","count":22370,"totalCount":22370},{"name":"womens_clothing_store","displayName":"Women's Clothing Store","basicCategory":"fashion_and_apparel_store","count":301400,"totalCount":301400}]},{"name":"eyewear_store","displayName":"Eyewear Store","basicCategory":"fashion_and_apparel_store","count":181002,"totalCount":186465,"children":[{"name":"sunglasses_store","displayName":"Sunglasses Store","basicCategory":"fashion_and_apparel_store","count":5463,"totalCount":5463}]},{"name":"fashion_accessories_store","displayName":"Fashion Accessories Store","basicCategory":"fashion_and_apparel_store","count":93907,"totalCount":101855,"children":[{"name":"handbag_store","displayName":"Handbag Store","basicCategory":"fashion_and_apparel_store","count":1407,"totalCount":1407},{"name":"hat_store","displayName":"Hat Store","basicCategory":"fashion_and_apparel_store","count":6541,"totalCount":6541}]},{"name":"fashion_boutique","displayName":"Fashion Boutique","basicCategory":"fashion_and_apparel_store","count":113370,"totalCount":113370},{"name":"jewelry_store","displayName":"Jewelry Store","basicCategory":"fashion_and_apparel_store","count":279379,"totalCount":284409,"children":[{"name":"diamond_dealer","displayName":"Diamond Dealer","basicCategory":"fashion_and_apparel_store","count":544,"totalCount":544},{"name":"goldsmith","displayName":"Goldsmith","basicCategory":"fashion_and_apparel_store","count":109,"totalCount":109},{"name":"watch_store","displayName":"Watch Store","basicCategory":"fashion_and_apparel_store","count":4377,"totalCount":4377}]},{"name":"leather_goods_store","displayName":"Leather Goods Store","basicCategory":"fashion_and_apparel_store","count":3745,"totalCount":3745},{"name":"luggage_store","displayName":"Luggage Store","basicCategory":"fashion_and_apparel_store","count":25835,"totalCount":25835},{"name":"shoe_store","displayName":"Shoe Store","basicCategory":"fashion_and_apparel_store","count":244075,"totalCount":245056,"children":[{"name":"orthopedic_shoe_store","displayName":"Orthopedic Shoe Store","basicCategory":"fashion_and_apparel_store","count":981,"totalCount":981}]}]},{"name":"food_and_beverage_store","displayName":"Food and Beverage Store","isBasic":true,"count":65762,"totalCount":1685010,"children":[{"name":"beer_wine_spirits_store","displayName":"Beer Wine Spirits Store","basicCategory":"food_and_beverage_store","count":17709,"totalCount":17709},{"name":"brewing_supply_store","displayName":"Brewing Supply Store","basicCategory":"food_and_beverage_store","count":445,"totalCount":445},{"name":"butcher_shop","displayName":"Butcher Shop","basicCategory":"food_and_beverage_store","count":138455,"totalCount":138455},{"name":"cheese_shop","displayName":"Cheese Shop","basicCategory":"food_and_beverage_store","count":13765,"totalCount":13765},{"name":"coffee_and_tea_supplies","displayName":"Coffee and Tea Supplies","basicCategory":"food_and_beverage_store","count":642,"totalCount":642},{"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":29577,"totalCount":29577},{"name":"grocery_store","displayName":"Grocery Store","basicCategory":"food_and_beverage_store","count":928726,"totalCount":971510,"children":[{"name":"asian_grocery_store","displayName":"Asian Grocery Store","basicCategory":"food_and_beverage_store","count":821,"totalCount":821},{"name":"ethical_grocery_store","displayName":"Ethical Grocery Store","basicCategory":"food_and_beverage_store","count":2394,"totalCount":2394},{"name":"indian_grocery_store","displayName":"Indian Grocery Store","basicCategory":"food_and_beverage_store","count":5884,"totalCount":5884},{"name":"international_grocery_store","displayName":"International Grocery Store","basicCategory":"food_and_beverage_store","count":2006,"totalCount":2006},{"name":"japanese_grocery_store","displayName":"Japanese Grocery Store","basicCategory":"food_and_beverage_store","count":36,"totalCount":36},{"name":"korean_grocery_store","displayName":"Korean Grocery Store","basicCategory":"food_and_beverage_store","count":10588,"totalCount":10588},{"name":"kosher_grocery_store","displayName":"Kosher Grocery Store","basicCategory":"food_and_beverage_store","count":50,"totalCount":50},{"name":"mexican_grocery_store","displayName":"Mexican Grocery Store","basicCategory":"food_and_beverage_store","count":482,"totalCount":482},{"name":"organic_grocery_store","displayName":"Organic Grocery Store","basicCategory":"food_and_beverage_store","count":20512,"totalCount":20512},{"name":"russian_grocery_store","displayName":"Russian Grocery Store","basicCategory":"food_and_beverage_store","count":11,"totalCount":11}]},{"name":"health_food_store","displayName":"Health Food Store","basicCategory":"food_and_beverage_store","count":76534,"totalCount":76534},{"name":"herb_and_spice_store","displayName":"Herb and Spice Store","basicCategory":"food_and_beverage_store","count":3236,"totalCount":3236},{"name":"honey_farm_shop","displayName":"Honey Farm Shop","basicCategory":"food_and_beverage_store","count":410,"totalCount":410},{"name":"imported_food_store","displayName":"Imported Food Store","basicCategory":"food_and_beverage_store","count":650,"totalCount":650},{"name":"liquor_store","displayName":"Liquor Store","basicCategory":"food_and_beverage_store","count":145040,"totalCount":145040},{"name":"olive_oil_store","displayName":"Olive Oil Store","basicCategory":"food_and_beverage_store","count":189,"totalCount":189},{"name":"patisserie_cake_shop","displayName":"Patisserie Cake Shop","basicCategory":"food_and_beverage_store","count":3844,"totalCount":4512,"children":[{"name":"custom_cakes_shop","displayName":"Custom Cakes Shop","basicCategory":"food_and_beverage_store","count":668,"totalCount":668}]},{"name":"pick_your_own_farm","displayName":"Pick Your Own Farm","basicCategory":"food_and_beverage_store","count":56,"totalCount":56},{"name":"seafood_market","displayName":"Seafood Market","basicCategory":"food_and_beverage_store","count":2480,"totalCount":2480},{"name":"smokehouse","displayName":"Smokehouse","basicCategory":"food_and_beverage_store","count":121,"totalCount":121},{"name":"specialty_foods_store","displayName":"Specialty Foods Store","basicCategory":"food_and_beverage_store","count":32027,"totalCount":105436,"children":[{"name":"dairy_store","displayName":"Dairy Store","basicCategory":"food_and_beverage_store","count":1840,"totalCount":1840},{"name":"frozen_foods_store","displayName":"Frozen Foods Store","basicCategory":"food_and_beverage_store","count":1793,"totalCount":1793},{"name":"pasta_store","displayName":"Pasta Store","basicCategory":"food_and_beverage_store","count":495,"totalCount":495},{"name":"produce_store","displayName":"Produce Store","basicCategory":"food_and_beverage_store","count":69238,"totalCount":69238},{"name":"rice_store","displayName":"Rice Store","basicCategory":"food_and_beverage_store","count":43,"totalCount":43}]},{"name":"tobacco_shop","displayName":"Tobacco Shop","basicCategory":"food_and_beverage_store","count":63044,"totalCount":63044},{"name":"vitamin_and_supplement_store","displayName":"Vitamin and Supplement Store","basicCategory":"food_and_beverage_store","count":45198,"totalCount":45198},{"name":"water_store","displayName":"Water Store","basicCategory":"food_and_beverage_store","count":221,"totalCount":221}]},{"name":"kiosk","displayName":"Kiosk","isBasic":true,"count":1865,"totalCount":1865},{"name":"market","displayName":"Market","isBasic":true,"totalCount":68258,"children":[{"name":"bazaar","displayName":"Bazaar","basicCategory":"market","count":11,"totalCount":11},{"name":"farmers_market","displayName":"Farmers Market","isBasic":true,"count":60196,"totalCount":60196},{"name":"health_market","displayName":"Health Market","basicCategory":"market","count":2549,"totalCount":2549},{"name":"holiday_market","displayName":"Holiday Market","basicCategory":"market","count":25,"totalCount":25},{"name":"market_stall","displayName":"Market Stall","basicCategory":"market","count":2,"totalCount":2},{"name":"night_market","displayName":"Night Market","basicCategory":"market","count":4497,"totalCount":4497},{"name":"public_market","displayName":"Public Market","basicCategory":"market","count":722,"totalCount":722},{"name":"shopping_passage","displayName":"Shopping Passage","basicCategory":"market","count":3,"totalCount":3},{"name":"street_vendor","displayName":"Street Vendor","basicCategory":"market","count":253,"totalCount":253}]},{"name":"second_hand_store","displayName":"Second Hand Store","isBasic":true,"count":84231,"totalCount":228090,"children":[{"name":"antique_store","displayName":"Antique Store","basicCategory":"second_hand_store","count":57939,"totalCount":57939},{"name":"flea_market","displayName":"Flea Market","basicCategory":"second_hand_store","count":26044,"totalCount":26044},{"name":"junkyard","displayName":"Junkyard","basicCategory":"second_hand_store","count":8362,"totalCount":8362},{"name":"pawn_shop","displayName":"Pawn Shop","basicCategory":"second_hand_store","count":29797,"totalCount":29797},{"name":"second_hand_clothing_store","displayName":"Second Hand Clothing Store","basicCategory":"second_hand_store","count":21717,"totalCount":21717}]},{"name":"shopping_mall","displayName":"Shopping Mall","isBasic":true,"count":186795,"totalCount":186795},{"name":"shopping_service","displayName":"Shopping Service","isBasic":true,"totalCount":303,"children":[{"name":"personal_shopper","displayName":"Personal Shopper","basicCategory":"shopping_service","count":303,"totalCount":303}]},{"name":"specialty_store","displayName":"Specialty Store","isBasic":true,"count":53,"totalCount":5744919,"children":[{"name":"adult_store","displayName":"Adult Store","basicCategory":"specialty_store","count":1645,"totalCount":1645},{"name":"animal_and_pet_store","displayName":"Animal and Pet Store","isBasic":true,"totalCount":180408,"children":[{"name":"horse_equipment_shop","displayName":"Horse Equipment Shop","basicCategory":"animal_and_pet_store","count":570,"totalCount":570},{"name":"livestock_feed_and_supply_store","displayName":"Livestock Feed and Supply Store","basicCategory":"animal_and_pet_store","count":1323,"totalCount":1323},{"name":"pet_store","displayName":"Pet Store","basicCategory":"animal_and_pet_store","count":163852,"totalCount":178515,"children":[{"name":"aquatic_pet_store","displayName":"Aquatic Pet Store","basicCategory":"animal_and_pet_store","count":12151,"totalCount":12151},{"name":"bird_store","displayName":"Bird Store","basicCategory":"animal_and_pet_store","count":187,"totalCount":187},{"name":"reptile_store","displayName":"Reptile Store","basicCategory":"animal_and_pet_store","count":2325,"totalCount":2325}]}]},{"name":"arts_crafts_and_hobby_store","displayName":"Arts Crafts and Hobby Store","isBasic":true,"count":142261,"totalCount":261095,"children":[{"name":"art_supply_store","displayName":"Art Supply Store","basicCategory":"arts_crafts_and_hobby_store","count":1852,"totalCount":1852},{"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":540,"totalCount":540},{"name":"costume_store","displayName":"Costume Store","basicCategory":"arts_crafts_and_hobby_store","count":18243,"totalCount":18243},{"name":"craft_store","displayName":"Craft Store","basicCategory":"arts_crafts_and_hobby_store","count":4064,"totalCount":9199,"children":[{"name":"embroidery_and_crochet_store","displayName":"Embroidery and Crochet Store","basicCategory":"arts_crafts_and_hobby_store","count":3876,"totalCount":3876},{"name":"knitting_supply_store","displayName":"Knitting Supply Store","basicCategory":"arts_crafts_and_hobby_store","count":1259,"totalCount":1259}]},{"name":"fabric_store","displayName":"Fabric Store","basicCategory":"arts_crafts_and_hobby_store","count":54423,"totalCount":54423},{"name":"framing_store","displayName":"Framing Store","basicCategory":"arts_crafts_and_hobby_store","count":5524,"totalCount":5524},{"name":"hobby_shop","displayName":"Hobby Shop","basicCategory":"arts_crafts_and_hobby_store","count":29009,"totalCount":29009}]},{"name":"auction_house","displayName":"Auction House","basicCategory":"specialty_store","count":17731,"totalCount":18336,"children":[{"name":"car_auction","displayName":"Car Auction","basicCategory":"specialty_store","count":605,"totalCount":605}]},{"name":"books_music_and_video_store","displayName":"Books Music and Video Store","isBasic":true,"count":5663,"totalCount":238609,"children":[{"name":"bookstore","displayName":"Bookstore","basicCategory":"books_music_and_video_store","count":137135,"totalCount":149562,"children":[{"name":"academic_bookstore","displayName":"Academic Bookstore","basicCategory":"books_music_and_video_store","count":1830,"totalCount":1830},{"name":"comic_books_store","displayName":"Comic Books Store","basicCategory":"books_music_and_video_store","count":9722,"totalCount":9722},{"name":"used_bookstore","displayName":"Used Bookstore","basicCategory":"books_music_and_video_store","count":875,"totalCount":875}]},{"name":"music_and_dvd_store","displayName":"Music and DVD Store","basicCategory":"books_music_and_video_store","count":25119,"totalCount":25119},{"name":"newspaper_and_magazines_store","displayName":"Newspaper and Magazines Store","basicCategory":"books_music_and_video_store","count":20879,"totalCount":20879},{"name":"video_and_video_game_rental","displayName":"Video and Video Game Rental","basicCategory":"books_music_and_video_store","count":10110,"totalCount":10110},{"name":"video_game_store","displayName":"Video Game Store","basicCategory":"books_music_and_video_store","count":25468,"totalCount":25468},{"name":"vinyl_record_store","displayName":"Vinyl Record Store","basicCategory":"books_music_and_video_store","count":1808,"totalCount":1808}]},{"name":"cards_and_stationery_store","displayName":"Cards and Stationery Store","basicCategory":"specialty_store","count":4177,"totalCount":4177},{"name":"customized_merchandise_store","displayName":"Customized Merchandise Store","basicCategory":"specialty_store","count":2917,"totalCount":2917},{"name":"duty_free_store","displayName":"Duty Free Store","basicCategory":"specialty_store","count":1158,"totalCount":1158},{"name":"educational_supply_store","displayName":"Educational Supply Store","basicCategory":"specialty_store","count":8301,"totalCount":8301},{"name":"electronics_store","displayName":"Electronics Store","isBasic":true,"count":256895,"totalCount":763977,"children":[{"name":"audio_visual_equipment_store","displayName":"Audio Visual Equipment Store","basicCategory":"electronics_store","count":17006,"totalCount":17006},{"name":"battery_store","displayName":"Battery Store","basicCategory":"electronics_store","count":4056,"totalCount":4056},{"name":"camera_and_photography_store","displayName":"Camera and Photography Store","basicCategory":"electronics_store","count":32900,"totalCount":32900},{"name":"car_stereo_store","displayName":"Car Stereo Store","basicCategory":"electronics_store","count":13180,"totalCount":13180},{"name":"computer_store","displayName":"Computer Store","basicCategory":"electronics_store","count":99986,"totalCount":99986},{"name":"drone_store","displayName":"Drone Store","basicCategory":"electronics_store","count":193,"totalCount":193},{"name":"home_theater_systems_stores","displayName":"Home Theater Systems Stores","basicCategory":"electronics_store","count":2139,"totalCount":2139},{"name":"mobile_phone_accessory_store","displayName":"Mobile Phone Accessory Store","basicCategory":"electronics_store","count":6121,"totalCount":6121},{"name":"mobile_phone_store","displayName":"Mobile Phone Store","basicCategory":"electronics_store","count":331501,"totalCount":331501}]},{"name":"farming_equipment_and_supply_store","displayName":"Farming Equipment and Supply Store","basicCategory":"specialty_store","totalCount":1887,"children":[{"name":"agricultural_seed_store","displayName":"Agricultural Seed Store","basicCategory":"specialty_store","count":620,"totalCount":620},{"name":"farming_equipment_store","displayName":"Farming Equipment Store","basicCategory":"specialty_store","count":1267,"totalCount":1267}]},{"name":"fireworks_store","displayName":"Fireworks Store","basicCategory":"specialty_store","count":11824,"totalCount":11824},{"name":"flowers_and_gifts_store","displayName":"Flowers and Gifts Store","isBasic":true,"count":398227,"totalCount":495054,"children":[{"name":"florist","displayName":"Florist","basicCategory":"flowers_and_gifts_store","count":41622,"totalCount":41622},{"name":"flower_market","displayName":"Flower Market","basicCategory":"flowers_and_gifts_store","count":79,"totalCount":79},{"name":"gift_shop","displayName":"Gift Shop","basicCategory":"flowers_and_gifts_store","count":55126,"totalCount":55126}]},{"name":"gemstone_and_mineral_store","displayName":"Gemstone and Mineral Store","basicCategory":"specialty_store","count":448,"totalCount":448},{"name":"gun_and_ammo_store","displayName":"Gun and Ammo Store","basicCategory":"specialty_store","count":18276,"totalCount":18334,"children":[{"name":"gunsmith","displayName":"Gunsmith","basicCategory":"specialty_store","count":58,"totalCount":58}]},{"name":"hardware_home_and_garden_store","displayName":"Hardware Home and Garden Store","isBasic":true,"count":30904,"totalCount":1823264,"children":[{"name":"appliance_store","displayName":"Appliance Store","basicCategory":"hardware_home_and_garden_store","count":64912,"totalCount":64912},{"name":"bedding_and_bath_store","displayName":"Bedding and Bath Store","basicCategory":"hardware_home_and_garden_store","count":1926,"totalCount":1926},{"name":"building_supply_store","displayName":"Building Supply Store","basicCategory":"hardware_home_and_garden_store","count":318226,"totalCount":345491,"children":[{"name":"lumber_store","displayName":"Lumber Store","basicCategory":"hardware_home_and_garden_store","count":27265,"totalCount":27265}]},{"name":"candle_store","displayName":"Candle Store","basicCategory":"hardware_home_and_garden_store","count":2398,"totalCount":2398},{"name":"carpet_store","displayName":"Carpet Store","basicCategory":"hardware_home_and_garden_store","count":63339,"totalCount":63339},{"name":"christmas_tree_store","displayName":"Christmas Tree Store","basicCategory":"hardware_home_and_garden_store","count":2979,"totalCount":2979},{"name":"do_it_yourself_store","displayName":"Do IT Yourself Store","basicCategory":"hardware_home_and_garden_store","count":2677,"totalCount":2677},{"name":"electrical_supply_store","displayName":"Electrical Supply Store","basicCategory":"hardware_home_and_garden_store","count":10508,"totalCount":10508},{"name":"flooring_store","displayName":"Flooring Store","basicCategory":"hardware_home_and_garden_store","count":11120,"totalCount":11120},{"name":"furniture_accessory_store","displayName":"Furniture Accessory Store","basicCategory":"hardware_home_and_garden_store","count":2131,"totalCount":2131},{"name":"furniture_store","displayName":"Furniture Store","basicCategory":"hardware_home_and_garden_store","count":460012,"totalCount":460012},{"name":"grilling_equipment_store","displayName":"Grilling Equipment Store","basicCategory":"hardware_home_and_garden_store","count":603,"totalCount":603},{"name":"hardware_store","displayName":"Hardware Store","basicCategory":"hardware_home_and_garden_store","count":259867,"totalCount":262839,"children":[{"name":"welding_supply_store","displayName":"Welding Supply Store","basicCategory":"hardware_home_and_garden_store","count":2972,"totalCount":2972}]},{"name":"holiday_decor_store","displayName":"Holiday Decor Store","basicCategory":"hardware_home_and_garden_store","count":330,"totalCount":330},{"name":"home_decor_store","displayName":"Home Decor Store","basicCategory":"hardware_home_and_garden_store","count":12302,"totalCount":12302},{"name":"home_goods_store","displayName":"Home Goods Store","basicCategory":"hardware_home_and_garden_store","count":125802,"totalCount":125802},{"name":"home_improvement_store","displayName":"Home Improvement Store","basicCategory":"hardware_home_and_garden_store","count":118242,"totalCount":118242},{"name":"hot_tub_and_pool_store","displayName":"Hot Tub and Pool Store","basicCategory":"hardware_home_and_garden_store","count":4394,"totalCount":4394},{"name":"kitchen_and_bath_store","displayName":"Kitchen and Bath Store","basicCategory":"hardware_home_and_garden_store","count":9502,"totalCount":22166,"children":[{"name":"bathroom_fixture_store","displayName":"Bathroom Fixture Store","basicCategory":"hardware_home_and_garden_store","count":313,"totalCount":313},{"name":"kitchen_supply_store","displayName":"Kitchen Supply Store","basicCategory":"hardware_home_and_garden_store","count":12351,"totalCount":12351}]},{"name":"lawn_mower_store","displayName":"Lawn Mower Store","basicCategory":"hardware_home_and_garden_store","count":2149,"totalCount":2149},{"name":"lighting_store","displayName":"Lighting Store","basicCategory":"hardware_home_and_garden_store","count":39904,"totalCount":39904},{"name":"linen_store","displayName":"Linen Store","basicCategory":"hardware_home_and_garden_store","count":32787,"totalCount":32787},{"name":"mattress_store","displayName":"Mattress Store","basicCategory":"hardware_home_and_garden_store","count":41623,"totalCount":41623},{"name":"nursery_and_gardening_store","displayName":"Nursery and Gardening Store","basicCategory":"hardware_home_and_garden_store","count":122703,"totalCount":123387,"children":[{"name":"hydroponic_gardening_store","displayName":"Hydroponic Gardening Store","basicCategory":"hardware_home_and_garden_store","count":684,"totalCount":684}]},{"name":"outdoor_furniture_store","displayName":"Outdoor Furniture Store","basicCategory":"hardware_home_and_garden_store","count":2011,"totalCount":2011},{"name":"paint_store","displayName":"Paint Store","basicCategory":"hardware_home_and_garden_store","count":18781,"totalCount":18781},{"name":"rug_store","displayName":"Rug Store","basicCategory":"hardware_home_and_garden_store","count":1759,"totalCount":1759},{"name":"tile_store","displayName":"Tile Store","basicCategory":"hardware_home_and_garden_store","count":5941,"totalCount":5941},{"name":"wallpaper_store","displayName":"Wallpaper Store","basicCategory":"hardware_home_and_garden_store","count":379,"totalCount":379},{"name":"window_treatment_store","displayName":"Window Treatment Store","basicCategory":"hardware_home_and_garden_store","count":5501,"totalCount":5501},{"name":"woodworking_supply_store","displayName":"Woodworking Supply Store","basicCategory":"hardware_home_and_garden_store","count":3967,"totalCount":3967}]},{"name":"medical_supply_store","displayName":"Medical Supply Store","basicCategory":"specialty_store","count":52253,"totalCount":77369,"children":[{"name":"dental_supply_store","displayName":"Dental Supply Store","basicCategory":"specialty_store","count":1413,"totalCount":1413},{"name":"hearing_aid_store","displayName":"Hearing Aid Store","basicCategory":"specialty_store","count":23703,"totalCount":23703}]},{"name":"musical_instrument_and_pro_audio_store","displayName":"Musical Instrument and Pro Audio Store","isBasic":true,"totalCount":42611,"children":[{"name":"dj_equipment_store","displayName":"DJ Equipment Store","basicCategory":"musical_instrument_and_pro_audio_store","totalCount":0},{"name":"musical_instrument_store","displayName":"Musical Instrument Store","basicCategory":"musical_instrument_and_pro_audio_store","count":41435,"totalCount":42611,"children":[{"name":"guitar_store","displayName":"Guitar Store","basicCategory":"musical_instrument_and_pro_audio_store","count":735,"totalCount":735},{"name":"piano_store","displayName":"Piano Store","basicCategory":"musical_instrument_and_pro_audio_store","count":441,"totalCount":441}]},{"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":57124,"totalCount":70228,"children":[{"name":"packing_supply_store","displayName":"Packing Supply Store","basicCategory":"office_supply_store","count":13010,"totalCount":13010},{"name":"pen_store","displayName":"Pen Store","basicCategory":"office_supply_store","count":94,"totalCount":94}]},{"name":"outlet_store","displayName":"Outlet Store","basicCategory":"specialty_store","count":15772,"totalCount":15772},{"name":"party_supply_store","displayName":"Party Supply Store","basicCategory":"specialty_store","count":50534,"totalCount":50534},{"name":"personal_care_and_beauty_store","displayName":"Personal Care and Beauty Store","isBasic":true,"totalCount":263794,"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":184142,"totalCount":263794,"children":[{"name":"cosmetics_and_fragrance_store","displayName":"Cosmetics and Fragrance Store","basicCategory":"personal_care_and_beauty_store","count":26588,"totalCount":26588},{"name":"hair_supply_store","displayName":"Hair Supply Store","basicCategory":"personal_care_and_beauty_store","count":47898,"totalCount":47898},{"name":"wig_store","displayName":"Wig Store","basicCategory":"personal_care_and_beauty_store","count":5166,"totalCount":5166}]}]},{"name":"pharmacy_and_drug_store","displayName":"Pharmacy and Drug Store","isBasic":true,"totalCount":548828,"children":[{"name":"drugstore","displayName":"Drugstore","basicCategory":"pharmacy_and_drug_store","count":29597,"totalCount":29597},{"name":"pharmacy","displayName":"Pharmacy","basicCategory":"pharmacy_and_drug_store","count":519231,"totalCount":519231}]},{"name":"pop_up_store","displayName":"Pop Up Store","basicCategory":"specialty_store","count":7473,"totalCount":7473},{"name":"religious_and_spiritual_goods_store","displayName":"Religious and Spiritual Goods Store","basicCategory":"specialty_store","count":1132,"totalCount":1132,"children":[{"name":"buddhist_goods_store","displayName":"Buddhist Goods Store","basicCategory":"specialty_store","totalCount":0},{"name":"christian_goods_store","displayName":"Christian Goods Store","basicCategory":"specialty_store","totalCount":0,"children":[{"name":"church_supply_store","displayName":"Church Supply Store","basicCategory":"specialty_store","totalCount":0}]},{"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":535,"totalCount":535},{"name":"safety_equipment_store","displayName":"Safety Equipment Store","basicCategory":"specialty_store","count":10888,"totalCount":10888},{"name":"smoke_and_vape_store","displayName":"Smoke and Vape Store","basicCategory":"specialty_store","count":40067,"totalCount":49074,"children":[{"name":"cannabis_dispensary","displayName":"Cannabis Dispensary","basicCategory":"specialty_store","count":9007,"totalCount":9007}]},{"name":"souvenir_store","displayName":"Souvenir Store","basicCategory":"specialty_store","count":13771,"totalCount":13771},{"name":"sporting_goods_store","displayName":"Sporting Goods Store","isBasic":true,"count":128526,"totalCount":338746,"children":[{"name":"archery_store","displayName":"Archery Store","basicCategory":"sporting_goods_store","count":1602,"totalCount":1602},{"name":"bike_store","displayName":"Bike Store","basicCategory":"sporting_goods_store","count":87983,"totalCount":87983},{"name":"dive_store","displayName":"Dive Store","basicCategory":"sporting_goods_store","count":877,"totalCount":877},{"name":"fitness_exercise_store","displayName":"Fitness Exercise Store","basicCategory":"sporting_goods_store","count":1356,"totalCount":1356},{"name":"golf_equipment_store","displayName":"Golf Equipment Store","basicCategory":"sporting_goods_store","count":2286,"totalCount":2286},{"name":"hockey_equipment_store","displayName":"Hockey Equipment Store","basicCategory":"sporting_goods_store","count":282,"totalCount":282},{"name":"hunting_and_fishing_store","displayName":"Hunting and Fishing Store","basicCategory":"sporting_goods_store","count":29248,"totalCount":29248},{"name":"outdoor_store","displayName":"Outdoor Store","basicCategory":"sporting_goods_store","count":28466,"totalCount":28466},{"name":"pool_and_billiards_store","displayName":"Pool and Billiards Store","basicCategory":"sporting_goods_store","count":117,"totalCount":117},{"name":"skate_store","displayName":"Skate Store","basicCategory":"sporting_goods_store","count":5351,"totalCount":5351},{"name":"ski_and_snowboard_store","displayName":"Ski and Snowboard Store","basicCategory":"sporting_goods_store","count":5051,"totalCount":5051},{"name":"sportswear_store","displayName":"Sportswear Store","basicCategory":"sporting_goods_store","count":31896,"totalCount":33477,"children":[{"name":"dancewear_store","displayName":"Dancewear Store","basicCategory":"sporting_goods_store","count":1581,"totalCount":1581}]},{"name":"surf_store","displayName":"Surf Store","basicCategory":"sporting_goods_store","count":7454,"totalCount":7454},{"name":"swimwear_store","displayName":"Swimwear Store","basicCategory":"sporting_goods_store","count":6670,"totalCount":6670}]},{"name":"tactical_supply_store","displayName":"Tactical Supply Store","basicCategory":"specialty_store","totalCount":666,"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":646,"totalCount":646}]},{"name":"toys_and_games_store","displayName":"Toys and Games Store","isBasic":true,"totalCount":69596,"children":[{"name":"tabletop_games_store","displayName":"Tabletop Games Store","basicCategory":"toys_and_games_store","count":198,"totalCount":198},{"name":"toy_store","displayName":"Toy Store","basicCategory":"toys_and_games_store","count":69398,"totalCount":69398}]},{"name":"trophy_store","displayName":"Trophy Store","basicCategory":"specialty_store","count":8591,"totalCount":8591},{"name":"vehicle_parts_store","displayName":"Vehicle Parts Store","isBasic":true,"totalCount":343824,"children":[{"name":"auto_parts_store","displayName":"Auto Parts Store","basicCategory":"vehicle_parts_store","count":324519,"totalCount":324519},{"name":"boat_parts_store","displayName":"Boat Parts Store","basicCategory":"vehicle_parts_store","count":7358,"totalCount":7358},{"name":"motorcycle_parts_store","displayName":"Motorcycle Parts Store","basicCategory":"vehicle_parts_store","count":784,"totalCount":784},{"name":"motorsports_store","displayName":"Motorsports Store","basicCategory":"vehicle_parts_store","count":10829,"totalCount":10829},{"name":"rv_parts_store","displayName":"RV Parts Store","basicCategory":"vehicle_parts_store","count":334,"totalCount":334}]}]},{"name":"superstore","displayName":"Superstore","isBasic":true,"count":15014,"totalCount":15014},{"name":"vehicle_dealer","displayName":"Vehicle Dealer","isBasic":true,"count":1512,"totalCount":828968,"children":[{"name":"aircraft_dealer","displayName":"Aircraft Dealer","basicCategory":"vehicle_dealer","count":1023,"totalCount":1023},{"name":"auto_dealer","displayName":"Auto Dealer","isBasic":true,"count":542069,"totalCount":632809,"children":[{"name":"auto_broker","displayName":"Auto Broker","basicCategory":"auto_dealer","count":2662,"totalCount":2662},{"name":"auto_leasing","displayName":"Auto Leasing","basicCategory":"auto_dealer","count":5002,"totalCount":5002},{"name":"used_auto_dealer","displayName":"Used Auto Dealer","basicCategory":"auto_dealer","count":83076,"totalCount":83076}]},{"name":"boat_dealer","displayName":"Boat Dealer","basicCategory":"vehicle_dealer","count":14630,"totalCount":14630},{"name":"commercial_vehicle_dealer","displayName":"Commercial Vehicle Dealer","basicCategory":"vehicle_dealer","count":6453,"totalCount":6453},{"name":"forklift_dealer","displayName":"Forklift Dealer","basicCategory":"vehicle_dealer","count":1546,"totalCount":1546},{"name":"golf_cart_dealer","displayName":"Golf Cart Dealer","basicCategory":"vehicle_dealer","count":3668,"totalCount":3668},{"name":"motorcycle_dealer","displayName":"Motorcycle Dealer","basicCategory":"vehicle_dealer","count":112997,"totalCount":112997},{"name":"motorsport_vehicle_dealer","displayName":"Motorsport Vehicle Dealer","basicCategory":"vehicle_dealer","count":4939,"totalCount":4939},{"name":"recreational_vehicle_dealer","displayName":"Recreational Vehicle Dealer","basicCategory":"vehicle_dealer","count":14094,"totalCount":14094},{"name":"scooter_dealer","displayName":"Scooter Dealer","basicCategory":"vehicle_dealer","count":360,"totalCount":360},{"name":"trailer_dealer","displayName":"Trailer Dealer","basicCategory":"vehicle_dealer","count":9737,"totalCount":9737},{"name":"truck_dealer","displayName":"Truck Dealer","basicCategory":"vehicle_dealer","count":25200,"totalCount":25200}]},{"name":"warehouse_club_store","displayName":"Warehouse Club Store","isBasic":true,"count":121150,"totalCount":121150}]},{"name":"sports_and_recreation","displayName":"Sports and Recreation","isBasic":true,"count":198851,"totalCount":2617035,"children":[{"name":"park","displayName":"Park","isBasic":true,"count":491407,"totalCount":585816,"children":[{"name":"dog_park","displayName":"Dog Park","isBasic":true,"count":12924,"totalCount":12924},{"name":"mountain_bike_park","displayName":"Mountain Bike Park","basicCategory":"park","count":55,"totalCount":55},{"name":"national_park","displayName":"National Park","isBasic":true,"count":27732,"totalCount":27732},{"name":"playground","displayName":"Playground","isBasic":true,"count":38750,"totalCount":38750},{"name":"state_park","displayName":"State Park","basicCategory":"park","count":1336,"totalCount":1336},{"name":"water_park","displayName":"Water Park","basicCategory":"park","count":13612,"totalCount":13612}]},{"name":"recreational_equipment_rental","displayName":"Recreational Equipment Rental","isBasic":true,"totalCount":42728,"children":[{"name":"atv_rental_tour","displayName":"ATV Rental Tour","basicCategory":"recreational_equipment_rental","count":2011,"totalCount":2011},{"name":"beach_equipment_rental","displayName":"Beach Equipment Rental","basicCategory":"recreational_equipment_rental","count":962,"totalCount":962},{"name":"bike_rental","displayName":"Bike Rental","basicCategory":"recreational_equipment_rental","count":13255,"totalCount":13255},{"name":"boat_hire_service","displayName":"Boat Hire Service","basicCategory":"recreational_equipment_rental","totalCount":0},{"name":"boat_rental_and_training","displayName":"Boat Rental and Training","basicCategory":"recreational_equipment_rental","count":15402,"totalCount":15402},{"name":"canoe_and_kayak_hire_service","displayName":"Canoe and Kayak Hire Service","basicCategory":"recreational_equipment_rental","count":8313,"totalCount":8313},{"name":"jet_skis_rental","displayName":"Jet Skis Rental","basicCategory":"recreational_equipment_rental","count":1773,"totalCount":1773},{"name":"paddleboard_rental","displayName":"Paddleboard Rental","basicCategory":"recreational_equipment_rental","count":102,"totalCount":102},{"name":"scooter_rental","displayName":"Scooter Rental","basicCategory":"recreational_equipment_rental","count":252,"totalCount":252},{"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":517,"totalCount":517},{"name":"surfboard_rental","displayName":"Surfboard Rental","basicCategory":"recreational_equipment_rental","count":66,"totalCount":66}]},{"name":"recreational_trail_or_path","displayName":"Recreational Trail or Path","isBasic":true,"count":24,"totalCount":47004,"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":15,"totalCount":15},{"name":"hiking_trail","displayName":"Hiking Trail","basicCategory":"recreational_trail_or_path","count":42664,"totalCount":42664},{"name":"mountain_bike_trail","displayName":"Mountain Bike Trail","basicCategory":"recreational_trail_or_path","count":4299,"totalCount":4299}]},{"name":"sport_league","displayName":"Sport League","isBasic":true,"totalCount":7469,"children":[{"name":"amateur_sport_league","displayName":"Amateur Sport League","basicCategory":"sport_league","count":4988,"totalCount":4988},{"name":"esports_league","displayName":"Esports League","basicCategory":"sport_league","count":722,"totalCount":722},{"name":"professional_sport_league","displayName":"Professional Sport League","basicCategory":"sport_league","count":1307,"totalCount":1307},{"name":"school_sport_league","displayName":"School Sport League","basicCategory":"sport_league","count":452,"totalCount":452}]},{"name":"sport_or_fitness_facility","displayName":"Sport or Fitness Facility","isBasic":true,"count":135796,"totalCount":1531569,"children":[{"name":"adventure_sport","displayName":"Adventure Sport","basicCategory":"sport_or_fitness_facility","totalCount":7789,"children":[{"name":"axe_throwing","displayName":"Axe Throwing","basicCategory":"sport_or_fitness_facility","count":106,"totalCount":106},{"name":"bungee_jumping_center","displayName":"Bungee Jumping Center","basicCategory":"sport_or_fitness_facility","count":4,"totalCount":4},{"name":"challenge_courses_center","displayName":"Challenge Courses Center","basicCategory":"sport_or_fitness_facility","count":72,"totalCount":72},{"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":9,"totalCount":9},{"name":"rock_climbing_spot","displayName":"Rock Climbing Spot","basicCategory":"sport_or_fitness_facility","count":7473,"totalCount":7473},{"name":"ziplining_center","displayName":"Ziplining Center","basicCategory":"sport_or_fitness_facility","count":29,"totalCount":29}]},{"name":"adventure_sports_center","displayName":"Adventure Sports Center","basicCategory":"sport_or_fitness_facility","count":751,"totalCount":751},{"name":"atv_recreation_park","displayName":"ATV Recreation Park","basicCategory":"sport_or_fitness_facility","count":1125,"totalCount":1125},{"name":"batting_cage","displayName":"Batting Cage","basicCategory":"sport_or_fitness_facility","count":2841,"totalCount":2841},{"name":"bowling_alley","displayName":"Bowling Alley","basicCategory":"sport_or_fitness_facility","count":17518,"totalCount":17518},{"name":"boxing_class","displayName":"Boxing Class","basicCategory":"sport_or_fitness_facility","count":14073,"totalCount":14073},{"name":"boxing_gym","displayName":"Boxing Gym","basicCategory":"sport_or_fitness_facility","count":1532,"totalCount":1532},{"name":"cardio_class","displayName":"Cardio Class","basicCategory":"sport_or_fitness_facility","count":154,"totalCount":154},{"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","totalCount":0},{"name":"cycling_class","displayName":"Cycling Class","basicCategory":"sport_or_fitness_facility","count":2886,"totalCount":2886},{"name":"dance_studio","displayName":"Dance Studio","basicCategory":"sport_or_fitness_facility","count":130237,"totalCount":130237},{"name":"diving_center","displayName":"Diving Center","basicCategory":"sport_or_fitness_facility","count":1259,"totalCount":13551,"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":12258,"totalCount":12258}]},{"name":"diving_instruction","displayName":"Diving Instruction","basicCategory":"sport_or_fitness_facility","totalCount":1432,"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":1432,"totalCount":1432}]},{"name":"fitness_studio","displayName":"Fitness Studio","isBasic":true,"totalCount":146579,"children":[{"name":"aerial_fitness_center","displayName":"Aerial Fitness Center","basicCategory":"fitness_studio","count":40,"totalCount":40},{"name":"barre_class","displayName":"Barre Class","basicCategory":"fitness_studio","count":431,"totalCount":431},{"name":"boot_camp","displayName":"Boot Camp","basicCategory":"fitness_studio","count":9631,"totalCount":9631},{"name":"pilates_studio","displayName":"Pilates Studio","basicCategory":"fitness_studio","count":52568,"totalCount":52568},{"name":"qi_gong_studio","displayName":"Qi Gong Studio","basicCategory":"fitness_studio","count":38,"totalCount":38},{"name":"tai_chi_studio","displayName":"Tai Chi Studio","basicCategory":"fitness_studio","count":1158,"totalCount":1158},{"name":"yoga_studio","displayName":"Yoga Studio","basicCategory":"fitness_studio","count":82713,"totalCount":82713}]},{"name":"fitness_trainer","displayName":"Fitness Trainer","basicCategory":"sport_or_fitness_facility","count":71824,"totalCount":71824},{"name":"flyboarding_center","displayName":"Flyboarding Center","basicCategory":"sport_or_fitness_facility","count":101,"totalCount":101},{"name":"flyboarding_rental","displayName":"Flyboarding Rental","basicCategory":"sport_or_fitness_facility","count":3,"totalCount":3},{"name":"golf_course","displayName":"Golf Course","isBasic":true,"count":37906,"totalCount":44022,"children":[{"name":"driving_range","displayName":"Driving Range","basicCategory":"golf_course","count":6116,"totalCount":6116}]},{"name":"golf_instructor","displayName":"Golf Instructor","basicCategory":"sport_or_fitness_facility","count":4384,"totalCount":4384},{"name":"gym","displayName":"Gym","isBasic":true,"count":541730,"totalCount":541730,"children":[{"name":"cycle_studio","displayName":"Cycle Studio","basicCategory":"gym","totalCount":0}]},{"name":"gymnastics_center","displayName":"Gymnastics Center","basicCategory":"sport_or_fitness_facility","count":18050,"totalCount":18050},{"name":"hang_gliding_center","displayName":"Hang Gliding Center","basicCategory":"sport_or_fitness_facility","count":415,"totalCount":415},{"name":"hockey_rink","displayName":"Hockey Rink","basicCategory":"sport_or_fitness_facility","totalCount":0,"children":[{"name":"ice_hockey_rink","displayName":"Ice Hockey Rink","basicCategory":"sport_or_fitness_facility","totalCount":0},{"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":10682,"totalCount":44054,"children":[{"name":"equestrian_facility","displayName":"Equestrian Facility","basicCategory":"sport_or_fitness_facility","count":33372,"totalCount":33372}]},{"name":"horseback_riding_service","displayName":"Horseback Riding Service","basicCategory":"sport_or_fitness_facility","count":8463,"totalCount":8463},{"name":"indoor_playcenter","displayName":"Indoor Playcenter","basicCategory":"sport_or_fitness_facility","count":1339,"totalCount":1339},{"name":"kiteboarding","displayName":"Kiteboarding","basicCategory":"sport_or_fitness_facility","count":1106,"totalCount":1106},{"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":2538,"totalCount":2538},{"name":"miniature_golf_course","displayName":"Miniature Golf Course","basicCategory":"sport_or_fitness_facility","count":5109,"totalCount":5109},{"name":"paddleboarding_center","displayName":"Paddleboarding Center","basicCategory":"sport_or_fitness_facility","count":1029,"totalCount":1029},{"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":7072,"totalCount":7072},{"name":"parasailing_ride_service","displayName":"Parasailing Ride Service","basicCategory":"sport_or_fitness_facility","count":49,"totalCount":49},{"name":"pool_billiards","displayName":"Pool Billiards","basicCategory":"sport_or_fitness_facility","count":17603,"totalCount":18687,"children":[{"name":"pool_hall","displayName":"Pool Hall","basicCategory":"sport_or_fitness_facility","count":1084,"totalCount":1084}]},{"name":"race_track","displayName":"Race Track","basicCategory":"sport_or_fitness_facility","count":18735,"totalCount":19528,"children":[{"name":"go_kart_track","displayName":"Go Kart Track","basicCategory":"sport_or_fitness_facility","count":417,"totalCount":417},{"name":"horse_racing_track","displayName":"Horse Racing Track","basicCategory":"sport_or_fitness_facility","count":376,"totalCount":376},{"name":"motor_race_track","displayName":"Motor Race Track","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"track_and_field_track","displayName":"Track and Field Track","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"velodrome","displayName":"Velodrome","basicCategory":"sport_or_fitness_facility","totalCount":0}]},{"name":"racing_experience","displayName":"Racing Experience","basicCategory":"sport_or_fitness_facility","count":58,"totalCount":58},{"name":"rock_climbing_gym","displayName":"Rock Climbing Gym","basicCategory":"sport_or_fitness_facility","count":372,"totalCount":372},{"name":"rock_climbing_instructor","displayName":"Rock Climbing Instructor","basicCategory":"sport_or_fitness_facility","count":18,"totalCount":18},{"name":"running_and_track","displayName":"Running and Track","basicCategory":"sport_or_fitness_facility","totalCount":0,"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":578,"totalCount":578},{"name":"shooting_range","displayName":"Shooting Range","basicCategory":"sport_or_fitness_facility","count":17991,"totalCount":21675,"children":[{"name":"archery_range","displayName":"Archery Range","basicCategory":"sport_or_fitness_facility","count":3684,"totalCount":3684}]},{"name":"skate_park","displayName":"Skate Park","isBasic":true,"count":18613,"totalCount":18613},{"name":"skating_rink","displayName":"Skating Rink","isBasic":true,"count":669,"totalCount":8813,"children":[{"name":"ice_skating_rink","displayName":"Ice Skating Rink","basicCategory":"skating_rink","count":5869,"totalCount":5869},{"name":"roller_skating_rink","displayName":"Roller Skating Rink","basicCategory":"skating_rink","count":2275,"totalCount":2275}]},{"name":"ski_and_snowboard_school","displayName":"Ski and Snowboard School","basicCategory":"sport_or_fitness_facility","count":2651,"totalCount":2651},{"name":"sky_diving","displayName":"Sky Diving","basicCategory":"sport_or_fitness_facility","count":1715,"totalCount":1715,"children":[{"name":"sky_diving_drop_zone","displayName":"Sky Diving Drop Zone","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"skydiving_center","displayName":"Skydiving Center","basicCategory":"sport_or_fitness_facility","totalCount":0}]},{"name":"snow_sport","displayName":"Snow Sport","basicCategory":"sport_or_fitness_facility","totalCount":21,"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","totalCount":0},{"name":"ski_chalet","displayName":"Ski Chalet","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"ski_resort_area","displayName":"Ski Resort Area","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"snowboarding_center","displayName":"Snowboarding Center","basicCategory":"sport_or_fitness_facility","count":1,"totalCount":1}]},{"name":"sport_court","displayName":"Sport Court","isBasic":true,"totalCount":48689,"children":[{"name":"badminton_court","displayName":"Badminton Court","basicCategory":"sport_court","count":4646,"totalCount":4646},{"name":"basketball_court","displayName":"Basketball Court","basicCategory":"sport_court","count":8395,"totalCount":8395},{"name":"beach_volleyball_court","displayName":"Beach Volleyball Court","basicCategory":"sport_court","count":27,"totalCount":27},{"name":"bocce_ball_court","displayName":"Bocce Ball Court","basicCategory":"sport_court","count":9,"totalCount":9},{"name":"handball_court","displayName":"Handball Court","basicCategory":"sport_court","count":1,"totalCount":1},{"name":"pickleball_court","displayName":"Pickleball Court","basicCategory":"sport_court","totalCount":0},{"name":"racquetball_court","displayName":"Racquetball Court","basicCategory":"sport_court","count":261,"totalCount":261},{"name":"squash_court","displayName":"Squash Court","basicCategory":"sport_court","count":1190,"totalCount":1190},{"name":"street_hockey_court","displayName":"Street Hockey Court","basicCategory":"sport_court","totalCount":0},{"name":"tennis_court","displayName":"Tennis Court","basicCategory":"sport_court","count":31657,"totalCount":31657},{"name":"volleyball_court","displayName":"Volleyball Court","basicCategory":"sport_court","count":2503,"totalCount":2503}]},{"name":"sport_field","displayName":"Sport Field","isBasic":true,"totalCount":67253,"children":[{"name":"airsoft_field","displayName":"Airsoft Field","basicCategory":"sport_field","count":78,"totalCount":78},{"name":"american_football_field","displayName":"American Football Field","basicCategory":"sport_field","count":86,"totalCount":86},{"name":"baseball_field","displayName":"Baseball Field","basicCategory":"sport_field","count":17055,"totalCount":17055},{"name":"disc_golf_course","displayName":"Disc Golf Course","basicCategory":"sport_field","count":3042,"totalCount":3042},{"name":"futsal_field","displayName":"Futsal Field","basicCategory":"sport_field","count":20,"totalCount":20},{"name":"hockey_field","displayName":"Hockey Field","basicCategory":"sport_field","count":1208,"totalCount":1208,"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":1485,"totalCount":1485},{"name":"soccer_field","displayName":"Soccer Field","basicCategory":"sport_field","count":44279,"totalCount":44279},{"name":"softball_field","displayName":"Softball Field","basicCategory":"sport_field","totalCount":0}]},{"name":"sports_complex","displayName":"Sports Complex","isBasic":true,"totalCount":0},{"name":"surfing_school","displayName":"Surfing School","basicCategory":"sport_or_fitness_facility","count":226,"totalCount":226},{"name":"swimming_pool","displayName":"Swimming Pool","isBasic":true,"count":64630,"totalCount":76366,"children":[{"name":"swimming_instructor","displayName":"Swimming Instructor","basicCategory":"swimming_pool","count":11736,"totalCount":11736}]},{"name":"trampoline_park","displayName":"Trampoline Park","basicCategory":"sport_or_fitness_facility","count":67,"totalCount":67},{"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","totalCount":18359,"children":[{"name":"boating_place","displayName":"Boating Place","basicCategory":"sport_or_fitness_facility","count":854,"totalCount":854},{"name":"fishing","displayName":"Fishing","basicCategory":"sport_or_fitness_facility","totalCount":11154,"children":[{"name":"fishing_area","displayName":"Fishing Area","basicCategory":"sport_or_fitness_facility","totalCount":0},{"name":"fishing_charter","displayName":"Fishing Charter","basicCategory":"sport_or_fitness_facility","count":11154,"totalCount":11154}]},{"name":"rafting_kayaking_area","displayName":"Rafting Kayaking Area","basicCategory":"sport_or_fitness_facility","count":669,"totalCount":669},{"name":"sailing_area","displayName":"Sailing Area","basicCategory":"sport_or_fitness_facility","count":207,"totalCount":207},{"name":"snorkeling","displayName":"Snorkeling","basicCategory":"sport_or_fitness_facility","count":338,"totalCount":338},{"name":"surfing","displayName":"Surfing","basicCategory":"sport_or_fitness_facility","count":5131,"totalCount":5137,"children":[{"name":"windsurfing_center","displayName":"Windsurfing Center","basicCategory":"sport_or_fitness_facility","count":6,"totalCount":6}]}]},{"name":"wildlife_hunting_range","displayName":"Wildlife Hunting Range","basicCategory":"sport_or_fitness_facility","count":305,"totalCount":305}]},{"name":"sport_or_recreation_club","displayName":"Sport or Recreation Club","isBasic":true,"count":10279,"totalCount":165751,"children":[{"name":"beach_volleyball_club","displayName":"Beach Volleyball Club","basicCategory":"sport_or_recreation_club","count":10,"totalCount":10},{"name":"curling_club","displayName":"Curling Club","basicCategory":"sport_or_recreation_club","totalCount":0},{"name":"fencing_club","displayName":"Fencing Club","basicCategory":"sport_or_recreation_club","count":2082,"totalCount":2082},{"name":"fishing_club","displayName":"Fishing Club","basicCategory":"sport_or_recreation_club","count":12457,"totalCount":12457},{"name":"football_club","displayName":"Football Club","basicCategory":"sport_or_recreation_club","count":326,"totalCount":326},{"name":"go_kart_club","displayName":"Go Kart Club","basicCategory":"sport_or_recreation_club","count":3989,"totalCount":3989},{"name":"golf_club","displayName":"Golf Club","basicCategory":"sport_or_recreation_club","count":1925,"totalCount":2152,"children":[{"name":"indoor_golf_center","displayName":"Indoor Golf Center","basicCategory":"sport_or_recreation_club","count":227,"totalCount":227}]},{"name":"gymnastics_club","displayName":"Gymnastics Club","basicCategory":"sport_or_recreation_club","count":88,"totalCount":88},{"name":"hockey_club","displayName":"Hockey Club","basicCategory":"sport_or_recreation_club","totalCount":0,"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","totalCount":0},{"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":78,"totalCount":78},{"name":"martial_arts_club","displayName":"Martial Arts Club","basicCategory":"sport_or_recreation_club","count":128101,"totalCount":131542,"children":[{"name":"brazilian_jiu_jitsu_club","displayName":"Brazilian Jiu Jitsu Club","basicCategory":"sport_or_recreation_club","count":307,"totalCount":307},{"name":"chinese_martial_arts_club","displayName":"Chinese Martial Arts Club","basicCategory":"sport_or_recreation_club","count":186,"totalCount":186},{"name":"karate_club","displayName":"Karate Club","basicCategory":"sport_or_recreation_club","count":1164,"totalCount":1164},{"name":"kickboxing_club","displayName":"Kickboxing Club","basicCategory":"sport_or_recreation_club","count":951,"totalCount":951},{"name":"muay_thai_club","displayName":"Muay Thai Club","basicCategory":"sport_or_recreation_club","count":116,"totalCount":116},{"name":"taekwondo_club","displayName":"Taekwondo Club","basicCategory":"sport_or_recreation_club","count":717,"totalCount":717}]},{"name":"naturist_club","displayName":"Naturist Club","basicCategory":"sport_or_recreation_club","count":14,"totalCount":14},{"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","totalCount":0},{"name":"rowing_club","displayName":"Rowing Club","basicCategory":"sport_or_recreation_club","count":64,"totalCount":64},{"name":"running_and_track_club","displayName":"Running and Track Club","basicCategory":"sport_or_recreation_club","totalCount":0,"children":[{"name":"running_club","displayName":"Running Club","basicCategory":"sport_or_recreation_club","totalCount":0},{"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":591,"totalCount":591},{"name":"soccer_club","displayName":"Soccer Club","basicCategory":"sport_or_recreation_club","count":1671,"totalCount":1671},{"name":"surf_lifesaving_club","displayName":"Surf Lifesaving Club","basicCategory":"sport_or_recreation_club","count":7,"totalCount":7},{"name":"table_tennis_club","displayName":"Table Tennis Club","basicCategory":"sport_or_recreation_club","count":75,"totalCount":75},{"name":"volleyball_club","displayName":"Volleyball Club","basicCategory":"sport_or_recreation_club","count":306,"totalCount":306}]},{"name":"sport_team","displayName":"Sport Team","isBasic":true,"totalCount":37847,"children":[{"name":"amateur_sport_team","displayName":"Amateur Sport Team","basicCategory":"sport_team","count":30168,"totalCount":30168},{"name":"esports_team","displayName":"Esports Team","basicCategory":"sport_team","count":558,"totalCount":558},{"name":"professional_sport_team","displayName":"Professional Sport Team","basicCategory":"sport_team","count":5869,"totalCount":5869},{"name":"school_sport_team","displayName":"School Sport Team","basicCategory":"sport_team","count":1252,"totalCount":1252}]}]},{"name":"travel_and_transportation","displayName":"Travel and Transportation","isBasic":true,"count":207498,"totalCount":3866782,"children":[{"name":"air_transport_facility_or_service","displayName":"Air Transport Facility or Service","isBasic":true,"totalCount":82159,"children":[{"name":"aircraft_parts_and_supplies","displayName":"Aircraft Parts and Supplies","basicCategory":"air_transport_facility_or_service","count":1379,"totalCount":1901,"children":[{"name":"avionics_shop","displayName":"Avionics Shop","basicCategory":"air_transport_facility_or_service","count":522,"totalCount":522}]},{"name":"airline","displayName":"Airline","basicCategory":"air_transport_facility_or_service","count":12094,"totalCount":12094},{"name":"airline_ticket_agency","displayName":"Airline Ticket Agency","basicCategory":"air_transport_facility_or_service","count":156,"totalCount":156},{"name":"airport","displayName":"Airport","isBasic":true,"count":53917,"totalCount":62448,"children":[{"name":"airport_terminal","displayName":"Airport Terminal","basicCategory":"airport","count":6149,"totalCount":6149},{"name":"balloon_port","displayName":"Balloon Port","basicCategory":"airport","count":104,"totalCount":104},{"name":"glider_port","displayName":"Glider Port","basicCategory":"airport","count":9,"totalCount":9},{"name":"heliport","displayName":"Heliport","basicCategory":"airport","count":1951,"totalCount":1951},{"name":"seaplane_base","displayName":"Seaplane Base","basicCategory":"airport","count":317,"totalCount":317},{"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":5301,"totalCount":5301},{"name":"private_jet_charter","displayName":"Private Jet Charter","basicCategory":"air_transport_facility_or_service","count":259,"totalCount":259}]},{"name":"fueling_station","displayName":"Fueling Station","isBasic":true,"totalCount":632774,"children":[{"name":"ev_charging_station","displayName":"EV Charging Station","isBasic":true,"count":49715,"totalCount":49715},{"name":"gas_station","displayName":"Gas Station","isBasic":true,"count":577515,"totalCount":583059,"children":[{"name":"fuel_dock","displayName":"Fuel Dock","basicCategory":"gas_station","count":26,"totalCount":26},{"name":"truck_gas_station","displayName":"Truck Gas Station","basicCategory":"gas_station","count":5518,"totalCount":5518}]}]},{"name":"ground_transport_facility_or_service","displayName":"Ground Transport Facility or Service","isBasic":true,"totalCount":248208,"children":[{"name":"bikes_and_bike_service","displayName":"Bikes and Bike Service","basicCategory":"ground_transport_facility_or_service","totalCount":47,"children":[{"name":"bike_sharing_location","displayName":"Bike Sharing Location","basicCategory":"ground_transport_facility_or_service","count":47,"totalCount":47}]},{"name":"public_transit_facility_or_service","displayName":"Public Transit Facility or Service","isBasic":true,"count":7875,"totalCount":80188,"children":[{"name":"bus_station","displayName":"Bus Station","basicCategory":"public_transit_facility_or_service","count":67230,"totalCount":67230},{"name":"bus_ticket_agency","displayName":"Bus Ticket Agency","basicCategory":"public_transit_facility_or_service","count":144,"totalCount":144},{"name":"cable_car_service","displayName":"Cable Car Service","basicCategory":"public_transit_facility_or_service","count":344,"totalCount":344},{"name":"coach_bus","displayName":"Coach Bus","basicCategory":"public_transit_facility_or_service","count":349,"totalCount":349},{"name":"light_rail_and_subway_station","displayName":"Light Rail and Subway Station","basicCategory":"public_transit_facility_or_service","count":1465,"totalCount":1465},{"name":"metro_station","displayName":"Metro Station","basicCategory":"public_transit_facility_or_service","count":2781,"totalCount":2781}]},{"name":"rail_facility_or_service","displayName":"Rail Facility or Service","isBasic":true,"count":221,"totalCount":99537,"children":[{"name":"railway_ticket_agent","displayName":"Railway Ticket Agent","basicCategory":"rail_facility_or_service","count":12,"totalCount":12},{"name":"train","displayName":"Train","basicCategory":"rail_facility_or_service","count":1271,"totalCount":1271},{"name":"train_station","displayName":"Train Station","isBasic":true,"count":98033,"totalCount":98033}]},{"name":"road_structures_and_service","displayName":"Road Structures and Service","basicCategory":"ground_transport_facility_or_service","count":102,"totalCount":1240,"children":[{"name":"rest_stop","displayName":"Rest Stop","isBasic":true,"count":549,"totalCount":549},{"name":"toll_station","displayName":"Toll Station","isBasic":true,"count":65,"totalCount":65},{"name":"truck_stop","displayName":"Truck Stop","basicCategory":"ground_transport_facility_or_service","count":524,"totalCount":524}]},{"name":"taxi_or_ride_share_service","displayName":"Taxi or Ride Share Service","isBasic":true,"totalCount":67196,"children":[{"name":"car_sharing","displayName":"Car Sharing","basicCategory":"taxi_or_ride_share_service","count":2974,"totalCount":2974},{"name":"limo_service","displayName":"Limo Service","basicCategory":"taxi_or_ride_share_service","count":13556,"totalCount":13556},{"name":"pedicab_service","displayName":"Pedicab Service","basicCategory":"taxi_or_ride_share_service","count":4,"totalCount":4},{"name":"ride_share_service","displayName":"Ride Share Service","basicCategory":"taxi_or_ride_share_service","count":603,"totalCount":603},{"name":"taxi_service","displayName":"Taxi Service","basicCategory":"taxi_or_ride_share_service","count":49666,"totalCount":49719,"children":[{"name":"taxi_stand","displayName":"Taxi Stand","basicCategory":"taxi_or_ride_share_service","count":53,"totalCount":53}]},{"name":"town_car_service","displayName":"Town Car Service","basicCategory":"taxi_or_ride_share_service","count":340,"totalCount":340}]}]},{"name":"parking","displayName":"Parking","isBasic":true,"count":143540,"totalCount":143738,"children":[{"name":"bike_parking","displayName":"Bike Parking","basicCategory":"parking","count":28,"totalCount":28},{"name":"motorcycle_parking","displayName":"Motorcycle Parking","basicCategory":"parking","count":6,"totalCount":6},{"name":"park_and_ride","displayName":"Park and Ride","isBasic":true,"count":164,"totalCount":164},{"name":"parking_garage","displayName":"Parking Garage","isBasic":true,"totalCount":0},{"name":"parking_lot","displayName":"Parking Lot","isBasic":true,"totalCount":0}]},{"name":"transport_interchange","displayName":"Transport Interchange","basicCategory":"travel_and_transportation","count":43,"totalCount":43},{"name":"travel_service","displayName":"Travel Service","isBasic":true,"count":395616,"totalCount":631873,"children":[{"name":"agritourism","displayName":"Agritourism","basicCategory":"travel_service","count":598,"totalCount":598},{"name":"luggage_storage","displayName":"Luggage Storage","basicCategory":"travel_service","count":4435,"totalCount":4435},{"name":"passport_and_visa_service","displayName":"Passport and Visa Service","basicCategory":"travel_service","count":18915,"totalCount":19075,"children":[{"name":"visa_agent","displayName":"Visa Agent","basicCategory":"travel_service","count":160,"totalCount":160}]},{"name":"tour_operator","displayName":"Tour Operator","basicCategory":"travel_service","count":124213,"totalCount":155880,"children":[{"name":"aerial_tour","displayName":"Aerial Tour","basicCategory":"travel_service","count":115,"totalCount":115},{"name":"architectural_tour","displayName":"Architectural Tour","basicCategory":"travel_service","count":150,"totalCount":150},{"name":"art_tour","displayName":"Art Tour","basicCategory":"travel_service","count":35,"totalCount":35},{"name":"beer_tour","displayName":"Beer Tour","basicCategory":"travel_service","count":46,"totalCount":46},{"name":"bike_tour","displayName":"Bike Tour","basicCategory":"travel_service","count":102,"totalCount":102},{"name":"boat_tour","displayName":"Boat Tour","basicCategory":"travel_service","count":11210,"totalCount":11210},{"name":"bus_tour","displayName":"Bus Tour","basicCategory":"travel_service","count":3449,"totalCount":3449},{"name":"cannabis_tour","displayName":"Cannabis Tour","basicCategory":"travel_service","count":12,"totalCount":12},{"name":"food_tour","displayName":"Food Tour","basicCategory":"travel_service","count":1211,"totalCount":1211},{"name":"historical_tour","displayName":"Historical Tour","basicCategory":"travel_service","count":1311,"totalCount":1311},{"name":"hot_air_balloons_tour","displayName":"Hot Air Balloons Tour","basicCategory":"travel_service","count":1146,"totalCount":1146},{"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":12458,"totalCount":12458},{"name":"walking_tour","displayName":"Walking Tour","basicCategory":"travel_service","count":145,"totalCount":145},{"name":"whale_watching_tour","displayName":"Whale Watching Tour","basicCategory":"travel_service","count":81,"totalCount":81},{"name":"wine_tour","displayName":"Wine Tour","basicCategory":"travel_service","count":189,"totalCount":189}]},{"name":"travel_agent","displayName":"Travel Agent","basicCategory":"travel_service","count":45543,"totalCount":45543},{"name":"vacation_rental_agent","displayName":"Vacation Rental Agent","basicCategory":"travel_service","count":4084,"totalCount":4084},{"name":"visitor_center","displayName":"Visitor Center","basicCategory":"travel_service","count":6642,"totalCount":6642}]},{"name":"vehicle_service","displayName":"Vehicle Service","isBasic":true,"totalCount":1920118,"children":[{"name":"aircraft_service","displayName":"Aircraft Service","basicCategory":"vehicle_service","count":2762,"totalCount":2762},{"name":"automotive_service","displayName":"Automotive Service","isBasic":true,"count":172801,"totalCount":1801247,"children":[{"name":"auto_body_shop","displayName":"Auto Body Shop","basicCategory":"automotive_service","count":89488,"totalCount":89488},{"name":"auto_customization","displayName":"Auto Customization","basicCategory":"automotive_service","count":32666,"totalCount":32666},{"name":"auto_detailing","displayName":"Auto Detailing","basicCategory":"automotive_service","count":129597,"totalCount":129597},{"name":"auto_glass_service","displayName":"Auto Glass Service","basicCategory":"automotive_service","count":33179,"totalCount":54728,"children":[{"name":"car_window_tinting","displayName":"Car Window Tinting","basicCategory":"automotive_service","count":17537,"totalCount":17537},{"name":"windshield_installation_and_repair","displayName":"Windshield Installation and Repair","basicCategory":"automotive_service","count":4012,"totalCount":4012}]},{"name":"auto_restoration_service","displayName":"Auto Restoration Service","basicCategory":"automotive_service","count":16433,"totalCount":16433},{"name":"auto_security","displayName":"Auto Security","basicCategory":"automotive_service","count":1345,"totalCount":1345},{"name":"auto_upholstery","displayName":"Auto Upholstery","basicCategory":"automotive_service","count":2465,"totalCount":2465},{"name":"automobile_registration_service","displayName":"Automobile Registration Service","basicCategory":"automotive_service","count":4426,"totalCount":4426},{"name":"automotive_consultant","displayName":"Automotive Consultant","basicCategory":"automotive_service","count":9504,"totalCount":9504},{"name":"automotive_repair","displayName":"Automotive Repair","basicCategory":"automotive_service","count":878312,"totalCount":1035623,"children":[{"name":"auto_electrical_repair","displayName":"Auto Electrical Repair","basicCategory":"automotive_service","count":8949,"totalCount":8949},{"name":"brake_service_and_repair","displayName":"Brake Service and Repair","basicCategory":"automotive_service","count":7168,"totalCount":7168},{"name":"diy_auto_shop","displayName":"DIY Auto Shop","basicCategory":"automotive_service","count":25,"totalCount":25},{"name":"engine_repair_service","displayName":"Engine Repair Service","basicCategory":"automotive_service","count":6785,"totalCount":6785},{"name":"exhaust_and_muffler_repair","displayName":"Exhaust and Muffler Repair","basicCategory":"automotive_service","count":359,"totalCount":359},{"name":"hybrid_car_repair","displayName":"Hybrid Car Repair","basicCategory":"automotive_service","count":102,"totalCount":102},{"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":125483,"totalCount":125483},{"name":"trailer_repair","displayName":"Trailer Repair","basicCategory":"automotive_service","count":806,"totalCount":806},{"name":"transmission_repair","displayName":"Transmission Repair","basicCategory":"automotive_service","count":4318,"totalCount":4318},{"name":"wheel_and_rim_repair","displayName":"Wheel and Rim Repair","basicCategory":"automotive_service","count":3265,"totalCount":3265}]},{"name":"automotive_wheel_polishing_service","displayName":"Automotive Wheel Polishing Service","basicCategory":"automotive_service","count":644,"totalCount":644},{"name":"car_buyer","displayName":"Car Buyer","basicCategory":"automotive_service","count":754,"totalCount":754},{"name":"car_inspection","displayName":"Car Inspection","basicCategory":"automotive_service","count":4609,"totalCount":4609},{"name":"car_stereo_installation","displayName":"Car Stereo Installation","basicCategory":"automotive_service","count":631,"totalCount":631},{"name":"car_wash","displayName":"Car Wash","basicCategory":"automotive_service","count":123805,"totalCount":123805},{"name":"emergency_roadside_service","displayName":"Emergency Roadside Service","basicCategory":"automotive_service","count":2341,"totalCount":2341},{"name":"emissions_inspection","displayName":"Emissions Inspection","basicCategory":"automotive_service","count":8008,"totalCount":8008},{"name":"oil_change_station","displayName":"Oil Change Station","basicCategory":"automotive_service","count":19505,"totalCount":19505},{"name":"tire_shop","displayName":"Tire Shop","basicCategory":"automotive_service","count":29938,"totalCount":29938},{"name":"towing_service","displayName":"Towing Service","basicCategory":"automotive_service","count":38606,"totalCount":38606},{"name":"truck_repair","displayName":"Truck Repair","basicCategory":"automotive_service","count":22657,"totalCount":22657},{"name":"vehicle_wrap","displayName":"Vehicle Wrap","basicCategory":"automotive_service","count":673,"totalCount":673}]},{"name":"boat_service","displayName":"Boat Service","basicCategory":"vehicle_service","count":14451,"totalCount":14451,"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":94976,"children":[{"name":"motorcycle_repair","displayName":"Motorcycle Repair","basicCategory":"vehicle_service","count":94976,"totalCount":94976}]},{"name":"recreation_vehicle_service","displayName":"Recreation Vehicle Service","basicCategory":"vehicle_service","totalCount":4720,"children":[{"name":"recreation_vehicle_repair","displayName":"Recreation Vehicle Repair","basicCategory":"vehicle_service","count":4720,"totalCount":4720}]},{"name":"roadside_assistance","displayName":"Roadside Assistance","basicCategory":"vehicle_service","count":1388,"totalCount":1962,"children":[{"name":"mobile_dent_repair","displayName":"Mobile Dent Repair","basicCategory":"vehicle_service","count":574,"totalCount":574}]}]},{"name":"water_transport_facility_or_service","displayName":"Water Transport Facility or Service","isBasic":true,"totalCount":371,"children":[{"name":"ferry_service","displayName":"Ferry Service","isBasic":true,"count":369,"totalCount":369},{"name":"water_taxi_service","displayName":"Water Taxi Service","isBasic":true,"count":2,"totalCount":2}]}]}]} diff --git a/static/taxonomy/2026-09-16.0/taxonomy.json b/static/taxonomy/2026-09-16.0/taxonomy.json deleted file mode 100644 index 1fa852d60..000000000 --- a/static/taxonomy/2026-09-16.0/taxonomy.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"2026-09-16.0","schemaVersion":"v1.19.0","releaseDate":"2026-09-16","generatedAt":"2026-09-03","source":{"taxonomy":"overture_taxonomy.json","basicCategories":"overture_basic_category.json"},"stats":{"categories":2302,"basicCategories":298,"rootGroups":13,"maxDepth":5,"totalPlaces":null},"tree":[{"name":"arts_and_entertainment","displayName":"Arts and Entertainment","isBasic":true,"children":[{"name":"amusement_attraction","displayName":"Amusement Attraction","isBasic":true,"children":[{"name":"amusement_park","displayName":"Amusement Park","isBasic":true},{"name":"carnival_venue","displayName":"Carnival Venue","basicCategory":"amusement_attraction"},{"name":"carousel","displayName":"Carousel","basicCategory":"amusement_attraction"},{"name":"circus_venue","displayName":"Circus Venue","basicCategory":"amusement_attraction"},{"name":"haunted_house","displayName":"Haunted House","basicCategory":"amusement_attraction"}]},{"name":"animal_attraction","displayName":"Animal Attraction","isBasic":true,"children":[{"name":"aquarium","displayName":"Aquarium","isBasic":true},{"name":"wildlife_sanctuary","displayName":"Wildlife Sanctuary","basicCategory":"animal_attraction"},{"name":"zoo","displayName":"Zoo","isBasic":true,"children":[{"name":"petting_zoo","displayName":"Petting Zoo","basicCategory":"zoo"},{"name":"zoo_exhibit","displayName":"Zoo Exhibit","basicCategory":"zoo"}]}]},{"name":"arts_and_crafts_space","displayName":"Arts and Crafts Space","isBasic":true,"children":[{"name":"art_gallery","displayName":"Art Gallery","isBasic":true},{"name":"artist_studio","displayName":"Artist Studio","basicCategory":"arts_and_crafts_space"},{"name":"glass_blowing_venue","displayName":"Glass Blowing Venue","basicCategory":"arts_and_crafts_space"},{"name":"paint_and_sip_venue","displayName":"Paint and Sip Venue","basicCategory":"arts_and_crafts_space"},{"name":"paint_your_own_pottery_venue","displayName":"Paint Your Own Pottery Venue","basicCategory":"arts_and_crafts_space"},{"name":"sculpture_park","displayName":"Sculpture Park","basicCategory":"arts_and_crafts_space"},{"name":"sculpture_statue","displayName":"Sculpture Statue","isBasic":true},{"name":"street_art","displayName":"Street Art","isBasic":true}]},{"name":"event_venue","displayName":"Event Venue","isBasic":true,"children":[{"name":"auditorium","displayName":"Auditorium","basicCategory":"event_venue"},{"name":"exhibition_and_trade_fair_venue","displayName":"Exhibition and Trade Fair Venue","basicCategory":"event_venue"}]},{"name":"festival_venue","displayName":"Festival Venue","isBasic":true,"children":[{"name":"fairgrounds","displayName":"Fairgrounds","isBasic":true},{"name":"film_festival_venue","displayName":"Film Festival Venue","basicCategory":"festival_venue"},{"name":"music_festival_venue","displayName":"Music Festival Venue","basicCategory":"festival_venue"}]},{"name":"gaming_venue","displayName":"Gaming Venue","isBasic":true,"children":[{"name":"arcade","displayName":"Arcade","isBasic":true},{"name":"betting_center","displayName":"Betting Center","basicCategory":"gaming_venue"},{"name":"bingo_hall","displayName":"Bingo Hall","basicCategory":"gaming_venue"},{"name":"casino","displayName":"Casino","isBasic":true},{"name":"escape_room","displayName":"Escape Room","basicCategory":"gaming_venue"},{"name":"lottery_vendor","displayName":"Lottery Vendor","basicCategory":"gaming_venue"},{"name":"scavenger_hunt","displayName":"Scavenger Hunt","basicCategory":"gaming_venue"}]},{"name":"movie_theater","displayName":"Movie Theater","isBasic":true,"children":[{"name":"drive_in_theater","displayName":"Drive-In Theater","basicCategory":"movie_theater"},{"name":"outdoor_movie_space","displayName":"Outdoor Movie Space","basicCategory":"movie_theater"}]},{"name":"museum","displayName":"Museum","isBasic":true,"children":[{"name":"art_museum","displayName":"Art Museum","basicCategory":"museum","children":[{"name":"asian_art_museum","displayName":"Asian Art Museum","basicCategory":"museum"},{"name":"cartooning_museum","displayName":"Cartooning Museum","basicCategory":"museum"},{"name":"contemporary_art_museum","displayName":"Contemporary Art Museum","basicCategory":"museum"},{"name":"costume_museum","displayName":"Costume Museum","basicCategory":"museum"},{"name":"decorative_arts_museum","displayName":"Decorative Arts Museum","basicCategory":"museum"},{"name":"design_museum","displayName":"Design Museum","basicCategory":"museum"},{"name":"modern_art_museum","displayName":"Modern Art Museum","basicCategory":"museum"},{"name":"photography_museum","displayName":"Photography Museum","basicCategory":"museum"},{"name":"textile_museum","displayName":"Textile Museum","basicCategory":"museum"}]},{"name":"aviation_museum","displayName":"Aviation Museum","basicCategory":"museum"},{"name":"childrens_museum","displayName":"Children's Museum","basicCategory":"museum"},{"name":"history_museum","displayName":"History Museum","basicCategory":"museum","children":[{"name":"civilization_museum","displayName":"Civilization Museum","basicCategory":"museum"},{"name":"community_museum","displayName":"Community Museum","basicCategory":"museum"}]},{"name":"military_museum","displayName":"Military Museum","basicCategory":"museum"},{"name":"national_museum","displayName":"National Museum","basicCategory":"museum"},{"name":"science_museum","displayName":"Science Museum","basicCategory":"museum","children":[{"name":"computer_museum","displayName":"Computer Museum","basicCategory":"museum"}]},{"name":"sports_museum","displayName":"Sports Museum","basicCategory":"museum"},{"name":"state_museum","displayName":"State Museum","basicCategory":"museum"}]},{"name":"nightlife_venue","displayName":"Nightlife Venue","isBasic":true,"children":[{"name":"adult_entertainment_venue","displayName":"Adult Entertainment Venue","isBasic":true,"children":[{"name":"erotic_massage_venue","displayName":"Erotic Massage Venue","basicCategory":"adult_entertainment_venue"},{"name":"strip_club","displayName":"Strip Club","basicCategory":"adult_entertainment_venue"}]},{"name":"bar_crawl","displayName":"Bar Crawl","basicCategory":"nightlife_venue"},{"name":"club_crawl","displayName":"Club Crawl","basicCategory":"nightlife_venue"},{"name":"dance_club","displayName":"Dance Club","isBasic":true,"children":[{"name":"salsa_club","displayName":"Salsa Club","basicCategory":"dance_club"}]}]},{"name":"performing_arts_venue","displayName":"Performing Arts Venue","isBasic":true,"children":[{"name":"amphitheater","displayName":"Amphitheater","basicCategory":"performing_arts_venue"},{"name":"cabaret","displayName":"Cabaret","basicCategory":"performing_arts_venue"},{"name":"comedy_club","displayName":"Comedy Club","isBasic":true},{"name":"music_venue","displayName":"Music Venue","isBasic":true,"children":[{"name":"band_orchestra_symphony","displayName":"Band Orchestra Symphony","basicCategory":"music_venue"},{"name":"choir","displayName":"Choir","basicCategory":"music_venue"},{"name":"jazz_and_blues_venue","displayName":"Jazz and Blues Venue","basicCategory":"music_venue"},{"name":"karaoke_venue","displayName":"Karaoke Venue","basicCategory":"music_venue"},{"name":"opera_and_ballet","displayName":"Opera and Ballet","basicCategory":"music_venue"}]},{"name":"theatre_venue","displayName":"Theatre Venue","isBasic":true,"children":[{"name":"dinner_theater","displayName":"Dinner Theater","basicCategory":"theatre_venue"}]}]},{"name":"rural_attraction","displayName":"Rural Attraction","isBasic":true,"children":[{"name":"attraction_farm","displayName":"Attraction Farm","basicCategory":"rural_attraction"},{"name":"corn_maze","displayName":"Corn Maze","basicCategory":"rural_attraction"},{"name":"country_dance_hall","displayName":"Country Dance Hall","basicCategory":"rural_attraction"},{"name":"pumpkin_patch","displayName":"Pumpkin Patch","basicCategory":"rural_attraction"},{"name":"rodeo","displayName":"Rodeo","isBasic":true}]},{"name":"science_attraction","displayName":"Science Attraction","isBasic":true,"children":[{"name":"makerspace","displayName":"Makerspace","isBasic":true},{"name":"observatory","displayName":"Observatory","basicCategory":"science_attraction"},{"name":"planetarium","displayName":"Planetarium","isBasic":true},{"name":"virtual_reality_center","displayName":"Virtual Reality Center","basicCategory":"science_attraction","children":[{"name":"vr_cafe","displayName":"VR Cafe","basicCategory":"science_attraction"}]}]},{"name":"social_club","displayName":"Social Club","isBasic":true,"children":[{"name":"country_club","displayName":"Country Club","isBasic":true},{"name":"fraternal_organization","displayName":"Fraternal Organization","basicCategory":"social_club"},{"name":"veterans_organization","displayName":"Veterans Organization","basicCategory":"social_club"}]},{"name":"spiritual_advising","displayName":"Spiritual Advising","isBasic":true,"children":[{"name":"astrological_advising","displayName":"Astrological Advising","isBasic":true},{"name":"fortune_telling","displayName":"Fortune Telling","basicCategory":"spiritual_advising"},{"name":"psychic_advising","displayName":"Psychic Advising","isBasic":true}]},{"name":"stadium_arena","displayName":"Stadium Arena","isBasic":true,"children":[{"name":"arena","displayName":"Arena","basicCategory":"stadium_arena"},{"name":"stadium","displayName":"Stadium","basicCategory":"stadium_arena","children":[{"name":"baseball_stadium","displayName":"Baseball Stadium","basicCategory":"stadium_arena"},{"name":"basketball_stadium","displayName":"Basketball Stadium","basicCategory":"stadium_arena"},{"name":"cricket_ground","displayName":"Cricket Ground","basicCategory":"stadium_arena"},{"name":"football_stadium","displayName":"Football Stadium","basicCategory":"stadium_arena"},{"name":"hockey_arena","displayName":"Hockey Arena","basicCategory":"stadium_arena"},{"name":"rugby_stadium","displayName":"Rugby Stadium","basicCategory":"stadium_arena"},{"name":"soccer_stadium","displayName":"Soccer Stadium","basicCategory":"stadium_arena"},{"name":"tennis_stadium","displayName":"Tennis Stadium","basicCategory":"stadium_arena"},{"name":"track_stadium","displayName":"Track Stadium","basicCategory":"stadium_arena"}]}]},{"name":"ticket_office_or_booth","displayName":"Ticket Office or Booth","isBasic":true}]},{"name":"community_and_government","displayName":"Community and Government","isBasic":true,"children":[{"name":"civic_organization","displayName":"Civic Organization","isBasic":true,"children":[{"name":"charity_organization","displayName":"Charity Organization","basicCategory":"civic_organization"},{"name":"civic_center","displayName":"Civic Center","isBasic":true},{"name":"labor_union","displayName":"Labor Union","isBasic":true},{"name":"non_governmental_association","displayName":"Non Governmental Association","basicCategory":"civic_organization"},{"name":"political_organization","displayName":"Political Organization","isBasic":true,"children":[{"name":"political_party_office","displayName":"Political Party Office","basicCategory":"political_organization"}]}]},{"name":"government_office","displayName":"Government Office","isBasic":true,"children":[{"name":"chambers_of_commerce","displayName":"Chambers of Commerce","basicCategory":"government_office"},{"name":"courthouse","displayName":"Courthouse","isBasic":true},{"name":"embassy","displayName":"Embassy","isBasic":true},{"name":"government_department","displayName":"Government Department","isBasic":true,"children":[{"name":"department_of_motor_vehicles","displayName":"Department of Motor Vehicles","basicCategory":"government_department"},{"name":"department_of_social_service","displayName":"Department of Social Service","basicCategory":"government_department"},{"name":"health_department","displayName":"Health Department","basicCategory":"government_department"}]},{"name":"immigration_and_naturalization_office","displayName":"Immigration and Naturalization Office","basicCategory":"government_office"},{"name":"national_security_service","displayName":"National Security Service","basicCategory":"government_office"},{"name":"office_of_vital_records","displayName":"Office of Vital Records","basicCategory":"government_office"},{"name":"pension_office","displayName":"Pension Office","basicCategory":"government_office"},{"name":"registry_office","displayName":"Registry Office","basicCategory":"government_office"},{"name":"social_security_service","displayName":"Social Security Service","basicCategory":"government_office"},{"name":"tax_office","displayName":"Tax Office","basicCategory":"government_office"},{"name":"town_hall","displayName":"Town Hall","basicCategory":"government_office"},{"name":"unemployment_office","displayName":"Unemployment Office","basicCategory":"government_office"}]},{"name":"military_site","displayName":"Military Site","isBasic":true,"children":[{"name":"military_base","displayName":"Military Base","isBasic":true},{"name":"military_office","displayName":"Military Office","isBasic":true}]},{"name":"public_facility","displayName":"Public Facility","isBasic":true,"children":[{"name":"public_fountain","displayName":"Public Fountain","isBasic":true,"children":[{"name":"drinking_fountain","displayName":"Drinking Fountain","basicCategory":"public_fountain"}]},{"name":"public_pathway","displayName":"Public Pathway","isBasic":true},{"name":"public_phone","displayName":"Public Phone","basicCategory":"public_facility"},{"name":"public_plaza","displayName":"Public Plaza","isBasic":true},{"name":"public_restroom","displayName":"Public Restroom","isBasic":true}]},{"name":"public_safety_service","displayName":"Public Safety Service","isBasic":true,"children":[{"name":"fire_station","displayName":"Fire Station","isBasic":true},{"name":"jail_or_prison","displayName":"Jail or Prison","isBasic":true,"children":[{"name":"juvenile_detention_center","displayName":"Juvenile Detention Center","basicCategory":"jail_or_prison"}]},{"name":"police_station","displayName":"Police Station","isBasic":true}]},{"name":"public_utility","displayName":"Public Utility","isBasic":true,"children":[{"name":"electric_utility_provider","displayName":"Electric Utility Provider","isBasic":true},{"name":"garbage_collection_service","displayName":"Garbage Collection Service","basicCategory":"public_utility"},{"name":"natural_gas_utility_provider","displayName":"Natural Gas Utility Provider","isBasic":true},{"name":"septic_service","displayName":"Septic Service","basicCategory":"public_utility"},{"name":"water_utility_provider","displayName":"Water Utility Provider","isBasic":true}]},{"name":"social_or_community_service","displayName":"Social or Community Service","isBasic":true,"children":[{"name":"child_protection_service","displayName":"Child Protection Service","basicCategory":"social_or_community_service"},{"name":"community_center","displayName":"Community Center","isBasic":true},{"name":"disability_services_and_support_organization","displayName":"Disability Services and Support Organization","basicCategory":"social_or_community_service"},{"name":"food_bank","displayName":"Food Bank","isBasic":true},{"name":"foster_care_service","displayName":"Foster Care Service","basicCategory":"social_or_community_service"},{"name":"gay_and_lesbian_services_organization","displayName":"Gay and Lesbian Services Organization","basicCategory":"social_or_community_service"},{"name":"homeless_shelter","displayName":"Homeless Shelter","basicCategory":"social_or_community_service"},{"name":"housing_authority","displayName":"Housing Authority","basicCategory":"social_or_community_service"},{"name":"scout_hall","displayName":"Scout Hall","basicCategory":"social_or_community_service"},{"name":"senior_citizen_service","displayName":"Senior Citizen Service","basicCategory":"social_or_community_service"},{"name":"social_and_human_service","displayName":"Social and Human Service","basicCategory":"social_or_community_service"},{"name":"social_welfare_center","displayName":"Social Welfare Center","basicCategory":"social_or_community_service"},{"name":"volunteer_association","displayName":"Volunteer Association","basicCategory":"social_or_community_service"},{"name":"youth_organization","displayName":"Youth Organization","isBasic":true}]}]},{"name":"cultural_and_historic","displayName":"Cultural and Historic","isBasic":true,"children":[{"name":"cultural_center","displayName":"Cultural Center","isBasic":true},{"name":"historic_site","displayName":"Historic Site","isBasic":true,"children":[{"name":"castle","displayName":"Castle","isBasic":true},{"name":"fort","displayName":"Fort","isBasic":true},{"name":"historic_mission","displayName":"Historic Mission","basicCategory":"historic_site"},{"name":"historic_tower","displayName":"Historic Tower","basicCategory":"historic_site"},{"name":"lighthouse","displayName":"Lighthouse","isBasic":true},{"name":"palace","displayName":"Palace","basicCategory":"historic_site"},{"name":"ruin","displayName":"Ruin","basicCategory":"historic_site"}]},{"name":"memorial_site","displayName":"Memorial Site","isBasic":true,"children":[{"name":"cemetery","displayName":"Cemetery","isBasic":true},{"name":"memorial_park","displayName":"Memorial Park","basicCategory":"memorial_site"},{"name":"monument","displayName":"Monument","isBasic":true}]},{"name":"place_of_worship","displayName":"Place of Worship","isBasic":true,"children":[{"name":"buddhist_place_of_worship","displayName":"Buddhist Place of Worship","isBasic":true,"children":[{"name":"mahayana_buddhist_place_of_worship","displayName":"Mahayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship","children":[{"name":"nichiren_buddhist_place_of_worship","displayName":"Nichiren Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"pure_land_buddhist_place_of_worship","displayName":"Pure Land Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"zen_buddhist_place_of_worship","displayName":"Zen Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"}]},{"name":"theravada_buddhist_place_of_worship","displayName":"Theravada Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"},{"name":"vajrayana_buddhist_place_of_worship","displayName":"Vajrayana Buddhist Place of Worship","basicCategory":"buddhist_place_of_worship"}]},{"name":"christian_place_of_worship","displayName":"Christian Place of Worship","isBasic":true,"children":[{"name":"church_of_the_east_place_of_worship","displayName":"Church of the East Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"eastern_orthodox_place_of_worship","displayName":"Eastern Orthodox Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"antiochan_orthodox_place_of_worship","displayName":"Antiochan Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"bulgarian_orthodox_place_of_worship","displayName":"Bulgarian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"georgian_orthodox_place_of_worship","displayName":"Georgian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"greek_orthodox_place_of_worship","displayName":"Greek Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"romanian_orthodox_place_of_worship","displayName":"Romanian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"russian_orthodox_place_of_worship","displayName":"Russian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"serbian_orthodox_place_of_worship","displayName":"Serbian Orthodox Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"oriental_orthodox_place_of_worship","displayName":"Oriental Orthodox Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"armenian_apostolic_place_of_worship","displayName":"Armenian Apostolic Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"coptic_orthodox_place_of_worship","displayName":"Coptic Orthodox Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"eritrean_orthodox_tewahedo_place_of_worship","displayName":"Eritrean Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"ethiopian_orthodox_tewahedo_place_of_worship","displayName":"Ethiopian Orthodox Tewahedo Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"malankara_orthodox_syrian_place_of_worship","displayName":"Malankara Orthodox Syrian Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"syriac_orthodox_place_of_worship","displayName":"Syriac Orthodox Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"protestant_place_of_worship","displayName":"Protestant Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"adventist_place_of_worship","displayName":"Adventist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"anabaptist_place_of_worship","displayName":"Anabaptist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"anglican_or_episcopal_place_of_worship","displayName":"Anglican or Episcopal Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"baptist_place_of_worship","displayName":"Baptist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"lutheran_place_of_worship","displayName":"Lutheran Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"methodist_place_of_worship","displayName":"Methodist Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"pentecostal_place_of_worship","displayName":"Pentecostal Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"reformed_or_calvinist_place_of_worship","displayName":"Reformed or Calvinist Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"restorationist_place_of_worship","displayName":"Restorationist Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"jehovahs_witness_place_of_worship","displayName":"Jehovahs Witness Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"mormon_place_of_worship","displayName":"Mormon Place of Worship","basicCategory":"christian_place_of_worship"}]},{"name":"roman_catholic_place_of_worship","displayName":"Roman Catholic Place of Worship","basicCategory":"christian_place_of_worship","children":[{"name":"eastern_catholic_place_of_worship","displayName":"Eastern Catholic Place of Worship","basicCategory":"christian_place_of_worship"},{"name":"western_catholic_place_of_worship","displayName":"Western Catholic Place of Worship","basicCategory":"christian_place_of_worship"}]}]},{"name":"hindu_place_of_worship","displayName":"Hindu Place of Worship","isBasic":true,"children":[{"name":"shaiva_hindu_place_of_worship","displayName":"Shaiva Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"shakta_hindu_place_of_worship","displayName":"Shakta Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"smarta_hindu_place_of_worship","displayName":"Smarta Hindu Place of Worship","basicCategory":"hindu_place_of_worship"},{"name":"vaishnava_hindu_place_of_worship","displayName":"Vaishnava Hindu Place of Worship","basicCategory":"hindu_place_of_worship"}]},{"name":"jewish_place_of_worship","displayName":"Jewish Place of Worship","isBasic":true,"children":[{"name":"conservative_jewish_place_of_worship","displayName":"Conservative Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"orthodox_jewish_place_of_worship","displayName":"Orthodox Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"reconstructionist_jewish_place_of_worship","displayName":"Reconstructionist Jewish Place of Worship","basicCategory":"jewish_place_of_worship"},{"name":"reform_jewish_place_of_worship","displayName":"Reform Jewish Place of Worship","basicCategory":"jewish_place_of_worship"}]},{"name":"muslim_place_of_worship","displayName":"Muslim Place of Worship","isBasic":true,"children":[{"name":"ibadi_muslim_place_of_worship","displayName":"Ibadi Muslim Place of Worship","basicCategory":"muslim_place_of_worship"},{"name":"shia_muslim_place_of_worship","displayName":"Shia Muslim Place of Worship","basicCategory":"muslim_place_of_worship"},{"name":"sunni_muslim_place_of_worship","displayName":"Sunni Muslim Place of Worship","basicCategory":"muslim_place_of_worship"}]},{"name":"sikh_place_of_worship","displayName":"Sikh Place of Worship","basicCategory":"place_of_worship"}]},{"name":"religious_landmark","displayName":"Religious Landmark","isBasic":true,"children":[{"name":"pilgrimage_site","displayName":"Pilgrimage Site","basicCategory":"religious_landmark","children":[{"name":"buddhist_pilgrimage_site","displayName":"Buddhist Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"christian_pilgrimage_site","displayName":"Christian Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"hindu_pilgrimage_site","displayName":"Hindu Pilgrimage Site","basicCategory":"religious_landmark"},{"name":"muslim_pilgrimage_site","displayName":"Muslim Pilgrimage Site","basicCategory":"religious_landmark"}]},{"name":"shrine","displayName":"Shrine","basicCategory":"religious_landmark","children":[{"name":"catholic_shrine","displayName":"Catholic Shrine","basicCategory":"religious_landmark"},{"name":"shinto_shrine","displayName":"Shinto Shrine","basicCategory":"religious_landmark"},{"name":"sufi_shrine","displayName":"Sufi Shrine","basicCategory":"religious_landmark"}]}]},{"name":"religious_organization","displayName":"Religious Organization","isBasic":true,"children":[{"name":"convent","displayName":"Convent","basicCategory":"religious_organization"},{"name":"monastery","displayName":"Monastery","basicCategory":"religious_organization"},{"name":"seminary","displayName":"Seminary","basicCategory":"religious_organization"}]},{"name":"religious_retreat_or_center","displayName":"Religious Retreat or Center","isBasic":true,"children":[{"name":"christian_retreat_center","displayName":"Christian Retreat Center","basicCategory":"religious_retreat_or_center"},{"name":"hindu_ashram","displayName":"Hindu Ashram","basicCategory":"religious_retreat_or_center"},{"name":"zen_center","displayName":"Zen Center","basicCategory":"religious_retreat_or_center"}]}]},{"name":"education","displayName":"Education","isBasic":true,"children":[{"name":"education_office","displayName":"Education Office","isBasic":true,"children":[{"name":"board_of_education_office","displayName":"Board of Education Office","basicCategory":"education_office"},{"name":"school_district_office","displayName":"School District Office","isBasic":true}]},{"name":"educational_facility","displayName":"Educational Facility","isBasic":true,"children":[{"name":"campus","displayName":"Campus","isBasic":true},{"name":"campus_building","displayName":"Campus Building","isBasic":true,"children":[{"name":"student_union","displayName":"Student Union","basicCategory":"campus_building"}]},{"name":"educational_camp","displayName":"Educational Camp","basicCategory":"educational_facility"}]},{"name":"educational_service","displayName":"Educational Service","isBasic":true,"children":[{"name":"after_school_program","displayName":"After School Program","basicCategory":"educational_service"},{"name":"archaeological_service","displayName":"Archaeological Service","basicCategory":"educational_service"},{"name":"college_counseling","displayName":"College Counseling","basicCategory":"educational_service"},{"name":"test_preparation","displayName":"Test Preparation","basicCategory":"educational_service"},{"name":"tutoring_service","displayName":"Tutoring Service","isBasic":true,"children":[{"name":"private_tutor","displayName":"Private Tutor","basicCategory":"tutoring_service"}]}]},{"name":"library","displayName":"Library","isBasic":true},{"name":"place_of_learning","displayName":"Place of Learning","isBasic":true,"children":[{"name":"academy","displayName":"Academy","isBasic":true,"children":[{"name":"civil_examinations_academy","displayName":"Civil Examinations Academy","basicCategory":"academy"}]},{"name":"adult_education_center","displayName":"Adult Education Center","basicCategory":"place_of_learning"},{"name":"class_venue","displayName":"Class Venue","isBasic":true,"children":[{"name":"tasting_class","displayName":"Tasting Class","basicCategory":"class_venue","children":[{"name":"cheese_tasting_class","displayName":"Cheese Tasting Class","basicCategory":"class_venue"},{"name":"wine_tasting_class","displayName":"Wine Tasting Class","basicCategory":"class_venue"}]}]},{"name":"college_university","displayName":"College University","isBasic":true,"children":[{"name":"architecture_school","displayName":"Architecture School","basicCategory":"college_university"},{"name":"business_school","displayName":"Business School","basicCategory":"college_university"},{"name":"engineering_school","displayName":"Engineering School","basicCategory":"college_university"},{"name":"law_school","displayName":"Law School","basicCategory":"college_university"},{"name":"medical_sciences_school","displayName":"Medical Sciences School","basicCategory":"college_university","children":[{"name":"dentistry_school","displayName":"Dentistry School","basicCategory":"college_university"},{"name":"pharmacy_school","displayName":"Pharmacy School","basicCategory":"college_university"},{"name":"veterinary_school","displayName":"Veterinary School","basicCategory":"college_university"}]},{"name":"science_school","displayName":"Science School","basicCategory":"college_university"}]},{"name":"school","displayName":"School","basicCategory":"place_of_learning","children":[{"name":"charter_school","displayName":"Charter School","basicCategory":"place_of_learning"},{"name":"elementary_school","displayName":"Elementary School","isBasic":true},{"name":"high_school","displayName":"High School","isBasic":true},{"name":"kindergarten","displayName":"Kindergarten","isBasic":true},{"name":"middle_school","displayName":"Middle School","isBasic":true},{"name":"montessori_school","displayName":"Montessori School","basicCategory":"place_of_learning"},{"name":"preschool","displayName":"Preschool","isBasic":true},{"name":"private_school","displayName":"Private School","basicCategory":"place_of_learning"},{"name":"public_school","displayName":"Public School","basicCategory":"place_of_learning"},{"name":"religious_school","displayName":"Religious School","basicCategory":"place_of_learning"},{"name":"waldorf_school","displayName":"Waldorf School","basicCategory":"place_of_learning"}]},{"name":"specialty_school","displayName":"Specialty School","isBasic":true,"children":[{"name":"art_school","displayName":"Art School","basicCategory":"specialty_school"},{"name":"bartending_school","displayName":"Bartending School","basicCategory":"specialty_school"},{"name":"cheerleading","displayName":"Cheerleading","basicCategory":"specialty_school"},{"name":"childbirth_education","displayName":"Childbirth Education","basicCategory":"specialty_school"},{"name":"circus_school","displayName":"Circus School","basicCategory":"specialty_school"},{"name":"computer_coaching","displayName":"Computer Coaching","basicCategory":"specialty_school"},{"name":"cooking_school","displayName":"Cooking School","basicCategory":"specialty_school"},{"name":"cosmetology_school","displayName":"Cosmetology School","basicCategory":"specialty_school"},{"name":"cpr_class","displayName":"CPR Class","basicCategory":"specialty_school"},{"name":"drama_school","displayName":"Drama School","basicCategory":"specialty_school"},{"name":"driving_school","displayName":"Driving School","basicCategory":"specialty_school"},{"name":"dui_school","displayName":"DUI School","basicCategory":"specialty_school"},{"name":"firearm_training","displayName":"Firearm Training","basicCategory":"specialty_school"},{"name":"first_aid_class","displayName":"First Aid Class","basicCategory":"specialty_school"},{"name":"flight_school","displayName":"Flight School","basicCategory":"specialty_school"},{"name":"food_safety_training","displayName":"Food Safety Training","basicCategory":"specialty_school"},{"name":"language_school","displayName":"Language School","basicCategory":"specialty_school"},{"name":"massage_school","displayName":"Massage School","basicCategory":"specialty_school"},{"name":"medical_school","displayName":"Medical School","basicCategory":"specialty_school"},{"name":"music_school","displayName":"Music School","basicCategory":"specialty_school"},{"name":"nursing_school","displayName":"Nursing School","basicCategory":"specialty_school"},{"name":"parenting_class","displayName":"Parenting Class","basicCategory":"specialty_school"},{"name":"photography_class","displayName":"Photography Class","basicCategory":"specialty_school"},{"name":"speech_training","displayName":"Speech Training","basicCategory":"specialty_school"},{"name":"sports_school","displayName":"Sports School","basicCategory":"specialty_school"},{"name":"traffic_school","displayName":"Traffic School","basicCategory":"specialty_school"},{"name":"vocational_and_technical_school","displayName":"Vocational and Technical School","basicCategory":"specialty_school"}]}]},{"name":"research_institute","displayName":"Research Institute","isBasic":true,"children":[{"name":"educational_research_institute","displayName":"Educational Research Institute","basicCategory":"research_institute"},{"name":"medical_research_institute","displayName":"Medical Research Institute","basicCategory":"research_institute"}]}]},{"name":"food_and_drink","displayName":"Food and Drink","isBasic":true,"children":[{"name":"alcoholic_beverage_venue","displayName":"Alcoholic Beverage Venue","isBasic":true,"children":[{"name":"bar","displayName":"Bar","isBasic":true,"children":[{"name":"bar_tabac","displayName":"Bar Tabac","basicCategory":"bar"},{"name":"beach_bar","displayName":"Beach Bar","basicCategory":"bar"},{"name":"beer_bar","displayName":"Beer Bar","basicCategory":"bar"},{"name":"champagne_bar","displayName":"Champagne Bar","basicCategory":"bar"},{"name":"cigar_bar","displayName":"Cigar Bar","basicCategory":"bar"},{"name":"cocktail_bar","displayName":"Cocktail Bar","basicCategory":"bar"},{"name":"dive_bar","displayName":"Dive Bar","basicCategory":"bar"},{"name":"drive_thru_bar","displayName":"Drive Thru Bar","basicCategory":"bar"},{"name":"gay_bar","displayName":"Gay Bar","basicCategory":"bar"},{"name":"hookah_bar","displayName":"Hookah Bar","basicCategory":"bar"},{"name":"hotel_bar","displayName":"Hotel Bar","basicCategory":"bar"},{"name":"piano_bar","displayName":"Piano Bar","basicCategory":"bar"},{"name":"pub","displayName":"Pub","basicCategory":"bar","children":[{"name":"irish_pub","displayName":"Irish Pub","basicCategory":"bar"}]},{"name":"sake_bar","displayName":"Sake Bar","basicCategory":"bar"},{"name":"speakeasy","displayName":"Speakeasy","basicCategory":"bar"},{"name":"sports_bar","displayName":"Sports Bar","basicCategory":"bar"},{"name":"tiki_bar","displayName":"Tiki Bar","basicCategory":"bar"},{"name":"vermouth_bar","displayName":"Vermouth Bar","basicCategory":"bar"},{"name":"whiskey_bar","displayName":"Whiskey Bar","basicCategory":"bar"},{"name":"wine_bar","displayName":"Wine Bar","basicCategory":"bar"}]},{"name":"beer_garden","displayName":"Beer Garden","basicCategory":"alcoholic_beverage_venue"},{"name":"brewery","displayName":"Brewery","isBasic":true},{"name":"cidery","displayName":"Cidery","basicCategory":"alcoholic_beverage_venue"},{"name":"distillery","displayName":"Distillery","isBasic":true},{"name":"lounge","displayName":"Lounge","isBasic":true,"children":[{"name":"airport_lounge","displayName":"Airport Lounge","basicCategory":"lounge"}]},{"name":"winery","displayName":"Winery","isBasic":true,"children":[{"name":"wine_tasting_room","displayName":"Wine Tasting Room","basicCategory":"winery"}]}]},{"name":"casual_eatery","displayName":"Casual Eatery","isBasic":true,"children":[{"name":"bagel_shop","displayName":"Bagel Shop","basicCategory":"casual_eatery"},{"name":"bakery","displayName":"Bakery","basicCategory":"casual_eatery","children":[{"name":"baguette_shop","displayName":"Baguette Shop","basicCategory":"casual_eatery"},{"name":"flatbread_shop","displayName":"Flatbread Shop","basicCategory":"casual_eatery"},{"name":"macaron_shop","displayName":"Macaron Shop","basicCategory":"casual_eatery"},{"name":"pretzel_shop","displayName":"Pretzel Shop","basicCategory":"casual_eatery"}]},{"name":"bistro","displayName":"Bistro","basicCategory":"casual_eatery"},{"name":"cafe","displayName":"Cafe","isBasic":true,"children":[{"name":"animal_cafe","displayName":"Animal Cafe","basicCategory":"cafe","children":[{"name":"cat_cafe","displayName":"Cat Cafe","basicCategory":"cafe"},{"name":"dog_cafe","displayName":"Dog Cafe","basicCategory":"cafe"}]},{"name":"hong_kong_style_cafe","displayName":"Hong Kong Style Cafe","basicCategory":"cafe"},{"name":"internet_cafe","displayName":"Internet Cafe","basicCategory":"cafe"}]},{"name":"candy_store","displayName":"Candy Store","basicCategory":"casual_eatery","children":[{"name":"chocolatier","displayName":"Chocolatier","basicCategory":"casual_eatery"},{"name":"indian_sweets_shop","displayName":"Indian Sweets Shop","basicCategory":"casual_eatery"},{"name":"japanese_confectionery_shop","displayName":"Japanese Confectionery Shop","basicCategory":"casual_eatery"}]},{"name":"canteen","displayName":"Canteen","basicCategory":"casual_eatery"},{"name":"delicatessen","displayName":"Delicatessen","basicCategory":"casual_eatery"},{"name":"dessert_shop","displayName":"Dessert Shop","basicCategory":"casual_eatery","children":[{"name":"cupcake_shop","displayName":"Cupcake Shop","basicCategory":"casual_eatery"},{"name":"donut_shop","displayName":"Donut Shop","basicCategory":"casual_eatery"},{"name":"frozen_yogurt_shop","displayName":"Frozen Yogurt Shop","basicCategory":"casual_eatery"},{"name":"gelato_shop","displayName":"Gelato Shop","basicCategory":"casual_eatery"},{"name":"ice_cream_shop","displayName":"Ice Cream Shop","basicCategory":"casual_eatery"},{"name":"pie_shop","displayName":"Pie Shop","basicCategory":"casual_eatery"},{"name":"shaved_ice_shop","displayName":"Shaved Ice Shop","basicCategory":"casual_eatery"}]},{"name":"diner","displayName":"Diner","basicCategory":"casual_eatery"},{"name":"fast_food_restaurant","displayName":"Fast Food Restaurant","isBasic":true},{"name":"fondue_restaurant","displayName":"Fondue Restaurant","basicCategory":"casual_eatery"},{"name":"food_court","displayName":"Food Court","isBasic":true},{"name":"food_truck_stand","displayName":"Food Truck or Stand","isBasic":true},{"name":"friterie","displayName":"Friterie","basicCategory":"casual_eatery"},{"name":"gastropub","displayName":"Gastropub","basicCategory":"casual_eatery"},{"name":"popcorn_shop","displayName":"Popcorn Shop","basicCategory":"casual_eatery"},{"name":"sandwich_shop","displayName":"Sandwich Shop","basicCategory":"casual_eatery"},{"name":"sugar_shack","displayName":"Sugar Shack","basicCategory":"casual_eatery"},{"name":"tapas_bar","displayName":"Tapas Bar","basicCategory":"casual_eatery"}]},{"name":"non_alcoholic_beverage_venue","displayName":"Non-Alcoholic Beverage Venue","isBasic":true,"children":[{"name":"bubble_tea_shop","displayName":"Bubble Tea Shop","basicCategory":"non_alcoholic_beverage_venue"},{"name":"coffee_shop","displayName":"Coffee Shop","isBasic":true,"children":[{"name":"coffee_roastery","displayName":"Coffee Roastery","basicCategory":"coffee_shop"}]},{"name":"kombucha_bar","displayName":"Kombucha Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"milk_bar","displayName":"Milk Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"milkshake_bar","displayName":"Milkshake Bar","basicCategory":"non_alcoholic_beverage_venue"},{"name":"smoothie_juice_bar","displayName":"Smoothie or Juice Bar","isBasic":true},{"name":"tea_room","displayName":"Tea Room","basicCategory":"non_alcoholic_beverage_venue"}]},{"name":"restaurant","displayName":"Restaurant","isBasic":true,"children":[{"name":"african_restaurant","displayName":"African Restaurant","basicCategory":"restaurant","children":[{"name":"east_african_restaurant","displayName":"East African Restaurant","basicCategory":"restaurant","children":[{"name":"eritrean_restaurant","displayName":"Eritrean Restaurant","basicCategory":"restaurant"},{"name":"ethiopian_restaurant","displayName":"Ethiopian Restaurant","basicCategory":"restaurant"},{"name":"somalian_restaurant","displayName":"Somalian Restaurant","basicCategory":"restaurant"}]},{"name":"north_african_restaurant","displayName":"North African Restaurant","basicCategory":"restaurant","children":[{"name":"algerian_restaurant","displayName":"Algerian Restaurant","basicCategory":"restaurant"},{"name":"egyptian_restaurant","displayName":"Egyptian Restaurant","basicCategory":"restaurant"},{"name":"moroccan_restaurant","displayName":"Moroccan Restaurant","basicCategory":"restaurant"}]},{"name":"southern_african_restaurant","displayName":"Southern African Restaurant","basicCategory":"restaurant","children":[{"name":"south_african_restaurant","displayName":"South African Restaurant","basicCategory":"restaurant"}]},{"name":"west_african_restaurant","displayName":"West African Restaurant","basicCategory":"restaurant","children":[{"name":"ghanaian_restaurant","displayName":"Ghanaian Restaurant","basicCategory":"restaurant"},{"name":"nigerian_restaurant","displayName":"Nigerian Restaurant","basicCategory":"restaurant"},{"name":"senegalese_restaurant","displayName":"Senegalese Restaurant","basicCategory":"restaurant"}]}]},{"name":"asian_restaurant","displayName":"Asian Restaurant","basicCategory":"restaurant","children":[{"name":"central_asian_restaurant","displayName":"Central Asian Restaurant","basicCategory":"restaurant","children":[{"name":"afghani_restaurant","displayName":"Afghani Restaurant","basicCategory":"restaurant"},{"name":"kazakhstani_restaurant","displayName":"Kazakhstani Restaurant","basicCategory":"restaurant"},{"name":"uzbek_restaurant","displayName":"Uzbek Restaurant","basicCategory":"restaurant"}]},{"name":"east_asian_restaurant","displayName":"East Asian Restaurant","basicCategory":"restaurant","children":[{"name":"chinese_restaurant","displayName":"Chinese Restaurant","basicCategory":"restaurant","children":[{"name":"baozi_restaurant","displayName":"Baozi Restaurant","basicCategory":"restaurant"},{"name":"beijing_restaurant","displayName":"Beijing Restaurant","basicCategory":"restaurant"},{"name":"cantonese_restaurant","displayName":"Cantonese Restaurant","basicCategory":"restaurant"},{"name":"dim_sum_restaurant","displayName":"Dim Sum Restaurant","basicCategory":"restaurant"},{"name":"dongbei_restaurant","displayName":"Dongbei Restaurant","basicCategory":"restaurant"},{"name":"fujian_restaurant","displayName":"Fujian Restaurant","basicCategory":"restaurant"},{"name":"hunan_restaurant","displayName":"Hunan Restaurant","basicCategory":"restaurant"},{"name":"indo_chinese_restaurant","displayName":"Indo Chinese Restaurant","basicCategory":"restaurant"},{"name":"jiangsu_restaurant","displayName":"Jiangsu Restaurant","basicCategory":"restaurant"},{"name":"shandong_restaurant","displayName":"Shandong Restaurant","basicCategory":"restaurant"},{"name":"shanghainese_restaurant","displayName":"Shanghainese Restaurant","basicCategory":"restaurant"},{"name":"sichuan_restaurant","displayName":"Sichuan Restaurant","basicCategory":"restaurant"},{"name":"xinjiang_restaurant","displayName":"Xinjiang Restaurant","basicCategory":"restaurant"}]},{"name":"japanese_restaurant","displayName":"Japanese Restaurant","basicCategory":"restaurant","children":[{"name":"sushi_restaurant","displayName":"Sushi Restaurant","basicCategory":"restaurant"}]},{"name":"korean_restaurant","displayName":"Korean Restaurant","basicCategory":"restaurant"},{"name":"mongolian_restaurant","displayName":"Mongolian Restaurant","basicCategory":"restaurant"},{"name":"taiwanese_restaurant","displayName":"Taiwanese Restaurant","basicCategory":"restaurant"}]},{"name":"ramen_restaurant","displayName":"Ramen Restaurant","basicCategory":"restaurant"},{"name":"south_asian_restaurant","displayName":"South Asian Restaurant","basicCategory":"restaurant","children":[{"name":"bangladeshi_restaurant","displayName":"Bangladeshi Restaurant","basicCategory":"restaurant"},{"name":"himalayan_restaurant","displayName":"Himalayan Restaurant","basicCategory":"restaurant","children":[{"name":"nepalese_restaurant","displayName":"Nepalese Restaurant","basicCategory":"restaurant"}]},{"name":"indian_restaurant","displayName":"Indian Restaurant","basicCategory":"restaurant","children":[{"name":"bengali_restaurant","displayName":"Bengali Restaurant","basicCategory":"restaurant"},{"name":"chettinad_restaurant","displayName":"Chettinad Restaurant","basicCategory":"restaurant"},{"name":"gujarati_restaurant","displayName":"Gujarati Restaurant","basicCategory":"restaurant"},{"name":"hyderabadi_restaurant","displayName":"Hyderabadi Restaurant","basicCategory":"restaurant"},{"name":"north_indian_restaurant","displayName":"North Indian Restaurant","basicCategory":"restaurant"},{"name":"punjabi_restaurant","displayName":"Punjabi Restaurant","basicCategory":"restaurant"},{"name":"rajasthani_restaurant","displayName":"Rajasthani Restaurant","basicCategory":"restaurant"},{"name":"south_indian_restaurant","displayName":"South Indian Restaurant","basicCategory":"restaurant"}]},{"name":"pakistani_restaurant","displayName":"Pakistani Restaurant","basicCategory":"restaurant"},{"name":"sri_lankan_restaurant","displayName":"Sri Lankan Restaurant","basicCategory":"restaurant"},{"name":"tibetan_restaurant","displayName":"Tibetan Restaurant","basicCategory":"restaurant"}]},{"name":"southeast_asian_restaurant","displayName":"Southeast Asian Restaurant","basicCategory":"restaurant","children":[{"name":"burmese_restaurant","displayName":"Burmese Restaurant","basicCategory":"restaurant"},{"name":"cambodian_restaurant","displayName":"Cambodian Restaurant","basicCategory":"restaurant"},{"name":"filipino_restaurant","displayName":"Filipino Restaurant","basicCategory":"restaurant"},{"name":"indonesian_restaurant","displayName":"Indonesian Restaurant","basicCategory":"restaurant","children":[{"name":"sundanese_restaurant","displayName":"Sundanese Restaurant","basicCategory":"restaurant"}]},{"name":"laotian_restaurant","displayName":"Laotian Restaurant","basicCategory":"restaurant"},{"name":"malaysian_restaurant","displayName":"Malaysian Restaurant","basicCategory":"restaurant"},{"name":"nasi_restaurant","displayName":"Nasi Restaurant","basicCategory":"restaurant"},{"name":"singaporean_restaurant","displayName":"Singaporean Restaurant","basicCategory":"restaurant"},{"name":"thai_restaurant","displayName":"Thai Restaurant","basicCategory":"restaurant"},{"name":"vietnamese_restaurant","displayName":"Vietnamese Restaurant","basicCategory":"restaurant"}]},{"name":"wok_restaurant","displayName":"Wok Restaurant","basicCategory":"restaurant"}]},{"name":"bar_and_grill_restaurant","displayName":"Bar and Grill Restaurant","basicCategory":"restaurant"},{"name":"breakfast_and_brunch_restaurant","displayName":"Breakfast and Brunch Restaurant","basicCategory":"restaurant","children":[{"name":"pancake_house","displayName":"Pancake House","basicCategory":"restaurant"},{"name":"waffle_restaurant","displayName":"Waffle Restaurant","basicCategory":"restaurant"}]},{"name":"buffet_restaurant","displayName":"Buffet Restaurant","basicCategory":"restaurant"},{"name":"cafeteria","displayName":"Cafeteria","basicCategory":"restaurant"},{"name":"comfort_food_restaurant","displayName":"Comfort Food Restaurant","basicCategory":"restaurant"},{"name":"diy_foods_restaurant","displayName":"DIY Foods Restaurant","basicCategory":"restaurant"},{"name":"dumpling_restaurant","displayName":"Dumpling Restaurant","basicCategory":"restaurant"},{"name":"european_restaurant","displayName":"European Restaurant","basicCategory":"restaurant","children":[{"name":"central_european_restaurant","displayName":"Central European Restaurant","basicCategory":"restaurant","children":[{"name":"austrian_restaurant","displayName":"Austrian Restaurant","basicCategory":"restaurant"},{"name":"czech_restaurant","displayName":"Czech Restaurant","basicCategory":"restaurant"},{"name":"german_restaurant","displayName":"German Restaurant","basicCategory":"restaurant","children":[{"name":"fischbrotchen_restaurant","displayName":"Fischbrotchen Restaurant","basicCategory":"restaurant"}]},{"name":"hungarian_restaurant","displayName":"Hungarian Restaurant","basicCategory":"restaurant"},{"name":"polish_restaurant","displayName":"Polish Restaurant","basicCategory":"restaurant"},{"name":"schnitzel_restaurant","displayName":"Schnitzel Restaurant","basicCategory":"restaurant"},{"name":"slovakian_restaurant","displayName":"Slovakian Restaurant","basicCategory":"restaurant"},{"name":"swiss_restaurant","displayName":"Swiss Restaurant","basicCategory":"restaurant"}]},{"name":"eastern_european_restaurant","displayName":"Eastern European Restaurant","basicCategory":"restaurant","children":[{"name":"belarusian_restaurant","displayName":"Belarusian Restaurant","basicCategory":"restaurant"},{"name":"bulgarian_restaurant","displayName":"Bulgarian Restaurant","basicCategory":"restaurant"},{"name":"lithuanian_restaurant","displayName":"Lithuanian Restaurant","basicCategory":"restaurant"},{"name":"romanian_restaurant","displayName":"Romanian Restaurant","basicCategory":"restaurant"},{"name":"russian_restaurant","displayName":"Russian Restaurant","basicCategory":"restaurant","children":[{"name":"tatar_restaurant","displayName":"Tatar Restaurant","basicCategory":"restaurant"}]},{"name":"serbo_croatian_restaurant","displayName":"Serbo-Croatian Restaurant","basicCategory":"restaurant"},{"name":"ukrainian_restaurant","displayName":"Ukrainian Restaurant","basicCategory":"restaurant"}]},{"name":"iberian_restaurant","displayName":"Iberian Restaurant","basicCategory":"restaurant","children":[{"name":"portuguese_restaurant","displayName":"Portuguese Restaurant","basicCategory":"restaurant"},{"name":"spanish_restaurant","displayName":"Spanish Restaurant","basicCategory":"restaurant","children":[{"name":"basque_restaurant","displayName":"Basque Restaurant","basicCategory":"restaurant"},{"name":"catalan_restaurant","displayName":"Catalan Restaurant","basicCategory":"restaurant"}]}]},{"name":"mediterranean_restaurant","displayName":"Mediterranean Restaurant","basicCategory":"restaurant","children":[{"name":"greek_restaurant","displayName":"Greek Restaurant","basicCategory":"restaurant"},{"name":"italian_restaurant","displayName":"Italian Restaurant","basicCategory":"restaurant","children":[{"name":"piadina_restaurant","displayName":"Piadina Restaurant","basicCategory":"restaurant"},{"name":"pizza_restaurant","displayName":"Pizza Restaurant","basicCategory":"restaurant"}]},{"name":"maltese_restaurant","displayName":"Maltese Restaurant","basicCategory":"restaurant"}]},{"name":"scandinavian_restaurant","displayName":"Scandinavian Restaurant","basicCategory":"restaurant","children":[{"name":"danish_restaurant","displayName":"Danish Restaurant","basicCategory":"restaurant"},{"name":"finnish_restaurant","displayName":"Finnish Restaurant","basicCategory":"restaurant"},{"name":"icelandic_restaurant","displayName":"Icelandic Restaurant","basicCategory":"restaurant"},{"name":"norwegian_restaurant","displayName":"Norwegian Restaurant","basicCategory":"restaurant"},{"name":"swedish_restaurant","displayName":"Swedish Restaurant","basicCategory":"restaurant"}]},{"name":"western_european_restaurant","displayName":"Western European Restaurant","basicCategory":"restaurant","children":[{"name":"belgian_restaurant","displayName":"Belgian Restaurant","basicCategory":"restaurant"},{"name":"british_restaurant","displayName":"British Restaurant","basicCategory":"restaurant"},{"name":"dutch_restaurant","displayName":"Dutch Restaurant","basicCategory":"restaurant"},{"name":"french_restaurant","displayName":"French Restaurant","basicCategory":"restaurant","children":[{"name":"brasserie","displayName":"Brasserie","basicCategory":"restaurant"}]},{"name":"irish_restaurant","displayName":"Irish Restaurant","basicCategory":"restaurant"},{"name":"scottish_restaurant","displayName":"Scottish Restaurant","basicCategory":"restaurant"},{"name":"welsh_restaurant","displayName":"Welsh Restaurant","basicCategory":"restaurant"}]}]},{"name":"haute_cuisine_restaurant","displayName":"Haute Cuisine Restaurant","basicCategory":"restaurant"},{"name":"international_fusion_restaurant","displayName":"International Fusion Restaurant","basicCategory":"restaurant","children":[{"name":"asian_fusion_restaurant","displayName":"Asian Fusion Restaurant","basicCategory":"restaurant"},{"name":"latin_fusion_restaurant","displayName":"Latin Fusion Restaurant","basicCategory":"restaurant"},{"name":"pan_asian_restaurant","displayName":"Pan Asian Restaurant","basicCategory":"restaurant"}]},{"name":"latin_american_restaurant","displayName":"Latin American Restaurant","basicCategory":"restaurant","children":[{"name":"caribbean_restaurant","displayName":"Caribbean Restaurant","basicCategory":"restaurant","children":[{"name":"cuban_restaurant","displayName":"Cuban Restaurant","basicCategory":"restaurant"},{"name":"dominican_restaurant","displayName":"Dominican Restaurant","basicCategory":"restaurant"},{"name":"haitian_restaurant","displayName":"Haitian Restaurant","basicCategory":"restaurant"},{"name":"jamaican_restaurant","displayName":"Jamaican Restaurant","basicCategory":"restaurant"},{"name":"puerto_rican_restaurant","displayName":"Puerto Rican Restaurant","basicCategory":"restaurant"},{"name":"trinidadian_restaurant","displayName":"Trinidadian Restaurant","basicCategory":"restaurant"}]},{"name":"central_american_restaurant","displayName":"Central American Restaurant","basicCategory":"restaurant","children":[{"name":"belizean_restaurant","displayName":"Belizean Restaurant","basicCategory":"restaurant"},{"name":"costa_rican_restaurant","displayName":"Costa Rican Restaurant","basicCategory":"restaurant"},{"name":"guatemalan_restaurant","displayName":"Guatemalan Restaurant","basicCategory":"restaurant"},{"name":"honduran_restaurant","displayName":"Honduran Restaurant","basicCategory":"restaurant"},{"name":"nicaraguan_restaurant","displayName":"Nicaraguan Restaurant","basicCategory":"restaurant"},{"name":"panamanian_restaurant","displayName":"Panamanian Restaurant","basicCategory":"restaurant"},{"name":"salvadoran_restaurant","displayName":"Salvadoran Restaurant","basicCategory":"restaurant"}]},{"name":"empanada_restaurant","displayName":"Empanada Restaurant","basicCategory":"restaurant"},{"name":"mexican_restaurant","displayName":"Mexican Restaurant","basicCategory":"restaurant"},{"name":"south_american_restaurant","displayName":"South American Restaurant","basicCategory":"restaurant","children":[{"name":"argentine_restaurant","displayName":"Argentine Restaurant","basicCategory":"restaurant"},{"name":"bolivian_restaurant","displayName":"Bolivian Restaurant","basicCategory":"restaurant"},{"name":"brazilian_restaurant","displayName":"Brazilian Restaurant","basicCategory":"restaurant"},{"name":"chilean_restaurant","displayName":"Chilean Restaurant","basicCategory":"restaurant"},{"name":"colombian_restaurant","displayName":"Colombian Restaurant","basicCategory":"restaurant"},{"name":"ecuadorian_restaurant","displayName":"Ecuadorian Restaurant","basicCategory":"restaurant"},{"name":"paraguayan_restaurant","displayName":"Paraguayan Restaurant","basicCategory":"restaurant"},{"name":"peruvian_restaurant","displayName":"Peruvian Restaurant","basicCategory":"restaurant"},{"name":"surinamese_restaurant","displayName":"Surinamese Restaurant","basicCategory":"restaurant"},{"name":"uruguayan_restaurant","displayName":"Uruguayan Restaurant","basicCategory":"restaurant"},{"name":"venezuelan_restaurant","displayName":"Venezuelan Restaurant","basicCategory":"restaurant"}]},{"name":"taco_restaurant","displayName":"Taco Restaurant","basicCategory":"restaurant"},{"name":"texmex_restaurant","displayName":"Texmex Restaurant","basicCategory":"restaurant"}]},{"name":"meat_restaurant","displayName":"Meat Restaurant","basicCategory":"restaurant","children":[{"name":"barbecue_restaurant","displayName":"Barbecue Restaurant","basicCategory":"restaurant"},{"name":"burger_restaurant","displayName":"Burger Restaurant","basicCategory":"restaurant"},{"name":"cheesesteak_restaurant","displayName":"Cheesesteak Restaurant","basicCategory":"restaurant"},{"name":"chicken_restaurant","displayName":"Chicken Restaurant","basicCategory":"restaurant"},{"name":"chicken_wings_restaurant","displayName":"Chicken Wings Restaurant","basicCategory":"restaurant"},{"name":"curry_sausage_restaurant","displayName":"Curry Sausage Restaurant","basicCategory":"restaurant"},{"name":"hot_dog_restaurant","displayName":"Hot Dog Restaurant","basicCategory":"restaurant"},{"name":"meatball_restaurant","displayName":"Meatball Restaurant","basicCategory":"restaurant"},{"name":"rotisserie_chicken_restaurant","displayName":"Rotisserie Chicken Restaurant","basicCategory":"restaurant"},{"name":"steakhouse","displayName":"Steakhouse","basicCategory":"restaurant"},{"name":"venison_restaurant","displayName":"Venison Restaurant","basicCategory":"restaurant"},{"name":"wild_game_meats_restaurant","displayName":"Wild Game Meats Restaurant","basicCategory":"restaurant"}]},{"name":"middle_eastern_restaurant","displayName":"Middle Eastern Restaurant","basicCategory":"restaurant","children":[{"name":"arabian_restaurant","displayName":"Arabian Restaurant","basicCategory":"restaurant"},{"name":"armenian_restaurant","displayName":"Armenian Restaurant","basicCategory":"restaurant"},{"name":"azerbaijani_restaurant","displayName":"Azerbaijani Restaurant","basicCategory":"restaurant"},{"name":"falafel_restaurant","displayName":"Falafel Restaurant","basicCategory":"restaurant"},{"name":"georgian_restaurant","displayName":"Georgian Restaurant","basicCategory":"restaurant"},{"name":"israeli_restaurant","displayName":"Israeli Restaurant","basicCategory":"restaurant"},{"name":"kofta_restaurant","displayName":"Kofta Restaurant","basicCategory":"restaurant"},{"name":"kurdish_restaurant","displayName":"Kurdish Restaurant","basicCategory":"restaurant"},{"name":"lebanese_restaurant","displayName":"Lebanese Restaurant","basicCategory":"restaurant"},{"name":"palestinian_restaurant","displayName":"Palestinian Restaurant","basicCategory":"restaurant"},{"name":"persian_restaurant","displayName":"Persian Restaurant","basicCategory":"restaurant"},{"name":"syrian_restaurant","displayName":"Syrian Restaurant","basicCategory":"restaurant"},{"name":"turkish_restaurant","displayName":"Turkish Restaurant","basicCategory":"restaurant","children":[{"name":"doner_kebab_restaurant","displayName":"Doner Kebab Restaurant","basicCategory":"restaurant"}]},{"name":"turkmen_restaurant","displayName":"Turkmen Restaurant","basicCategory":"restaurant"},{"name":"yemenite_restaurant","displayName":"Yemenite Restaurant","basicCategory":"restaurant"}]},{"name":"north_american_restaurant","displayName":"North American Restaurant","basicCategory":"restaurant","children":[{"name":"american_restaurant","displayName":"American Restaurant","basicCategory":"restaurant","children":[{"name":"cajun_and_creole_restaurant","displayName":"Cajun and Creole Restaurant","basicCategory":"restaurant"},{"name":"southern_american_restaurant","displayName":"Southern American Restaurant","basicCategory":"restaurant"}]},{"name":"canadian_restaurant","displayName":"Canadian Restaurant","basicCategory":"restaurant","children":[{"name":"poutinerie_restaurant","displayName":"Poutinerie Restaurant","basicCategory":"restaurant"}]}]},{"name":"pacific_rim_restaurant","displayName":"Pacific Rim Restaurant","basicCategory":"restaurant","children":[{"name":"australian_restaurant","displayName":"Australian Restaurant","basicCategory":"restaurant"},{"name":"melanesian_restaurant","displayName":"Melanesian Restaurant","basicCategory":"restaurant","children":[{"name":"fijian_restaurant","displayName":"Fijian Restaurant","basicCategory":"restaurant"}]},{"name":"micronesian_restaurant","displayName":"Micronesian Restaurant","basicCategory":"restaurant","children":[{"name":"guamanian_restaurant","displayName":"Guamanian Restaurant","basicCategory":"restaurant"}]},{"name":"new_zealand_restaurant","displayName":"New Zealand Restaurant","basicCategory":"restaurant"},{"name":"polynesian_restaurant","displayName":"Polynesian Restaurant","basicCategory":"restaurant","children":[{"name":"hawaiian_restaurant","displayName":"Hawaiian Restaurant","basicCategory":"restaurant","children":[{"name":"poke_restaurant","displayName":"Poke Restaurant","basicCategory":"restaurant"}]}]}]},{"name":"pop_up_restaurant","displayName":"Pop Up Restaurant","basicCategory":"restaurant"},{"name":"salad_bar","displayName":"Salad Bar","basicCategory":"restaurant"},{"name":"seafood_restaurant","displayName":"Seafood Restaurant","basicCategory":"restaurant","children":[{"name":"fish_and_chips_restaurant","displayName":"Fish and Chips Restaurant","basicCategory":"restaurant"},{"name":"fish_restaurant","displayName":"Fish Restaurant","basicCategory":"restaurant"}]},{"name":"soul_food","displayName":"Soul Food","basicCategory":"restaurant"},{"name":"soup_restaurant","displayName":"Soup Restaurant","basicCategory":"restaurant"},{"name":"special_diet_restaurant","displayName":"Special Diet Restaurant","basicCategory":"restaurant","children":[{"name":"acai_bowls","displayName":"Acai Bowls","basicCategory":"restaurant"},{"name":"gluten_free_restaurant","displayName":"Gluten Free Restaurant","basicCategory":"restaurant"},{"name":"halal_restaurant","displayName":"Halal Restaurant","basicCategory":"restaurant"},{"name":"health_food_restaurant","displayName":"Health Food Restaurant","basicCategory":"restaurant"},{"name":"jewish_restaurant","displayName":"Jewish Restaurant","basicCategory":"restaurant"},{"name":"kosher_restaurant","displayName":"Kosher Restaurant","basicCategory":"restaurant"},{"name":"live_and_raw_food_restaurant","displayName":"Live and Raw Food Restaurant","basicCategory":"restaurant"},{"name":"molecular_gastronomy_restaurant","displayName":"Molecular Gastronomy Restaurant","basicCategory":"restaurant"},{"name":"vegan_restaurant","displayName":"Vegan Restaurant","basicCategory":"restaurant"},{"name":"vegetarian_restaurant","displayName":"Vegetarian Restaurant","basicCategory":"restaurant"}]},{"name":"supper_club","displayName":"Supper Club","basicCategory":"restaurant"},{"name":"theme_restaurant","displayName":"Theme Restaurant","basicCategory":"restaurant"},{"name":"wrap_restaurant","displayName":"Wrap Restaurant","basicCategory":"restaurant"}]}]},{"name":"geographic_entities","displayName":"Geographic Entities","isBasic":true,"children":[{"name":"built_feature","displayName":"Built Feature","isBasic":true,"children":[{"name":"bridge","displayName":"Bridge","isBasic":true},{"name":"building","displayName":"Building","isBasic":true,"children":[{"name":"skyscraper","displayName":"Skyscraper","basicCategory":"building"}]},{"name":"dam","displayName":"Dam","isBasic":true,"children":[{"name":"weir","displayName":"Weir","basicCategory":"dam"}]},{"name":"dock","displayName":"Dock","isBasic":true},{"name":"garden","displayName":"Garden","isBasic":true,"children":[{"name":"botanical_garden","displayName":"Botanical Garden","basicCategory":"garden"},{"name":"community_garden","displayName":"Community Garden","basicCategory":"garden"}]},{"name":"lookout","displayName":"Lookout","basicCategory":"built_feature"},{"name":"marina","displayName":"Marina","isBasic":true},{"name":"pier","displayName":"Pier","isBasic":true},{"name":"quay","displayName":"Quay","basicCategory":"built_feature"}]},{"name":"land_feature","displayName":"Land Feature","isBasic":true,"children":[{"name":"beach","displayName":"Beach","isBasic":true,"children":[{"name":"beach_combing_area","displayName":"Beach Combing Area","basicCategory":"beach"}]},{"name":"canyon","displayName":"Canyon","isBasic":true},{"name":"cave","displayName":"Cave","basicCategory":"land_feature"},{"name":"crater","displayName":"Crater","basicCategory":"land_feature"},{"name":"desert","displayName":"Desert","basicCategory":"land_feature"},{"name":"forest","displayName":"Forest","isBasic":true},{"name":"geologic_formation","displayName":"Geologic Formation","basicCategory":"land_feature"},{"name":"hill","displayName":"Hill","isBasic":true},{"name":"island","displayName":"Island","isBasic":true},{"name":"mountain","displayName":"Mountain","isBasic":true},{"name":"nature_reserve","displayName":"Nature Reserve","isBasic":true},{"name":"sand_dune","displayName":"Sand Dune","basicCategory":"land_feature"},{"name":"valley","displayName":"Valley","isBasic":true}]},{"name":"scenic_viewpoint","displayName":"Scenic Viewpoint","isBasic":true,"children":[{"name":"skyline","displayName":"Skyline","basicCategory":"scenic_viewpoint"},{"name":"stargazing_area","displayName":"Stargazing Area","basicCategory":"scenic_viewpoint"}]},{"name":"water_feature","displayName":"Water Feature","isBasic":true,"children":[{"name":"canal","displayName":"Canal","isBasic":true},{"name":"hot_springs","displayName":"Hot Springs","isBasic":true},{"name":"lake","displayName":"Lake","isBasic":true},{"name":"ocean","displayName":"Ocean","isBasic":true},{"name":"river","displayName":"River","isBasic":true},{"name":"sea","displayName":"Sea","isBasic":true},{"name":"waterfall","displayName":"Waterfall","isBasic":true}]}]},{"name":"health_care","displayName":"Health Care","isBasic":true,"children":[{"name":"emergency_or_urgent_care_facility","displayName":"Emergency or Urgent Care Facility","isBasic":true,"children":[{"name":"ambulance_or_ems_service","displayName":"Ambulance or EMS Service","basicCategory":"emergency_or_urgent_care_facility"},{"name":"emergency_department","displayName":"Emergency Department","isBasic":true},{"name":"urgent_care_clinic","displayName":"Urgent Care Clinic","isBasic":true},{"name":"walk_in_clinic","displayName":"Walk-In Clinic","isBasic":true}]},{"name":"hospital","displayName":"Hospital","isBasic":true,"children":[{"name":"general_hospital","displayName":"General Hospital","isBasic":true},{"name":"specialty_hospital","displayName":"Specialty Hospital","isBasic":true,"children":[{"name":"childrens_hospital","displayName":"Children's Hospital","basicCategory":"specialty_hospital"},{"name":"long_term_care_hospital","displayName":"Long Term Care Hospital","basicCategory":"specialty_hospital"},{"name":"psychiatric_hospital","displayName":"Psychiatric Hospital","basicCategory":"specialty_hospital"},{"name":"rehabilitation_hospital","displayName":"Rehabilitation Hospital","basicCategory":"specialty_hospital"},{"name":"veterans_hospital","displayName":"Veterans Hospital","basicCategory":"specialty_hospital"}]}]},{"name":"medical_service","displayName":"Medical Service","isBasic":true,"children":[{"name":"blood_and_plasma_donation_center","displayName":"Blood and Plasma Donation Center","basicCategory":"medical_service"},{"name":"ems_training","displayName":"EMS Training","basicCategory":"medical_service"},{"name":"health_insurance_office","displayName":"Health Insurance Office","basicCategory":"medical_service"},{"name":"home_health_care","displayName":"Home Health Care","basicCategory":"medical_service"},{"name":"hospice","displayName":"Hospice","basicCategory":"medical_service"},{"name":"medical_billing","displayName":"Medical Billing","basicCategory":"medical_service"},{"name":"medical_cannabis","displayName":"Medical Cannabis","basicCategory":"medical_service","children":[{"name":"cannabis_clinic","displayName":"Cannabis Clinic","basicCategory":"medical_service"},{"name":"cannabis_collective","displayName":"Cannabis Collective","basicCategory":"medical_service"},{"name":"medical_cannabis_referral","displayName":"Medical Cannabis Referral","basicCategory":"medical_service"}]},{"name":"medical_service_organization","displayName":"Medical Service Organization","basicCategory":"medical_service"},{"name":"medical_transportation","displayName":"Medical Transportation","basicCategory":"medical_service"},{"name":"sperm_clinic","displayName":"Sperm Clinic","basicCategory":"medical_service"}]},{"name":"outpatient_care_facility","displayName":"Outpatient Care Facility","isBasic":true,"children":[{"name":"behavioral_or_mental_health_clinic","displayName":"Behavioral or Mental Health Clinic","isBasic":true,"children":[{"name":"behavioral_or_crisis_service","displayName":"Behavioral or Crisis Service","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"behavior_analysis","displayName":"Behavior Analysis","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"crisis_intervention_service","displayName":"Crisis Intervention Service","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"stress_management_service","displayName":"Stress Management Service","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"suicide_prevention_service","displayName":"Suicide Prevention Service","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"counseling","displayName":"Counseling","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"family_counseling","displayName":"Family Counseling","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"marriage_or_relationship_counseling","displayName":"Marriage or Relationship Counseling","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"sex_therapy","displayName":"Sex Therapy","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychiatry_or_psychology_service","displayName":"Psychiatry or Psychology Service","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"psychiatry","displayName":"Psychiatry","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"child_psychiatry","displayName":"Child Psychiatry","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"geriatric_psychiatry","displayName":"Geriatric Psychiatry","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychoanalysis","displayName":"Psychoanalysis","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"psychology","displayName":"Psychology","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"sports_psychology","displayName":"Sports Psychology","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"psychotherapy","displayName":"Psychotherapy","basicCategory":"behavioral_or_mental_health_clinic","children":[{"name":"art_therapy","displayName":"Art Therapy","basicCategory":"behavioral_or_mental_health_clinic"},{"name":"hypnotherapy","displayName":"Hypnotherapy","basicCategory":"behavioral_or_mental_health_clinic"}]}]},{"name":"sophrology","displayName":"Sophrology","basicCategory":"behavioral_or_mental_health_clinic"}]},{"name":"complementary_and_alternative_medicine","displayName":"Complementary and Alternative Medicine","isBasic":true,"children":[{"name":"acupuncture","displayName":"Acupuncture","basicCategory":"complementary_and_alternative_medicine"},{"name":"aromatherapy","displayName":"Aromatherapy","basicCategory":"complementary_and_alternative_medicine"},{"name":"ayurveda","displayName":"Ayurveda","basicCategory":"complementary_and_alternative_medicine"},{"name":"chiropractic","displayName":"Chiropractic","basicCategory":"complementary_and_alternative_medicine"},{"name":"homeopathy","displayName":"Homeopathy","basicCategory":"complementary_and_alternative_medicine"},{"name":"naturopathic_medicine","displayName":"Naturopathic Medicine","basicCategory":"complementary_and_alternative_medicine"},{"name":"reflexology","displayName":"Reflexology","basicCategory":"complementary_and_alternative_medicine"},{"name":"reiki","displayName":"Reiki","basicCategory":"complementary_and_alternative_medicine"},{"name":"traditional_chinese_medicine","displayName":"Traditional Chinese Medicine","basicCategory":"complementary_and_alternative_medicine","children":[{"name":"tui_na","displayName":"Tui Na","basicCategory":"complementary_and_alternative_medicine"}]}]},{"name":"dental_clinic","displayName":"Dental Clinic","isBasic":true,"children":[{"name":"cosmetic_dentistry","displayName":"Cosmetic Dentistry","basicCategory":"dental_clinic"},{"name":"dental_hygiene","displayName":"Dental Hygiene","basicCategory":"dental_clinic"},{"name":"endodontics","displayName":"Endodontics","basicCategory":"dental_clinic"},{"name":"general_dentistry","displayName":"General Dentistry","basicCategory":"dental_clinic"},{"name":"orthodontics","displayName":"Orthodontics","basicCategory":"dental_clinic"},{"name":"pediatric_dentistry","displayName":"Pediatric Dentistry","basicCategory":"dental_clinic"},{"name":"periodontics","displayName":"Periodontics","basicCategory":"dental_clinic"},{"name":"prosthodontics","displayName":"Prosthodontics","basicCategory":"dental_clinic"}]},{"name":"diagnostics_imaging_or_lab_service","displayName":"Diagnostics Imaging or Lab Service","isBasic":true,"children":[{"name":"diagnostic_imaging","displayName":"Diagnostic Imaging","basicCategory":"diagnostics_imaging_or_lab_service","children":[{"name":"ultrasound_imaging","displayName":"Ultrasound Imaging","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"doctors_office","displayName":"Doctors Office","basicCategory":"diagnostics_imaging_or_lab_service"},{"name":"laboratory_testing","displayName":"Laboratory Testing","basicCategory":"diagnostics_imaging_or_lab_service","children":[{"name":"paternity_testing","displayName":"Paternity Testing","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"pathology","displayName":"Pathology","basicCategory":"diagnostics_imaging_or_lab_service"},{"name":"radiology","displayName":"Radiology","basicCategory":"diagnostics_imaging_or_lab_service"}]},{"name":"pediatric_clinic","displayName":"Pediatric Clinic","isBasic":true,"children":[{"name":"general_pediatrics","displayName":"General Pediatrics","basicCategory":"pediatric_clinic"},{"name":"pediatric_anesthesiology","displayName":"Pediatric Anesthesiology","basicCategory":"pediatric_clinic"},{"name":"pediatric_cardiology","displayName":"Pediatric Cardiology","basicCategory":"pediatric_clinic"},{"name":"pediatric_endocrinology","displayName":"Pediatric Endocrinology","basicCategory":"pediatric_clinic"},{"name":"pediatric_gastroenterology","displayName":"Pediatric Gastroenterology","basicCategory":"pediatric_clinic"},{"name":"pediatric_infectious_disease","displayName":"Pediatric Infectious Disease","basicCategory":"pediatric_clinic"},{"name":"pediatric_nephrology","displayName":"Pediatric Nephrology","basicCategory":"pediatric_clinic"},{"name":"pediatric_neurology","displayName":"Pediatric Neurology","basicCategory":"pediatric_clinic"},{"name":"pediatric_oncology","displayName":"Pediatric Oncology","basicCategory":"pediatric_clinic"},{"name":"pediatric_pulmonology","displayName":"Pediatric Pulmonology","basicCategory":"pediatric_clinic"},{"name":"pediatric_radiology","displayName":"Pediatric Radiology","basicCategory":"pediatric_clinic"}]},{"name":"physical_medicine_and_rehabilitation","displayName":"Physical Medicine and Rehabilitation","isBasic":true,"children":[{"name":"animal_assisted_therapy","displayName":"Animal Assisted Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"occupational_therapy","displayName":"Occupational Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"orthotics","displayName":"Orthotics","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"physical_therapy","displayName":"Physical Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"prosthetics","displayName":"Prosthetics","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"psychomotor_therapy","displayName":"Psychomotor Therapy","basicCategory":"physical_medicine_and_rehabilitation"},{"name":"rehabilitation_center","displayName":"Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation","children":[{"name":"addiction_rehabilitation_center","displayName":"Addiction Rehabilitation Center","basicCategory":"physical_medicine_and_rehabilitation"}]},{"name":"speech_therapy","displayName":"Speech Therapy","basicCategory":"physical_medicine_and_rehabilitation"}]},{"name":"primary_care_or_general_clinic","displayName":"Primary Care or General Clinic","isBasic":true,"children":[{"name":"community_health_center","displayName":"Community Health Center","basicCategory":"primary_care_or_general_clinic"},{"name":"concierge_medicine","displayName":"Concierge Medicine","basicCategory":"primary_care_or_general_clinic"},{"name":"family_practice","displayName":"Family Practice","basicCategory":"primary_care_or_general_clinic"},{"name":"mobile_clinic","displayName":"Mobile Clinic","basicCategory":"primary_care_or_general_clinic"},{"name":"public_health_clinic","displayName":"Public Health Clinic","basicCategory":"primary_care_or_general_clinic"},{"name":"storefront_clinic","displayName":"Storefront Clinic","basicCategory":"primary_care_or_general_clinic"}]},{"name":"reproductive_perinatal_and_womens_care","displayName":"Reproductive Perinatal and Women's Care","isBasic":true,"children":[{"name":"doula_service","displayName":"Doula Service","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"lactation_service","displayName":"Lactation Service","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"maternity_center","displayName":"Maternity Center","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"midwifery","displayName":"Midwifery","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"obstetrics_and_gynecology","displayName":"Obstetrics and Gynecology","basicCategory":"reproductive_perinatal_and_womens_care"},{"name":"prenatal_and_perinatal_care","displayName":"Prenatal and Perinatal Care","basicCategory":"reproductive_perinatal_and_womens_care"}]},{"name":"specialized_health_care","displayName":"Specialized Health Care","isBasic":true,"children":[{"name":"cardiovascular_and_vascular_medicine","displayName":"Cardiovascular and Vascular Medicine","basicCategory":"specialized_health_care","children":[{"name":"cardiology","displayName":"Cardiology","basicCategory":"specialized_health_care"},{"name":"phlebology","displayName":"Phlebology","basicCategory":"specialized_health_care"},{"name":"vascular_medicine","displayName":"Vascular Medicine","basicCategory":"specialized_health_care"}]},{"name":"ear_nose_and_throat","displayName":"Ear Nose and Throat","basicCategory":"specialized_health_care","children":[{"name":"audiology","displayName":"Audiology","basicCategory":"specialized_health_care"},{"name":"otolaryngology","displayName":"Otolaryngology","basicCategory":"specialized_health_care","children":[{"name":"neurotology","displayName":"Neurotology","basicCategory":"specialized_health_care"},{"name":"otology","displayName":"Otology","basicCategory":"specialized_health_care"}]}]},{"name":"endocrinology","displayName":"Endocrinology","basicCategory":"specialized_health_care"},{"name":"gastroenterology","displayName":"Gastroenterology","basicCategory":"specialized_health_care","children":[{"name":"endoscopy","displayName":"Endoscopy","basicCategory":"specialized_health_care"},{"name":"hepatology","displayName":"Hepatology","basicCategory":"specialized_health_care"},{"name":"proctology","displayName":"Proctology","basicCategory":"specialized_health_care"}]},{"name":"genetics","displayName":"Genetics","basicCategory":"specialized_health_care","children":[{"name":"gerontology","displayName":"Gerontology","basicCategory":"specialized_health_care"}]},{"name":"geriatric_medicine","displayName":"Geriatric Medicine","basicCategory":"specialized_health_care"},{"name":"internal_medicine","displayName":"Internal Medicine","basicCategory":"specialized_health_care","children":[{"name":"allergy_and_immunology","displayName":"Allergy and Immunology","basicCategory":"specialized_health_care"},{"name":"infectious_disease","displayName":"Infectious Disease","basicCategory":"specialized_health_care","children":[{"name":"tropical_medicine","displayName":"Tropical Medicine","basicCategory":"specialized_health_care"}]},{"name":"oncology","displayName":"Oncology","basicCategory":"specialized_health_care","children":[{"name":"hematology","displayName":"Hematology","basicCategory":"specialized_health_care"}]},{"name":"rheumatology","displayName":"Rheumatology","basicCategory":"specialized_health_care"}]},{"name":"medical_skin_care","displayName":"Medical Skin Care","basicCategory":"specialized_health_care","children":[{"name":"aesthetic_medicine","displayName":"Aesthetic Medicine","basicCategory":"specialized_health_care"},{"name":"body_contouring","displayName":"Body Contouring","basicCategory":"specialized_health_care"},{"name":"dermatology","displayName":"Dermatology","basicCategory":"specialized_health_care","children":[{"name":"immunodermatology","displayName":"Immunodermatology","basicCategory":"specialized_health_care"}]},{"name":"tattoo_removal","displayName":"Tattoo Removal","basicCategory":"specialized_health_care"}]},{"name":"musculoskeletal_medicine","displayName":"Musculoskeletal Medicine","basicCategory":"specialized_health_care","children":[{"name":"orthopedics","displayName":"Orthopedics","basicCategory":"specialized_health_care"},{"name":"podiatry","displayName":"Podiatry","basicCategory":"specialized_health_care"}]},{"name":"nephrology","displayName":"Nephrology","basicCategory":"specialized_health_care"},{"name":"neurology","displayName":"Neurology","basicCategory":"specialized_health_care","children":[{"name":"neuropathology","displayName":"Neuropathology","basicCategory":"specialized_health_care"}]},{"name":"nursing","displayName":"Nursing","basicCategory":"specialized_health_care"},{"name":"osteopathic_medicine","displayName":"Osteopathic Medicine","basicCategory":"specialized_health_care"},{"name":"pain_management","displayName":"Pain Management","basicCategory":"specialized_health_care","children":[{"name":"anesthesiology","displayName":"Anesthesiology","basicCategory":"specialized_health_care"}]},{"name":"preventive_medicine","displayName":"Preventive Medicine","basicCategory":"specialized_health_care","children":[{"name":"environmental_medicine","displayName":"Environmental Medicine","basicCategory":"specialized_health_care"},{"name":"hyperbaric_medicine","displayName":"Hyperbaric Medicine","basicCategory":"specialized_health_care"},{"name":"occupational_medicine","displayName":"Occupational Medicine","basicCategory":"specialized_health_care"},{"name":"toxicology","displayName":"Toxicology","basicCategory":"specialized_health_care"}]},{"name":"pulmonology","displayName":"Pulmonology","basicCategory":"specialized_health_care","children":[{"name":"sleep_medicine","displayName":"Sleep Medicine","basicCategory":"specialized_health_care"}]},{"name":"sports_medicine","displayName":"Sports Medicine","basicCategory":"specialized_health_care"},{"name":"urology","displayName":"Urology","basicCategory":"specialized_health_care"}]},{"name":"vision_or_eye_care_clinic","displayName":"Vision or Eye Care Clinic","isBasic":true,"children":[{"name":"ophthalmology","displayName":"Ophthalmology","basicCategory":"vision_or_eye_care_clinic","children":[{"name":"refractive_surgery_or_lasik","displayName":"Refractive Surgery or Lasik","basicCategory":"vision_or_eye_care_clinic"},{"name":"retina_services","displayName":"Retina Services","basicCategory":"vision_or_eye_care_clinic"}]},{"name":"optometry","displayName":"Optometry","basicCategory":"vision_or_eye_care_clinic"}]}]},{"name":"specialized_medical_facility","displayName":"Specialized Medical Facility","isBasic":true,"children":[{"name":"abortion_clinic","displayName":"Abortion Clinic","basicCategory":"specialized_medical_facility"},{"name":"abuse_and_addiction_treatment_center","displayName":"Abuse and Addiction Treatment Center","basicCategory":"specialized_medical_facility","children":[{"name":"alcohol_and_drug_treatment_center","displayName":"Alcohol and Drug Treatment Center","basicCategory":"specialized_medical_facility"}]},{"name":"cancer_treatment_center","displayName":"Cancer Treatment Center","basicCategory":"specialized_medical_facility"},{"name":"dialysis_clinic","displayName":"Dialysis Clinic","basicCategory":"specialized_medical_facility"},{"name":"eating_disorder_treatment_center","displayName":"Eating Disorder Treatment Center","basicCategory":"specialized_medical_facility"},{"name":"fertility_clinic","displayName":"Fertility Clinic","basicCategory":"specialized_medical_facility"},{"name":"organ_and_tissue_donor_service","displayName":"Organ and Tissue Donor Service","basicCategory":"specialized_medical_facility"},{"name":"surgery","displayName":"Surgery","isBasic":true,"children":[{"name":"cardiothoracic_surgery","displayName":"Cardiothoracic Surgery","basicCategory":"surgery"},{"name":"oral_and_maxillofacial_surgery","displayName":"Oral and Maxillofacial Surgery","basicCategory":"surgery"},{"name":"orthopedic_surgery","displayName":"Orthopedic Surgery","basicCategory":"surgery","children":[{"name":"pediatric_orthopedic_surgery","displayName":"Pediatric Orthopedic Surgery","basicCategory":"surgery"},{"name":"spine_surgery","displayName":"Spine Surgery","basicCategory":"surgery"}]},{"name":"pediatric_surgery","displayName":"Pediatric Surgery","basicCategory":"surgery"},{"name":"plastic_and_reconstructive_surgery","displayName":"Plastic and Reconstructive Surgery","basicCategory":"surgery","children":[{"name":"cosmetic_surgery","displayName":"Cosmetic Surgery","basicCategory":"surgery"}]},{"name":"surgery_center","displayName":"Surgery Center","basicCategory":"surgery"}]}]}]},{"name":"lifestyle_services","displayName":"Lifestyle Services","isBasic":true,"children":[{"name":"animal_or_pet_service","displayName":"Animal or Pet Service","isBasic":true,"children":[{"name":"animal_adoption_or_rescue","displayName":"Animal Adoption or Rescue","basicCategory":"animal_or_pet_service","children":[{"name":"animal_rescue_service","displayName":"Animal Rescue Service","basicCategory":"animal_or_pet_service"},{"name":"animal_shelter","displayName":"Animal Shelter","basicCategory":"animal_or_pet_service"},{"name":"pet_adoption","displayName":"Pet Adoption","basicCategory":"animal_or_pet_service"}]},{"name":"equine_service","displayName":"Equine Service","basicCategory":"animal_or_pet_service","children":[{"name":"farrier_service","displayName":"Farrier Service","basicCategory":"animal_or_pet_service"},{"name":"horse_boarding","displayName":"Horse Boarding","basicCategory":"animal_or_pet_service"},{"name":"horse_trainer","displayName":"Horse Trainer","basicCategory":"animal_or_pet_service"}]},{"name":"pet_breeder","displayName":"Pet Breeder","basicCategory":"animal_or_pet_service"},{"name":"pet_care_service","displayName":"Pet Care Service","basicCategory":"animal_or_pet_service","children":[{"name":"aquarium_service","displayName":"Aquarium Service","basicCategory":"animal_or_pet_service"},{"name":"dog_walker","displayName":"Dog Walker","basicCategory":"animal_or_pet_service"},{"name":"pet_boarding","displayName":"Pet Boarding","basicCategory":"animal_or_pet_service"},{"name":"pet_groomer","displayName":"Pet Groomer","basicCategory":"animal_or_pet_service"},{"name":"pet_sitting","displayName":"Pet Sitting","basicCategory":"animal_or_pet_service"},{"name":"pet_training","displayName":"Pet Training","basicCategory":"animal_or_pet_service","children":[{"name":"dog_trainer","displayName":"Dog Trainer","basicCategory":"animal_or_pet_service"}]},{"name":"pet_transportation","displayName":"Pet Transportation","basicCategory":"animal_or_pet_service"},{"name":"pet_waste_removal","displayName":"Pet Waste Removal","basicCategory":"animal_or_pet_service"}]},{"name":"pet_cemetery_and_crematorium_service","displayName":"Pet Cemetery and Crematorium Service","basicCategory":"animal_or_pet_service"},{"name":"pet_insurance","displayName":"Pet Insurance","basicCategory":"animal_or_pet_service"},{"name":"pet_photography","displayName":"Pet Photography","basicCategory":"animal_or_pet_service"},{"name":"veterinary_care","displayName":"Veterinary Care","basicCategory":"animal_or_pet_service","children":[{"name":"animal_hospital","displayName":"Animal Hospital","basicCategory":"animal_or_pet_service"},{"name":"animal_physical_therapy","displayName":"Animal Physical Therapy","basicCategory":"animal_or_pet_service"},{"name":"emergency_pet_hospital","displayName":"Emergency Pet Hospital","basicCategory":"animal_or_pet_service"},{"name":"holistic_animal_care","displayName":"Holistic Animal Care","basicCategory":"animal_or_pet_service"},{"name":"pet_hospice","displayName":"Pet Hospice","basicCategory":"animal_or_pet_service"},{"name":"veterinarian","displayName":"Veterinarian","basicCategory":"animal_or_pet_service"}]}]},{"name":"food_service","displayName":"Food Service","isBasic":true,"children":[{"name":"food_consultant","displayName":"Food Consultant","basicCategory":"food_service"},{"name":"food_delivery_service","displayName":"Food Delivery Service","basicCategory":"food_service","children":[{"name":"pizza_delivery_service","displayName":"Pizza Delivery Service","basicCategory":"food_service"}]}]},{"name":"personal_or_beauty_service","displayName":"Personal or Beauty Service","isBasic":true,"children":[{"name":"acne_treatment","displayName":"Acne Treatment","basicCategory":"personal_or_beauty_service"},{"name":"barber","displayName":"Barber","basicCategory":"personal_or_beauty_service","children":[{"name":"mens_grooming_salon","displayName":"Men's Grooming Salon","basicCategory":"personal_or_beauty_service"}]},{"name":"beauty_salon","displayName":"Beauty Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"teeth_jewelry_service","displayName":"Teeth Jewelry Service","basicCategory":"personal_or_beauty_service"}]},{"name":"body_modification","displayName":"Body Modification","basicCategory":"personal_or_beauty_service","children":[{"name":"body_art","displayName":"Body Art","basicCategory":"personal_or_beauty_service"},{"name":"mehndi_henna","displayName":"Mehndi Henna","basicCategory":"personal_or_beauty_service"},{"name":"scalp_micropigmentation","displayName":"Scalp Micropigmentation","basicCategory":"personal_or_beauty_service"},{"name":"tattoo_and_piercing","displayName":"Tattoo and Piercing","basicCategory":"personal_or_beauty_service","children":[{"name":"piercing","displayName":"Piercing","basicCategory":"personal_or_beauty_service"},{"name":"tattoo","displayName":"Tattoo","basicCategory":"personal_or_beauty_service"}]}]},{"name":"eyebrow_service","displayName":"Eyebrow Service","basicCategory":"personal_or_beauty_service"},{"name":"eyelash_service","displayName":"Eyelash Service","basicCategory":"personal_or_beauty_service"},{"name":"foot_care","displayName":"Foot Care","basicCategory":"personal_or_beauty_service"},{"name":"hair_removal","displayName":"Hair Removal","basicCategory":"personal_or_beauty_service","children":[{"name":"laser_hair_removal","displayName":"Laser Hair Removal","basicCategory":"personal_or_beauty_service"},{"name":"sugaring","displayName":"Sugaring","basicCategory":"personal_or_beauty_service"},{"name":"threading_service","displayName":"Threading Service","basicCategory":"personal_or_beauty_service"},{"name":"waxing","displayName":"Waxing","basicCategory":"personal_or_beauty_service"}]},{"name":"hair_replacement","displayName":"Hair Replacement","basicCategory":"personal_or_beauty_service","children":[{"name":"hair_extensions","displayName":"Hair Extensions","basicCategory":"personal_or_beauty_service"},{"name":"hair_loss_center","displayName":"Hair Loss Center","basicCategory":"personal_or_beauty_service"},{"name":"wig_hairpiece_service","displayName":"Wig Hairpiece Service","basicCategory":"personal_or_beauty_service"}]},{"name":"hair_salon","displayName":"Hair Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"blow_dry_blow_out_service","displayName":"Blow Dry Blow Out Service","basicCategory":"personal_or_beauty_service"},{"name":"hair_color_bar","displayName":"Hair Color Bar","basicCategory":"personal_or_beauty_service"},{"name":"hair_stylist","displayName":"Hair Stylist","basicCategory":"personal_or_beauty_service"},{"name":"kids_hair_salon","displayName":"Kids Hair Salon","basicCategory":"personal_or_beauty_service"}]},{"name":"image_consultant","displayName":"Image Consultant","basicCategory":"personal_or_beauty_service"},{"name":"life_coach","displayName":"Life Coach","basicCategory":"personal_or_beauty_service"},{"name":"matchmaker","displayName":"Matchmaker","basicCategory":"personal_or_beauty_service"},{"name":"nail_salon","displayName":"Nail Salon","basicCategory":"personal_or_beauty_service"},{"name":"shoe_repair","displayName":"Shoe Repair","basicCategory":"personal_or_beauty_service"},{"name":"shoe_shining_service","displayName":"Shoe Shining Service","basicCategory":"personal_or_beauty_service"},{"name":"skin_care_and_makeup","displayName":"Skin Care and Makeup","basicCategory":"personal_or_beauty_service","children":[{"name":"esthetician","displayName":"Esthetician","basicCategory":"personal_or_beauty_service"},{"name":"makeup_artist","displayName":"Makeup Artist","basicCategory":"personal_or_beauty_service"},{"name":"permanent_makeup","displayName":"Permanent Makeup","basicCategory":"personal_or_beauty_service"}]},{"name":"tanning_salon","displayName":"Tanning Salon","basicCategory":"personal_or_beauty_service","children":[{"name":"spray_tanning","displayName":"Spray Tanning","basicCategory":"personal_or_beauty_service"},{"name":"tanning_bed","displayName":"Tanning Bed","basicCategory":"personal_or_beauty_service"}]},{"name":"teeth_whitening","displayName":"Teeth Whitening","basicCategory":"personal_or_beauty_service"}]},{"name":"wellness_service","displayName":"Wellness Service","isBasic":true,"children":[{"name":"colonic_hydrotherapy","displayName":"Colonic Hydrotherapy","basicCategory":"wellness_service"},{"name":"cryotherapy","displayName":"Cryotherapy","basicCategory":"wellness_service"},{"name":"halotherapy","displayName":"Halotherapy","basicCategory":"wellness_service"},{"name":"health_and_wellness_club","displayName":"Health and Wellness Club","basicCategory":"wellness_service"},{"name":"health_coaching","displayName":"Health Coaching","basicCategory":"wellness_service"},{"name":"hydrotherapy","displayName":"Hydrotherapy","basicCategory":"wellness_service"},{"name":"iv_hydration","displayName":"IV Hydration","basicCategory":"wellness_service"},{"name":"massage_therapy","displayName":"Massage Therapy","basicCategory":"wellness_service"},{"name":"meditation_center","displayName":"Meditation Center","basicCategory":"wellness_service"},{"name":"nutrition_service","displayName":"Nutrition Service","basicCategory":"wellness_service"},{"name":"oxygen_bar","displayName":"Oxygen Bar","basicCategory":"wellness_service"},{"name":"public_bath_house","displayName":"Public Bath House","basicCategory":"wellness_service","children":[{"name":"onsen","displayName":"Onsen","basicCategory":"wellness_service"},{"name":"turkish_bath","displayName":"Turkish Bath","basicCategory":"wellness_service"}]},{"name":"sauna","displayName":"Sauna","basicCategory":"wellness_service"},{"name":"snuggle_service","displayName":"Snuggle Service","basicCategory":"wellness_service"},{"name":"spa","displayName":"Spa","basicCategory":"wellness_service","children":[{"name":"day_spa","displayName":"Day Spa","basicCategory":"wellness_service"},{"name":"float_spa","displayName":"Float Spa","basicCategory":"wellness_service"},{"name":"health_spa","displayName":"Health Spa","basicCategory":"wellness_service"},{"name":"medical_spa","displayName":"Medical Spa","basicCategory":"wellness_service"}]},{"name":"weight_loss_center","displayName":"Weight Loss Center","basicCategory":"wellness_service"}]}]},{"name":"lodging","displayName":"Lodging","isBasic":true,"children":[{"name":"bed_and_breakfast","displayName":"Bed and Breakfast","isBasic":true},{"name":"cabin","displayName":"Cabin","basicCategory":"lodging"},{"name":"campground","displayName":"Campground","isBasic":true},{"name":"cottage","displayName":"Cottage","basicCategory":"lodging"},{"name":"country_house","displayName":"Country House","basicCategory":"lodging"},{"name":"holiday_park","displayName":"Holiday Park","basicCategory":"lodging"},{"name":"hostel","displayName":"Hostel","basicCategory":"lodging"},{"name":"hotel","displayName":"Hotel","isBasic":true,"children":[{"name":"motel","displayName":"Motel","basicCategory":"hotel"}]},{"name":"houseboat","displayName":"Houseboat","basicCategory":"lodging"},{"name":"inn","displayName":"Inn","isBasic":true},{"name":"lodge","displayName":"Lodge","basicCategory":"lodging"},{"name":"mountain_hut","displayName":"Mountain Hut","basicCategory":"lodging"},{"name":"private_lodging","displayName":"Private Lodging","isBasic":true,"children":[{"name":"guest_house","displayName":"Guest House","basicCategory":"private_lodging"},{"name":"holiday_rental_home","displayName":"Holiday Rental Home","basicCategory":"private_lodging"}]},{"name":"resort","displayName":"Resort","isBasic":true,"children":[{"name":"beach_resort","displayName":"Beach Resort","basicCategory":"resort"},{"name":"ski_resort","displayName":"Ski Resort","basicCategory":"resort"}]},{"name":"retreat","displayName":"Retreat","basicCategory":"lodging","children":[{"name":"health_retreat","displayName":"Health Retreat","basicCategory":"lodging"}]},{"name":"rv_park","displayName":"RV Park","isBasic":true},{"name":"ryokan","displayName":"Ryokan","basicCategory":"lodging"},{"name":"self_catering_accommodation","displayName":"Self Catering Accommodation","basicCategory":"lodging"},{"name":"service_apartment","displayName":"Service Apartment","basicCategory":"lodging"}]},{"name":"services_and_business","displayName":"Services and Business","isBasic":true,"children":[{"name":"agricultural_service","displayName":"Agricultural Service","isBasic":true,"children":[{"name":"agriculture_association","displayName":"Agriculture Association","basicCategory":"agricultural_service"},{"name":"farm","displayName":"Farm","isBasic":true,"children":[{"name":"dairy_farm","displayName":"Dairy Farm","basicCategory":"farm"},{"name":"orchard","displayName":"Orchard","basicCategory":"farm"},{"name":"pig_farm","displayName":"Pig Farm","basicCategory":"farm"},{"name":"poultry_farm","displayName":"Poultry Farm","basicCategory":"farm"},{"name":"ranch","displayName":"Ranch","basicCategory":"farm"},{"name":"urban_farm","displayName":"Urban Farm","basicCategory":"farm"}]},{"name":"farm_equipment_repair_service","displayName":"Farm Equipment Repair Service","basicCategory":"agricultural_service"}]},{"name":"b2b_service","displayName":"B2B Service","isBasic":true,"children":[{"name":"b2b_agriculture_service","displayName":"B2B Agriculture Service","basicCategory":"b2b_service","children":[{"name":"agricultural_cooperative","displayName":"Agricultural Cooperative","basicCategory":"b2b_service"},{"name":"agriculture","displayName":"Agriculture","basicCategory":"b2b_service"},{"name":"apiary_beekeeper","displayName":"Apiary Beekeeper","basicCategory":"b2b_service"},{"name":"b2b_dairy","displayName":"B2B Dairy","basicCategory":"b2b_service"},{"name":"b2b_farming","displayName":"B2B Farming","basicCategory":"b2b_service","children":[{"name":"b2b_farm","displayName":"B2B Farm","basicCategory":"b2b_service"},{"name":"farm_equipment_and_supply","displayName":"Farm Equipment and Supply","basicCategory":"b2b_service","children":[{"name":"fertilizer_store","displayName":"Fertilizer Store","basicCategory":"b2b_service"},{"name":"grain_elevator","displayName":"Grain Elevator","basicCategory":"b2b_service"},{"name":"greenhouse","displayName":"Greenhouse","basicCategory":"b2b_service"}]},{"name":"farming_service","displayName":"Farming Service","basicCategory":"b2b_service"}]},{"name":"b2b_food_products","displayName":"B2B Food Products","basicCategory":"b2b_service"},{"name":"crops_production","displayName":"Crops Production","basicCategory":"b2b_service","children":[{"name":"grain_production","displayName":"Grain Production","basicCategory":"b2b_service"},{"name":"orchards_production","displayName":"Orchards Production","basicCategory":"b2b_service"}]},{"name":"fish_farm_hatchery","displayName":"Fish Farm Hatchery","basicCategory":"b2b_service","children":[{"name":"fish_farm","displayName":"Fish Farm","basicCategory":"b2b_service"}]},{"name":"livestock_breeder","displayName":"Livestock Breeder","basicCategory":"b2b_service"},{"name":"livestock_dealer","displayName":"Livestock Dealer","basicCategory":"b2b_service"},{"name":"poultry_farming","displayName":"Poultry Farming","basicCategory":"b2b_service"}]},{"name":"b2b_energy_and_utility_service","displayName":"B2B Energy and Utility Service","isBasic":true,"children":[{"name":"b2b_mining","displayName":"B2B Mining","basicCategory":"b2b_energy_and_utility_service","children":[{"name":"b2b_coal_and_coke","displayName":"B2B Coal and Coke","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_quarry","displayName":"B2B Quarry","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_oil_and_gas","displayName":"B2B Oil and Gas","basicCategory":"b2b_energy_and_utility_service","children":[{"name":"b2b_oil_and_gas_equipment","displayName":"B2B Oil and Gas Equipment","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_and_gas_exploration_and_development","displayName":"B2B Oil and Gas Exploration and Development","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_and_gas_extraction","displayName":"B2B Oil and Gas Extraction","basicCategory":"b2b_energy_and_utility_service"},{"name":"b2b_oil_refinery","displayName":"B2B Oil Refinery","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_power_plants_and_power_plant_service","displayName":"B2B Power Plants and Power Plant Service","basicCategory":"b2b_energy_and_utility_service"},{"name":"energy_management_service","displayName":"Energy Management Service","basicCategory":"b2b_energy_and_utility_service"}]},{"name":"b2b_environmental_service","displayName":"B2B Environmental Service","basicCategory":"b2b_service","children":[{"name":"b2b_cleaning_and_waste_management","displayName":"B2B Cleaning and Waste Management","basicCategory":"b2b_service"},{"name":"b2b_water_treatment_service","displayName":"B2B Water Treatment Service","basicCategory":"b2b_service"},{"name":"geological_service","displayName":"Geological Service","basicCategory":"b2b_service"},{"name":"logging_contractor","displayName":"Logging Contractor","basicCategory":"b2b_service"},{"name":"logging_equipment_and_supplies","displayName":"Logging Equipment and Supplies","basicCategory":"b2b_service"},{"name":"logging_service","displayName":"Logging Service","basicCategory":"b2b_service"}]},{"name":"b2b_industrial_and_machine_service","displayName":"B2B Industrial and Machine Service","isBasic":true,"children":[{"name":"automation_service","displayName":"Automation Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"b2b_equipment_maintenance_and_repair","displayName":"B2B Equipment Maintenance and Repair","basicCategory":"b2b_industrial_and_machine_service"},{"name":"casting_molding_service","displayName":"Casting Molding Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"chemical_plant","displayName":"Chemical Plant","basicCategory":"b2b_industrial_and_machine_service"},{"name":"inventory_control_service","displayName":"Inventory Control Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"laser_cutting_service","displayName":"Laser Cutting Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"manufacturing_and_industrial_consultant","displayName":"Manufacturing and Industrial Consultant","basicCategory":"b2b_industrial_and_machine_service"},{"name":"metal_plating_service","displayName":"Metal Plating Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"occupational_safety","displayName":"Occupational Safety","basicCategory":"b2b_industrial_and_machine_service"},{"name":"plastic_injection_molding_service","displayName":"Plastic Injection Molding Service","basicCategory":"b2b_industrial_and_machine_service"},{"name":"turnery","displayName":"Turnery","basicCategory":"b2b_industrial_and_machine_service"}]},{"name":"b2b_media_service","displayName":"B2B Media Service","basicCategory":"b2b_service","children":[{"name":"b2b_audio_visual_production","displayName":"B2B Audio Visual Production","basicCategory":"b2b_service"}]},{"name":"b2b_medical_support_service","displayName":"B2B Medical Support Service","basicCategory":"b2b_service","children":[{"name":"b2b_clinical_lab","displayName":"B2B Clinical Lab","basicCategory":"b2b_service"},{"name":"b2b_dental_lab","displayName":"B2B Dental Lab","basicCategory":"b2b_service"},{"name":"b2b_hospital_equipment_and_supplies","displayName":"B2B Hospital Equipment and Supplies","basicCategory":"b2b_service"},{"name":"b2b_surgical_appliances_and_supplies","displayName":"B2B Surgical Appliances and Supplies","basicCategory":"b2b_service"}]},{"name":"b2b_office_and_professional_service","displayName":"B2B Office and Professional Service","isBasic":true,"children":[{"name":"b2b_advertising_and_marketing_service","displayName":"B2B Advertising and Marketing Service","basicCategory":"b2b_office_and_professional_service","children":[{"name":"b2b_direct_mail_advertising","displayName":"B2B Direct Mail Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_marketing_consultant","displayName":"B2B Marketing Consultant","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_newspaper_advertising","displayName":"B2B Newspaper Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_outdoor_advertising","displayName":"B2B Outdoor Advertising","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_promotional_products_and_services","displayName":"B2B Promotional Products and Services","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_publicity_service","displayName":"B2B Publicity Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_radio_and_television_commercials","displayName":"B2B Radio and Television Commercials","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_signage_service","displayName":"B2B Signage Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_telemarketing_service","displayName":"B2B Telemarketing Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_background_check_service","displayName":"B2B Background Check Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_business_management_service","displayName":"B2B Business Management Service","basicCategory":"b2b_office_and_professional_service","children":[{"name":"b2b_executive_search_consultants","displayName":"B2B Executive Search Consultants","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_secretarial_service","displayName":"B2B Secretarial Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_domestic_trade_service","displayName":"B2B Domestic Trade Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_human_resource_service","displayName":"B2B Human Resource Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_international_trade_service","displayName":"B2B International Trade Service","basicCategory":"b2b_office_and_professional_service"},{"name":"b2b_records_storage_service","displayName":"B2B Records Storage Service","basicCategory":"b2b_office_and_professional_service"},{"name":"restaurant_management","displayName":"Restaurant Management","basicCategory":"b2b_office_and_professional_service"},{"name":"transcription_service","displayName":"Transcription Service","basicCategory":"b2b_office_and_professional_service"},{"name":"translating_and_interpreting_service","displayName":"Translating and Interpreting Service","basicCategory":"b2b_office_and_professional_service"}]},{"name":"b2b_science_and_technology_service","displayName":"B2B Science and Technology Service","isBasic":true,"children":[{"name":"b2b_scientific_equipment","displayName":"B2B Scientific Equipment","basicCategory":"b2b_science_and_technology_service"},{"name":"b2b_scientific_lab","displayName":"B2B Scientific Lab","basicCategory":"b2b_science_and_technology_service"}]},{"name":"b2b_telecommunications_service","displayName":"B2B Telecommunications Service","basicCategory":"b2b_service","children":[{"name":"tower_communication_service","displayName":"Tower Communication Service","basicCategory":"b2b_service"}]},{"name":"b2b_transportation_and_storage_service","displayName":"B2B Transportation and Storage Service","isBasic":true,"children":[{"name":"b2b_storage","displayName":"B2B Storage","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"warehouse","displayName":"Warehouse","basicCategory":"b2b_transportation_and_storage_service"},{"name":"warehouse_rental_service_yard","displayName":"Warehouse Rental Service Yard","basicCategory":"b2b_transportation_and_storage_service"}]},{"name":"freight_and_cargo_service","displayName":"Freight and Cargo Service","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"distribution_service","displayName":"Distribution Service","basicCategory":"b2b_transportation_and_storage_service"},{"name":"freight_forwarding_agency","displayName":"Freight Forwarding Agency","basicCategory":"b2b_transportation_and_storage_service"}]},{"name":"motor_freight_trucking","displayName":"Motor Freight Trucking","basicCategory":"b2b_transportation_and_storage_service"},{"name":"pipeline_transportation","displayName":"Pipeline Transportation","basicCategory":"b2b_transportation_and_storage_service"},{"name":"railroad_freight","displayName":"Railroad Freight","basicCategory":"b2b_transportation_and_storage_service"},{"name":"truck_and_industrial_vehicle_services","displayName":"Truck and Industrial Vehicle Services","basicCategory":"b2b_transportation_and_storage_service","children":[{"name":"tractor_dealer","displayName":"Tractor Dealer","basicCategory":"b2b_transportation_and_storage_service"},{"name":"truck_parts_and_accessories","displayName":"Truck Parts and Accessories","basicCategory":"b2b_transportation_and_storage_service"}]}]},{"name":"commercial_industrial","displayName":"Commercial Industrial","basicCategory":"b2b_service"},{"name":"manufacturer","displayName":"Manufacturer","isBasic":true,"children":[{"name":"apparel_manufacturer","displayName":"Apparel Manufacturer","basicCategory":"manufacturer","children":[{"name":"shoe_factory_manufacturer","displayName":"Shoe Factory Manufacturer","basicCategory":"manufacturer"}]},{"name":"appliance_manufacturer","displayName":"Appliance Manufacturer","basicCategory":"manufacturer"},{"name":"cosmetic_products_manufacturer","displayName":"Cosmetic Products Manufacturer","basicCategory":"manufacturer"},{"name":"furniture_manufacturer","displayName":"Furniture Manufacturer","basicCategory":"manufacturer"},{"name":"glass_manufacturer","displayName":"Glass Manufacturer","basicCategory":"manufacturer"},{"name":"hardware_and_fastener_manufacturer","displayName":"Hardware and Fastener Manufacturer","basicCategory":"manufacturer"},{"name":"jewelry_and_watches_manufacturer","displayName":"Jewelry and Watches Manufacturer","basicCategory":"manufacturer"},{"name":"jewelry_manufacturer","displayName":"Jewelry Manufacturer","basicCategory":"manufacturer"},{"name":"leather_products_manufacturer","displayName":"Leather Products Manufacturer","basicCategory":"manufacturer"},{"name":"lighting_fixture_manufacturer","displayName":"Lighting Fixture Manufacturer","basicCategory":"manufacturer"},{"name":"machinery_and_tool_manufacturer","displayName":"Machinery and Tool Manufacturer","basicCategory":"manufacturer","children":[{"name":"industrial_equipment_manufacturer","displayName":"Industrial Equipment Manufacturer","basicCategory":"manufacturer"}]},{"name":"mattress_manufacturing","displayName":"Mattress Manufacturing","basicCategory":"manufacturer"},{"name":"metal_fabricator","displayName":"Metal Fabricator","basicCategory":"manufacturer","children":[{"name":"iron_fabricator","displayName":"Iron Fabricator","basicCategory":"manufacturer"},{"name":"sheet_metal_fabricator","displayName":"Sheet Metal Fabricator","basicCategory":"manufacturer"},{"name":"steel_fabricator","displayName":"Steel Fabricator","basicCategory":"manufacturer"}]},{"name":"mill","displayName":"Mill","basicCategory":"manufacturer","children":[{"name":"cotton_mill","displayName":"Cotton Mill","basicCategory":"manufacturer"},{"name":"flour_mill","displayName":"Flour Mill","basicCategory":"manufacturer"},{"name":"paper_mill","displayName":"Paper Mill","basicCategory":"manufacturer"},{"name":"rice_mill","displayName":"Rice Mill","basicCategory":"manufacturer"},{"name":"sawmill","displayName":"Sawmill","basicCategory":"manufacturer"},{"name":"textile_mill","displayName":"Textile Mill","basicCategory":"manufacturer"},{"name":"weaving_mill","displayName":"Weaving Mill","basicCategory":"manufacturer"}]},{"name":"plastic_manufacturer","displayName":"Plastic Manufacturer","basicCategory":"manufacturer"},{"name":"rubber_and_plastics_manufacturer","displayName":"Rubber and Plastics Manufacturer","basicCategory":"manufacturer"},{"name":"sporting_goods_manufacturer","displayName":"Sporting Goods Manufacturer","basicCategory":"manufacturer"},{"name":"textile_manufacturer","displayName":"Textile Manufacturer","basicCategory":"manufacturer"},{"name":"vehicle_manufacturer","displayName":"Vehicle Manufacturer","basicCategory":"manufacturer","children":[{"name":"aircraft_manufacturer","displayName":"Aircraft Manufacturer","basicCategory":"manufacturer"},{"name":"auto_manufacturer","displayName":"Auto Manufacturer","basicCategory":"manufacturer"},{"name":"boat_and_ship_manufacturer","displayName":"Boat and Ship Manufacturer","basicCategory":"manufacturer"},{"name":"motorcycle_manufacturer","displayName":"Motorcycle Manufacturer","basicCategory":"manufacturer"}]},{"name":"vehicle_parts_manufacturer","displayName":"Vehicle Parts Manufacturer","basicCategory":"manufacturer","children":[{"name":"tires_manufacturer","displayName":"Tires Manufacturer","basicCategory":"manufacturer"}]}]},{"name":"supplier_or_distributor","displayName":"Supplier or Distributor","isBasic":true,"children":[{"name":"abrasives_supplier","displayName":"Abrasives Supplier","basicCategory":"supplier_or_distributor"},{"name":"aggregate_supplier","displayName":"Aggregate Supplier","basicCategory":"supplier_or_distributor"},{"name":"aluminum_supplier","displayName":"Aluminum Supplier","basicCategory":"supplier_or_distributor"},{"name":"awning_supplier","displayName":"Awning Supplier","basicCategory":"supplier_or_distributor"},{"name":"battery_inverter_supplier","displayName":"Battery Inverter Supplier","basicCategory":"supplier_or_distributor"},{"name":"bearing_supplier","displayName":"Bearing Supplier","basicCategory":"supplier_or_distributor"},{"name":"beauty_product_supplier","displayName":"Beauty Product Supplier","basicCategory":"supplier_or_distributor"},{"name":"beverage_supplier","displayName":"Beverage Supplier","basicCategory":"supplier_or_distributor"},{"name":"box_lunch_supplier","displayName":"Box Lunch Supplier","basicCategory":"supplier_or_distributor"},{"name":"business_office_supplies_and_stationery","displayName":"Business Office Supplies and Stationery","basicCategory":"supplier_or_distributor"},{"name":"cement_supplier","displayName":"Cement Supplier","basicCategory":"supplier_or_distributor"},{"name":"cleaning_products_supplier","displayName":"Cleaning Products Supplier","basicCategory":"supplier_or_distributor"},{"name":"corporate_gift_supplier","displayName":"Corporate Gift Supplier","basicCategory":"supplier_or_distributor"},{"name":"electronic_equipment_supplier","displayName":"Electronic Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"electronic_parts_supplier","displayName":"Electronic Parts Supplier","basicCategory":"supplier_or_distributor"},{"name":"fastener_supplier","displayName":"Fastener Supplier","basicCategory":"supplier_or_distributor"},{"name":"food_beverage_distributor","displayName":"Food Beverage Distributor","basicCategory":"supplier_or_distributor"},{"name":"granite_supplier","displayName":"Granite Supplier","basicCategory":"supplier_or_distributor"},{"name":"hotel_supply_service","displayName":"Hotel Supply Service","basicCategory":"supplier_or_distributor"},{"name":"hvac_supplier","displayName":"HVAC Supplier","basicCategory":"supplier_or_distributor"},{"name":"hydraulic_equipment_supplier","displayName":"Hydraulic Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"ice_supplier","displayName":"Ice Supplier","basicCategory":"supplier_or_distributor"},{"name":"import_export_service","displayName":"Import Export Service","basicCategory":"supplier_or_distributor","children":[{"name":"exporter","displayName":"Exporter","basicCategory":"supplier_or_distributor","children":[{"name":"food_and_beverage_exporter","displayName":"Food and Beverage Exporter","basicCategory":"supplier_or_distributor"}]},{"name":"importer","displayName":"Importer","basicCategory":"supplier_or_distributor"}]},{"name":"laboratory_equipment_supplier","displayName":"Laboratory Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"metal_supplier","displayName":"Metal Supplier","basicCategory":"supplier_or_distributor"},{"name":"pipe_supplier","displayName":"Pipe Supplier","basicCategory":"supplier_or_distributor"},{"name":"playground_equipment_supplier","displayName":"Playground Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"printing_equipment_supplier","displayName":"Printing Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"propane_supplier","displayName":"Propane Supplier","basicCategory":"supplier_or_distributor"},{"name":"restaurant_equipment_and_supply","displayName":"Restaurant Equipment and Supply","basicCategory":"supplier_or_distributor"},{"name":"retaining_wall_supplier","displayName":"Retaining Wall Supplier","basicCategory":"supplier_or_distributor"},{"name":"sand_and_gravel_supplier","displayName":"Sand and Gravel Supplier","basicCategory":"supplier_or_distributor"},{"name":"scale_supplier","displayName":"Scale Supplier","basicCategory":"supplier_or_distributor"},{"name":"seal_and_hanko_supplier","displayName":"Seal and Hanko Supplier","basicCategory":"supplier_or_distributor"},{"name":"spring_supplier","displayName":"Spring Supplier","basicCategory":"supplier_or_distributor"},{"name":"stone_supplier","displayName":"Stone Supplier","basicCategory":"supplier_or_distributor"},{"name":"tableware_supplier","displayName":"Tableware Supplier","basicCategory":"supplier_or_distributor"},{"name":"tent_house_supplier","displayName":"Tent House Supplier","basicCategory":"supplier_or_distributor"},{"name":"thread_supplier","displayName":"Thread Supplier","basicCategory":"supplier_or_distributor"},{"name":"vending_machine_supplier","displayName":"Vending Machine Supplier","basicCategory":"supplier_or_distributor"},{"name":"water_softening_equipment_supplier","displayName":"Water Softening Equipment Supplier","basicCategory":"supplier_or_distributor"},{"name":"window_supplier","displayName":"Window Supplier","basicCategory":"supplier_or_distributor"}]},{"name":"wholesaler","displayName":"Wholesaler","isBasic":true,"children":[{"name":"computer_wholesaler","displayName":"Computer Wholesaler","basicCategory":"wholesaler"},{"name":"electrical_wholesaler","displayName":"Electrical Wholesaler","basicCategory":"wholesaler"},{"name":"fabric_wholesaler","displayName":"Fabric Wholesaler","basicCategory":"wholesaler"},{"name":"fitness_equipment_wholesaler","displayName":"Fitness Equipment Wholesaler","basicCategory":"wholesaler"},{"name":"fmcg_wholesaler","displayName":"Fmcg Wholesaler","basicCategory":"wholesaler"},{"name":"footwear_wholesaler","displayName":"Footwear Wholesaler","basicCategory":"wholesaler"},{"name":"furniture_wholesaler","displayName":"Furniture Wholesaler","basicCategory":"wholesaler"},{"name":"greengrocer","displayName":"Greengrocer","basicCategory":"wholesaler"},{"name":"industrial_spares_and_products_wholesaler","displayName":"Industrial Spares and Products Wholesaler","basicCategory":"wholesaler"},{"name":"iron_and_steel_store","displayName":"Iron and Steel Store","basicCategory":"wholesaler"},{"name":"lingerie_wholesaler","displayName":"Lingerie Wholesaler","basicCategory":"wholesaler"},{"name":"meat_wholesaler","displayName":"Meat Wholesaler","basicCategory":"wholesaler"},{"name":"optical_wholesaler","displayName":"Optical Wholesaler","basicCategory":"wholesaler"},{"name":"pharmaceutical_products_wholesaler","displayName":"Pharmaceutical Products Wholesaler","basicCategory":"wholesaler"},{"name":"produce_wholesaler","displayName":"Produce Wholesaler","basicCategory":"wholesaler"},{"name":"restaurant_wholesale","displayName":"Restaurant Wholesale","basicCategory":"wholesaler"},{"name":"seafood_wholesaler","displayName":"Seafood Wholesaler","basicCategory":"wholesaler"},{"name":"spices_wholesaler","displayName":"Spices Wholesaler","basicCategory":"wholesaler"},{"name":"tea_wholesaler","displayName":"Tea Wholesaler","basicCategory":"wholesaler"},{"name":"threads_and_yarns_wholesaler","displayName":"Threads and Yarns Wholesaler","basicCategory":"wholesaler"},{"name":"tools_wholesaler","displayName":"Tools Wholesaler","basicCategory":"wholesaler"},{"name":"wholesale_florist","displayName":"Wholesale Florist","basicCategory":"wholesaler"},{"name":"wholesale_grocer","displayName":"Wholesale Grocer","basicCategory":"wholesaler"},{"name":"wine_wholesaler","displayName":"Wine Wholesaler","basicCategory":"wholesaler"}]}]},{"name":"building_or_construction_service","displayName":"Building or Construction Service","isBasic":true,"children":[{"name":"blacksmith","displayName":"Blacksmith","basicCategory":"building_or_construction_service"},{"name":"blueprinter","displayName":"Blueprinter","basicCategory":"building_or_construction_service"},{"name":"civil_engineer","displayName":"Civil Engineer","basicCategory":"building_or_construction_service"},{"name":"construction_management","displayName":"Construction Management","basicCategory":"building_or_construction_service"},{"name":"crane_service","displayName":"Crane Service","basicCategory":"building_or_construction_service"},{"name":"engineering_service","displayName":"Engineering Service","basicCategory":"building_or_construction_service"},{"name":"gravel_professional","displayName":"Gravel Professional","basicCategory":"building_or_construction_service"},{"name":"inspection_service","displayName":"Inspection Service","basicCategory":"building_or_construction_service"},{"name":"instrumentation_engineer","displayName":"Instrumentation Engineer","basicCategory":"building_or_construction_service"},{"name":"ironworker","displayName":"Ironworker","basicCategory":"building_or_construction_service"},{"name":"lime_professional","displayName":"Lime Professional","basicCategory":"building_or_construction_service"},{"name":"marble_and_granite_professional","displayName":"Marble and Granite Professional","basicCategory":"building_or_construction_service"},{"name":"masonry_contractor","displayName":"Masonry Contractor","basicCategory":"building_or_construction_service"},{"name":"mechanical_engineer","displayName":"Mechanical Engineer","basicCategory":"building_or_construction_service"},{"name":"metal_material_expert","displayName":"Metal Material Expert","basicCategory":"building_or_construction_service"},{"name":"road_contractor","displayName":"Road Contractor","basicCategory":"building_or_construction_service"},{"name":"stone_and_masonry","displayName":"Stone and Masonry","basicCategory":"building_or_construction_service"},{"name":"welder","displayName":"Welder","basicCategory":"building_or_construction_service"}]},{"name":"corporate_or_business_office","displayName":"Corporate or Business Office","isBasic":true,"children":[{"name":"auto_company","displayName":"Auto Company","basicCategory":"corporate_or_business_office"},{"name":"bags_luggage_company","displayName":"Bags Luggage Company","basicCategory":"corporate_or_business_office"},{"name":"biotechnology_company","displayName":"Biotechnology Company","basicCategory":"corporate_or_business_office"},{"name":"bottled_water_company","displayName":"Bottled Water Company","basicCategory":"corporate_or_business_office"},{"name":"clothing_company","displayName":"Clothing Company","basicCategory":"corporate_or_business_office"},{"name":"energy_company","displayName":"Energy Company","basicCategory":"corporate_or_business_office"},{"name":"ferry_boat_company","displayName":"Ferry Boat Company","basicCategory":"corporate_or_business_office"},{"name":"industrial_company","displayName":"Industrial Company","basicCategory":"corporate_or_business_office"},{"name":"information_technology_company","displayName":"Information Technology Company","basicCategory":"corporate_or_business_office"},{"name":"pharmaceutical_company","displayName":"Pharmaceutical Company","basicCategory":"corporate_or_business_office"},{"name":"plastics_company","displayName":"Plastics Company","basicCategory":"corporate_or_business_office"},{"name":"private_association","displayName":"Private Association","basicCategory":"corporate_or_business_office"},{"name":"telecommunications_company","displayName":"Telecommunications Company","basicCategory":"corporate_or_business_office"},{"name":"tobacco_company","displayName":"Tobacco Company","basicCategory":"corporate_or_business_office"},{"name":"travel_company","displayName":"Travel Company","basicCategory":"corporate_or_business_office"}]},{"name":"design_service","displayName":"Design Service","isBasic":true,"children":[{"name":"architect","displayName":"Architect","basicCategory":"design_service"},{"name":"architectural_designer","displayName":"Architectural Designer","basicCategory":"design_service"},{"name":"graphic_designer","displayName":"Graphic Designer","basicCategory":"design_service"},{"name":"product_design","displayName":"Product Design","basicCategory":"design_service"},{"name":"sign_making","displayName":"Sign Making","basicCategory":"design_service"},{"name":"web_designer","displayName":"Web Designer","basicCategory":"design_service"}]},{"name":"environmental_or_ecological_service","displayName":"Environmental or Ecological Service","isBasic":true,"children":[{"name":"environmental_abatement_service","displayName":"Environmental Abatement Service","basicCategory":"environmental_or_ecological_service"},{"name":"environmental_conservation_organization","displayName":"Environmental Conservation Organization","basicCategory":"environmental_or_ecological_service"},{"name":"environmental_testing_service","displayName":"Environmental Testing Service","basicCategory":"environmental_or_ecological_service"},{"name":"forestry_service","displayName":"Forestry Service","basicCategory":"environmental_or_ecological_service"},{"name":"wildlife_control","displayName":"Wildlife Control","basicCategory":"environmental_or_ecological_service"}]},{"name":"event_or_party_service","displayName":"Event or Party Service","isBasic":true,"children":[{"name":"audiovisual_equipment_rental","displayName":"Audiovisual Equipment Rental","basicCategory":"event_or_party_service"},{"name":"balloon_service","displayName":"Balloon Service","basicCategory":"event_or_party_service"},{"name":"bartender","displayName":"Bartender","basicCategory":"event_or_party_service"},{"name":"boat_charter","displayName":"Boat Charter","basicCategory":"event_or_party_service"},{"name":"bounce_house_rental","displayName":"Bounce House Rental","basicCategory":"event_or_party_service"},{"name":"caricature","displayName":"Caricature","basicCategory":"event_or_party_service"},{"name":"caterer","displayName":"Caterer","basicCategory":"event_or_party_service"},{"name":"clown","displayName":"Clown","basicCategory":"event_or_party_service"},{"name":"dj_service","displayName":"DJ Service","basicCategory":"event_or_party_service"},{"name":"event_technology_service","displayName":"Event Technology Service","basicCategory":"event_or_party_service"},{"name":"face_painting","displayName":"Face Painting","basicCategory":"event_or_party_service"},{"name":"floral_designer","displayName":"Floral Designer","basicCategory":"event_or_party_service"},{"name":"game_truck_rental","displayName":"Game Truck Rental","basicCategory":"event_or_party_service"},{"name":"golf_cart_rental","displayName":"Golf Cart Rental","basicCategory":"event_or_party_service"},{"name":"henna_artist","displayName":"Henna Artist","basicCategory":"event_or_party_service"},{"name":"karaoke_rental","displayName":"Karaoke Rental","basicCategory":"event_or_party_service"},{"name":"kids_recreation_and_party","displayName":"Kids Recreation and Party","basicCategory":"event_or_party_service"},{"name":"magician","displayName":"Magician","basicCategory":"event_or_party_service"},{"name":"mohel","displayName":"Mohel","basicCategory":"event_or_party_service"},{"name":"musician","displayName":"Musician","basicCategory":"event_or_party_service"},{"name":"officiating_service","displayName":"Officiating Service","basicCategory":"event_or_party_service"},{"name":"party_and_event_planning","displayName":"Party and Event Planning","basicCategory":"event_or_party_service"},{"name":"party_bike_rental","displayName":"Party Bike Rental","basicCategory":"event_or_party_service"},{"name":"party_bus_rental","displayName":"Party Bus Rental","basicCategory":"event_or_party_service"},{"name":"party_character","displayName":"Party Character","basicCategory":"event_or_party_service"},{"name":"party_equipment_rental","displayName":"Party Equipment Rental","basicCategory":"event_or_party_service"},{"name":"personal_chef","displayName":"Personal Chef","basicCategory":"event_or_party_service"},{"name":"photo_booth_rental","displayName":"Photo Booth Rental","basicCategory":"event_or_party_service"},{"name":"silent_disco","displayName":"Silent Disco","basicCategory":"event_or_party_service"},{"name":"sommelier_service","displayName":"Sommelier Service","basicCategory":"event_or_party_service"},{"name":"team_building_activity","displayName":"Team Building Activity","basicCategory":"event_or_party_service"},{"name":"trivia_host","displayName":"Trivia Host","basicCategory":"event_or_party_service"},{"name":"valet_service","displayName":"Valet Service","basicCategory":"event_or_party_service"},{"name":"videographer","displayName":"Videographer","basicCategory":"event_or_party_service"},{"name":"wedding_chapel","displayName":"Wedding Chapel","basicCategory":"event_or_party_service"},{"name":"wedding_planning","displayName":"Wedding Planning","basicCategory":"event_or_party_service"}]},{"name":"family_service","displayName":"Family Service","isBasic":true,"children":[{"name":"adoption_service","displayName":"Adoption Service","basicCategory":"family_service"},{"name":"child_care_and_day_care","displayName":"Child Care and Day Care","basicCategory":"family_service","children":[{"name":"day_care_preschool","displayName":"Day Care Preschool","basicCategory":"family_service"}]},{"name":"elder_care_planning","displayName":"Elder Care Planning","basicCategory":"family_service"},{"name":"family_service_center","displayName":"Family Service Center","basicCategory":"family_service"},{"name":"funeral_service","displayName":"Funeral Service","basicCategory":"family_service","children":[{"name":"cremation_service","displayName":"Cremation Service","basicCategory":"family_service"},{"name":"mortuary_service","displayName":"Mortuary Service","basicCategory":"family_service"}]},{"name":"genealogist","displayName":"Genealogist","basicCategory":"family_service"},{"name":"mobility_equipment_service","displayName":"Mobility Equipment Service","basicCategory":"family_service"},{"name":"nanny_service","displayName":"Nanny Service","basicCategory":"family_service"}]},{"name":"financial_service","displayName":"Financial Service","isBasic":true,"children":[{"name":"accountant","displayName":"Accountant","basicCategory":"financial_service"},{"name":"appraisal_service","displayName":"Appraisal Service","basicCategory":"financial_service"},{"name":"atm","displayName":"ATM","isBasic":true},{"name":"bank_or_credit_union","displayName":"Bank or Credit Union","isBasic":true,"children":[{"name":"bank","displayName":"Bank","basicCategory":"bank_or_credit_union"},{"name":"credit_union","displayName":"Credit Union","basicCategory":"bank_or_credit_union"}]},{"name":"broker","displayName":"Broker","basicCategory":"financial_service","children":[{"name":"business_broker","displayName":"Business Broker","basicCategory":"financial_service"},{"name":"stock_and_bond_broker","displayName":"Stock and Bond Broker","basicCategory":"financial_service"}]},{"name":"business_banking_service","displayName":"Business Banking Service","basicCategory":"financial_service"},{"name":"business_financing","displayName":"Business Financing","basicCategory":"financial_service"},{"name":"check_cashing_payday_loans","displayName":"Check Cashing Payday Loans","basicCategory":"financial_service"},{"name":"coin_dealer","displayName":"Coin Dealer","basicCategory":"financial_service"},{"name":"collection_agency","displayName":"Collection Agency","basicCategory":"financial_service"},{"name":"credit_and_debt_counseling","displayName":"Credit and Debt Counseling","basicCategory":"financial_service"},{"name":"currency_exchange","displayName":"Currency Exchange","basicCategory":"financial_service"},{"name":"customs_broker","displayName":"Customs Broker","basicCategory":"financial_service"},{"name":"debt_relief_service","displayName":"Debt Relief Service","basicCategory":"financial_service"},{"name":"financial_advising","displayName":"Financial Advising","basicCategory":"financial_service"},{"name":"gold_buyer","displayName":"Gold Buyer","basicCategory":"financial_service"},{"name":"holding_company","displayName":"Holding Company","basicCategory":"financial_service"},{"name":"installment_loans","displayName":"Installment Loans","basicCategory":"financial_service","children":[{"name":"auto_loan_provider","displayName":"Auto Loan Provider","basicCategory":"financial_service"},{"name":"mortgage_lender","displayName":"Mortgage Lender","basicCategory":"financial_service"}]},{"name":"insurance_agency","displayName":"Insurance Agency","basicCategory":"financial_service","children":[{"name":"auto_insurance","displayName":"Auto Insurance","basicCategory":"financial_service"},{"name":"farm_insurance","displayName":"Farm Insurance","basicCategory":"financial_service"},{"name":"fidelity_and_surety_bonds","displayName":"Fidelity and Surety Bonds","basicCategory":"financial_service"},{"name":"home_and_rental_insurance","displayName":"Home and Rental Insurance","basicCategory":"financial_service"},{"name":"life_insurance","displayName":"Life Insurance","basicCategory":"financial_service"}]},{"name":"investing","displayName":"Investing","basicCategory":"financial_service"},{"name":"investment_management_company","displayName":"Investment Management Company","basicCategory":"financial_service"},{"name":"money_transfer_service","displayName":"Money Transfer Service","basicCategory":"financial_service"},{"name":"mortgage_broker","displayName":"Mortgage Broker","basicCategory":"financial_service"},{"name":"private_equity_firm","displayName":"Private Equity Firm","basicCategory":"financial_service"},{"name":"public_adjuster","displayName":"Public Adjuster","basicCategory":"financial_service"},{"name":"real_estate_investment","displayName":"Real Estate Investment","basicCategory":"financial_service"},{"name":"tax_service","displayName":"Tax Service","basicCategory":"financial_service"},{"name":"trusts","displayName":"Trusts","basicCategory":"financial_service"}]},{"name":"home_service","displayName":"Home Service","isBasic":true,"children":[{"name":"air_duct_cleaning_service","displayName":"Air Duct Cleaning Service","basicCategory":"home_service"},{"name":"antenna_service","displayName":"Antenna Service","basicCategory":"home_service"},{"name":"appliance_repair_service","displayName":"Appliance Repair Service","basicCategory":"home_service"},{"name":"artificial_turf","displayName":"Artificial Turf","basicCategory":"home_service"},{"name":"bathroom_remodeling","displayName":"Bathroom Remodeling","basicCategory":"home_service"},{"name":"bathtub_and_sink_repair","displayName":"Bathtub and Sink Repair","basicCategory":"home_service"},{"name":"cabinet_sales_service","displayName":"Cabinet Sales Service","basicCategory":"home_service"},{"name":"carpenter","displayName":"Carpenter","basicCategory":"home_service"},{"name":"carpet_cleaning","displayName":"Carpet Cleaning","basicCategory":"home_service"},{"name":"carpet_dyeing","displayName":"Carpet Dyeing","basicCategory":"home_service"},{"name":"carpet_installation","displayName":"Carpet Installation","basicCategory":"home_service"},{"name":"ceiling_and_roofing_repair_and_service","displayName":"Ceiling and Roofing Repair and Service","basicCategory":"home_service","children":[{"name":"ceiling_service","displayName":"Ceiling Service","basicCategory":"home_service"},{"name":"roofing","displayName":"Roofing","basicCategory":"home_service"}]},{"name":"childproofing","displayName":"Childproofing","basicCategory":"home_service"},{"name":"chimney_service","displayName":"Chimney Service","basicCategory":"home_service","children":[{"name":"chimney_sweep","displayName":"Chimney Sweep","basicCategory":"home_service"}]},{"name":"clock_repair_service","displayName":"Clock Repair Service","basicCategory":"home_service"},{"name":"closet_remodeling","displayName":"Closet Remodeling","basicCategory":"home_service"},{"name":"community_book_box","displayName":"Community Book Box","basicCategory":"home_service"},{"name":"contractor","displayName":"Contractor","basicCategory":"home_service","children":[{"name":"altering_and_remodeling_contractor","displayName":"Altering and Remodeling Contractor","basicCategory":"home_service"},{"name":"building_contractor","displayName":"Building Contractor","basicCategory":"home_service"},{"name":"flooring_contractor","displayName":"Flooring Contractor","basicCategory":"home_service"},{"name":"paving_contractor","displayName":"Paving Contractor","basicCategory":"home_service"}]},{"name":"countertop_installation","displayName":"Countertop Installation","basicCategory":"home_service"},{"name":"damage_restoration","displayName":"Damage Restoration","basicCategory":"home_service","children":[{"name":"fire_and_water_damage_restoration","displayName":"Fire and Water Damage Restoration","basicCategory":"home_service"}]},{"name":"deck_and_railing_sales_service","displayName":"Deck and Railing Sales Service","basicCategory":"home_service"},{"name":"demolition_service","displayName":"Demolition Service","basicCategory":"home_service"},{"name":"donation_center","displayName":"Donation Center","basicCategory":"home_service"},{"name":"door_sales_service","displayName":"Door Sales Service","basicCategory":"home_service"},{"name":"drywall_service","displayName":"Drywall Service","basicCategory":"home_service"},{"name":"electrician","displayName":"Electrician","basicCategory":"home_service"},{"name":"excavation_service","displayName":"Excavation Service","basicCategory":"home_service"},{"name":"exterior_design","displayName":"Exterior Design","basicCategory":"home_service"},{"name":"fence_and_gate_sales_service","displayName":"Fence and Gate Sales Service","basicCategory":"home_service"},{"name":"feng_shui","displayName":"Feng Shui","basicCategory":"home_service"},{"name":"fire_protection_service","displayName":"Fire Protection Service","basicCategory":"home_service"},{"name":"fireplace_service","displayName":"Fireplace Service","basicCategory":"home_service"},{"name":"firewood","displayName":"Firewood","basicCategory":"home_service"},{"name":"foundation_repair","displayName":"Foundation Repair","basicCategory":"home_service"},{"name":"furniture_assembly","displayName":"Furniture Assembly","basicCategory":"home_service"},{"name":"furniture_rental_service","displayName":"Furniture Rental Service","basicCategory":"home_service"},{"name":"furniture_repair","displayName":"Furniture Repair","basicCategory":"home_service"},{"name":"furniture_reupholstery","displayName":"Furniture Reupholstery","basicCategory":"home_service"},{"name":"garage_door_service","displayName":"Garage Door Service","basicCategory":"home_service"},{"name":"glass_and_mirror_sales_service","displayName":"Glass and Mirror Sales Service","basicCategory":"home_service"},{"name":"grout_service","displayName":"Grout Service","basicCategory":"home_service"},{"name":"gutter_service","displayName":"Gutter Service","basicCategory":"home_service"},{"name":"handyman","displayName":"Handyman","basicCategory":"home_service"},{"name":"holiday_decorating_service","displayName":"Holiday Decorating Service","basicCategory":"home_service"},{"name":"home_automation","displayName":"Home Automation","basicCategory":"home_service"},{"name":"home_cleaning","displayName":"Home Cleaning","basicCategory":"home_service"},{"name":"home_energy_auditor","displayName":"Home Energy Auditor","basicCategory":"home_service"},{"name":"home_inspector","displayName":"Home Inspector","basicCategory":"home_service"},{"name":"home_network_installation","displayName":"Home Network Installation","basicCategory":"home_service"},{"name":"home_security","displayName":"Home Security","basicCategory":"home_service"},{"name":"home_window_tinting","displayName":"Home Window Tinting","basicCategory":"home_service"},{"name":"house_sitting","displayName":"House Sitting","basicCategory":"home_service"},{"name":"hvac_service","displayName":"HVAC Service","basicCategory":"home_service"},{"name":"hydro_jetting","displayName":"Hydro Jetting","basicCategory":"home_service"},{"name":"indoor_landscaping","displayName":"Indoor Landscaping","basicCategory":"home_service"},{"name":"insulation_installation","displayName":"Insulation Installation","basicCategory":"home_service"},{"name":"interior_design","displayName":"Interior Design","basicCategory":"home_service"},{"name":"irrigation_service","displayName":"Irrigation Service","basicCategory":"home_service"},{"name":"junk_removal_and_hauling","displayName":"Junk Removal and Hauling","basicCategory":"home_service"},{"name":"key_and_locksmith","displayName":"Key and Locksmith","basicCategory":"home_service"},{"name":"kitchen_remodeling","displayName":"Kitchen Remodeling","basicCategory":"home_service"},{"name":"knife_sharpening","displayName":"Knife Sharpening","basicCategory":"home_service"},{"name":"landscaping","displayName":"Landscaping","basicCategory":"home_service","children":[{"name":"gardener","displayName":"Gardener","basicCategory":"home_service"},{"name":"landscape_architect","displayName":"Landscape Architect","basicCategory":"home_service"},{"name":"lawn_service","displayName":"Lawn Service","basicCategory":"home_service"},{"name":"tree_service","displayName":"Tree Service","basicCategory":"home_service"}]},{"name":"lawn_mower_repair_service","displayName":"Lawn Mower Repair Service","basicCategory":"home_service"},{"name":"lighting_fixtures_and_equipment","displayName":"Lighting Fixtures and Equipment","basicCategory":"home_service"},{"name":"masonry_concrete","displayName":"Masonry Concrete","basicCategory":"home_service"},{"name":"misting_system_service","displayName":"Misting System Service","basicCategory":"home_service"},{"name":"mobile_home_repair","displayName":"Mobile Home Repair","basicCategory":"home_service"},{"name":"mover","displayName":"Mover","basicCategory":"home_service"},{"name":"packing_service","displayName":"Packing Service","basicCategory":"home_service"},{"name":"painting","displayName":"Painting","basicCategory":"home_service"},{"name":"patio_covers","displayName":"Patio Covers","basicCategory":"home_service"},{"name":"personal_assistant","displayName":"Personal Assistant","basicCategory":"home_service"},{"name":"pest_control_service","displayName":"Pest Control Service","basicCategory":"home_service"},{"name":"plasterer","displayName":"Plasterer","basicCategory":"home_service"},{"name":"plumbing","displayName":"Plumbing","basicCategory":"home_service","children":[{"name":"backflow_service","displayName":"Backflow Service","basicCategory":"home_service"}]},{"name":"pool_and_hot_tub_service","displayName":"Pool and Hot Tub Service","basicCategory":"home_service"},{"name":"pool_cleaning","displayName":"Pool Cleaning","basicCategory":"home_service"},{"name":"pressure_washing","displayName":"Pressure Washing","basicCategory":"home_service"},{"name":"recycling_center","displayName":"Recycling Center","basicCategory":"home_service"},{"name":"refinishing_service","displayName":"Refinishing Service","basicCategory":"home_service"},{"name":"security_systems","displayName":"Security Systems","basicCategory":"home_service"},{"name":"sewing_and_alterations","displayName":"Sewing and Alterations","basicCategory":"home_service","children":[{"name":"tailor","displayName":"Tailor","basicCategory":"home_service"}]},{"name":"shades_and_blinds","displayName":"Shades and Blinds","basicCategory":"home_service"},{"name":"shutters","displayName":"Shutters","basicCategory":"home_service"},{"name":"siding","displayName":"Siding","basicCategory":"home_service"},{"name":"snow_removal_service","displayName":"Snow Removal Service","basicCategory":"home_service"},{"name":"solar_installation","displayName":"Solar Installation","basicCategory":"home_service"},{"name":"solar_panel_cleaning","displayName":"Solar Panel Cleaning","basicCategory":"home_service"},{"name":"structural_engineer","displayName":"Structural Engineer","basicCategory":"home_service"},{"name":"stucco_service","displayName":"Stucco Service","basicCategory":"home_service"},{"name":"television_service_provider","displayName":"Television Service Provider","basicCategory":"home_service"},{"name":"tiling","displayName":"Tiling","basicCategory":"home_service"},{"name":"tv_mounting","displayName":"TV Mounting","basicCategory":"home_service"},{"name":"wallpaper_installer","displayName":"Wallpaper Installer","basicCategory":"home_service"},{"name":"washer_and_dryer_repair_service","displayName":"Washer and Dryer Repair Service","basicCategory":"home_service"},{"name":"water_delivery","displayName":"Water Delivery","basicCategory":"home_service"},{"name":"water_heater_installation_repair","displayName":"Water Heater Installation Repair","basicCategory":"home_service"},{"name":"water_purification_service","displayName":"Water Purification Service","basicCategory":"home_service"},{"name":"waterproofing","displayName":"Waterproofing","basicCategory":"home_service"},{"name":"well_drilling","displayName":"Well Drilling","basicCategory":"home_service"},{"name":"window_washing","displayName":"Window Washing","basicCategory":"home_service"},{"name":"windows_installation","displayName":"Windows Installation","basicCategory":"home_service","children":[{"name":"skylight_installation","displayName":"Skylight Installation","basicCategory":"home_service"}]}]},{"name":"housing_or_property_service","displayName":"Housing or Property Service","isBasic":true,"children":[{"name":"apartment","displayName":"Apartment","isBasic":true},{"name":"condominium","displayName":"Condominium","isBasic":true},{"name":"halfway_house","displayName":"Halfway House","basicCategory":"housing_or_property_service"},{"name":"low_income_housing","displayName":"Low Income Housing","basicCategory":"housing_or_property_service"},{"name":"mobile_home_park","displayName":"Mobile Home Park","basicCategory":"housing_or_property_service"},{"name":"senior_living_facility","displayName":"Senior Living Facility","isBasic":true,"children":[{"name":"assisted_living_facility","displayName":"Assisted Living Facility","basicCategory":"senior_living_facility"},{"name":"memory_care_facility","displayName":"Memory Care Facility","basicCategory":"senior_living_facility"},{"name":"retirement_home","displayName":"Retirement Home","basicCategory":"senior_living_facility"}]},{"name":"university_housing","displayName":"University Housing","basicCategory":"housing_or_property_service"}]},{"name":"industrial_facility_or_service","displayName":"Industrial Facility or Service","isBasic":true,"children":[{"name":"hazardous_waste_disposal","displayName":"Hazardous Waste Disposal","basicCategory":"industrial_facility_or_service"},{"name":"powder_coating_service","displayName":"Powder Coating Service","basicCategory":"industrial_facility_or_service"},{"name":"sandblasting_service","displayName":"Sandblasting Service","basicCategory":"industrial_facility_or_service"}]},{"name":"laundry_service","displayName":"Laundry Service","isBasic":true,"children":[{"name":"dry_cleaning","displayName":"Dry Cleaning","basicCategory":"laundry_service"},{"name":"laundromat","displayName":"Laundromat","basicCategory":"laundry_service"}]},{"name":"legal_service","displayName":"Legal Service","isBasic":true,"children":[{"name":"attorney_or_law_firm","displayName":"Attorney or Law Firm","isBasic":true,"children":[{"name":"appellate_practice_lawyer","displayName":"Appellate Practice Lawyer","basicCategory":"attorney_or_law_firm"},{"name":"bankruptcy_law","displayName":"Bankruptcy Law","basicCategory":"attorney_or_law_firm"},{"name":"business_law","displayName":"Business Law","basicCategory":"attorney_or_law_firm"},{"name":"civil_rights_lawyer","displayName":"Civil Rights Lawyer","basicCategory":"attorney_or_law_firm"},{"name":"contract_law","displayName":"Contract Law","basicCategory":"attorney_or_law_firm"},{"name":"criminal_defense_law","displayName":"Criminal Defense Law","basicCategory":"attorney_or_law_firm"},{"name":"disability_law","displayName":"Disability Law","basicCategory":"attorney_or_law_firm"},{"name":"divorce_and_family_law","displayName":"Divorce and Family Law","basicCategory":"attorney_or_law_firm"},{"name":"dui_law","displayName":"DUI Law","basicCategory":"attorney_or_law_firm"},{"name":"employment_law","displayName":"Employment Law","basicCategory":"attorney_or_law_firm"},{"name":"entertainment_law","displayName":"Entertainment Law","basicCategory":"attorney_or_law_firm"},{"name":"estate_planning_law","displayName":"Estate Planning Law","basicCategory":"attorney_or_law_firm"},{"name":"general_litigation","displayName":"General Litigation","basicCategory":"attorney_or_law_firm"},{"name":"immigration_law","displayName":"Immigration Law","basicCategory":"attorney_or_law_firm"},{"name":"ip_and_internet_law","displayName":"Ip and Internet Law","basicCategory":"attorney_or_law_firm"},{"name":"medical_law","displayName":"Medical Law","basicCategory":"attorney_or_law_firm"},{"name":"paralegal_service","displayName":"Paralegal Service","basicCategory":"attorney_or_law_firm"},{"name":"personal_injury_law","displayName":"Personal Injury Law","basicCategory":"attorney_or_law_firm"},{"name":"real_estate_law","displayName":"Real Estate Law","basicCategory":"attorney_or_law_firm"},{"name":"social_security_law","displayName":"Social Security Law","basicCategory":"attorney_or_law_firm"},{"name":"tax_law","displayName":"Tax Law","basicCategory":"attorney_or_law_firm"},{"name":"traffic_ticketing_law","displayName":"Traffic Ticketing Law","basicCategory":"attorney_or_law_firm"},{"name":"wills_trusts_and_probate","displayName":"Wills Trusts and Probate","basicCategory":"attorney_or_law_firm"},{"name":"workers_compensation_law","displayName":"Workers Compensation Law","basicCategory":"attorney_or_law_firm"}]},{"name":"bail_bonds_service","displayName":"Bail Bonds Service","basicCategory":"legal_service"},{"name":"court_reporter","displayName":"Court Reporter","basicCategory":"legal_service"},{"name":"mediator","displayName":"Mediator","basicCategory":"legal_service"},{"name":"notary_public","displayName":"Notary Public","basicCategory":"legal_service"},{"name":"patent_law","displayName":"Patent Law","basicCategory":"legal_service"},{"name":"private_investigation","displayName":"Private Investigation","basicCategory":"legal_service"},{"name":"process_server","displayName":"Process Server","basicCategory":"legal_service"},{"name":"tenant_and_eviction_law","displayName":"Tenant and Eviction Law","basicCategory":"legal_service"}]},{"name":"media_service","displayName":"Media Service","isBasic":true,"children":[{"name":"art_restoration_service","displayName":"Art Restoration Service","basicCategory":"media_service"},{"name":"bookbinding","displayName":"Bookbinding","basicCategory":"media_service"},{"name":"calligraphy","displayName":"Calligraphy","basicCategory":"media_service"},{"name":"commissioned_artist","displayName":"Commissioned Artist","basicCategory":"media_service"},{"name":"corporate_entertainment_service","displayName":"Corporate Entertainment Service","basicCategory":"media_service"},{"name":"digitizing_service","displayName":"Digitizing Service","basicCategory":"media_service"},{"name":"engraving","displayName":"Engraving","basicCategory":"media_service"},{"name":"media_critic","displayName":"Media Critic","basicCategory":"media_service","children":[{"name":"movie_critic","displayName":"Movie Critic","basicCategory":"media_service"},{"name":"music_critic","displayName":"Music Critic","basicCategory":"media_service"},{"name":"video_game_critic","displayName":"Video Game Critic","basicCategory":"media_service"}]},{"name":"media_news_company","displayName":"Media News Company","basicCategory":"media_service","children":[{"name":"animation_studio","displayName":"Animation Studio","basicCategory":"media_service"},{"name":"book_magazine_distribution","displayName":"Book Magazine Distribution","basicCategory":"media_service"},{"name":"broadcasting_media_production","displayName":"Broadcasting Media Production","basicCategory":"media_service"},{"name":"game_publisher","displayName":"Game Publisher","basicCategory":"media_service"},{"name":"media_agency","displayName":"Media Agency","basicCategory":"media_service"},{"name":"movie_television_studio","displayName":"Movie Television Studio","basicCategory":"media_service"},{"name":"music_production","displayName":"Music Production","basicCategory":"media_service"},{"name":"publisher","displayName":"Publisher","basicCategory":"media_service"},{"name":"radio_station","displayName":"Radio Station","isBasic":true},{"name":"social_media_company","displayName":"Social Media Company","basicCategory":"media_service"},{"name":"television_station","displayName":"Television Station","isBasic":true},{"name":"weather_forecast_service","displayName":"Weather Forecast Service","basicCategory":"media_service"}]},{"name":"media_news_website","displayName":"Media News Website","basicCategory":"media_service"},{"name":"media_restoration_service","displayName":"Media Restoration Service","basicCategory":"media_service"},{"name":"music_production_service","displayName":"Music Production Service","basicCategory":"media_service"},{"name":"musical_instrument_service","displayName":"Musical Instrument Service","basicCategory":"media_service","children":[{"name":"piano_service","displayName":"Piano Service","basicCategory":"media_service"},{"name":"vocal_coach","displayName":"Vocal Coach","basicCategory":"media_service"}]},{"name":"photography_service","displayName":"Photography Service","basicCategory":"media_service","children":[{"name":"boudoir_photography_service","displayName":"Boudoir Photography Service","basicCategory":"media_service"},{"name":"event_photography_service","displayName":"Event Photography Service","basicCategory":"media_service"},{"name":"session_photography_service","displayName":"Session Photography Service","basicCategory":"media_service"}]},{"name":"print_media","displayName":"Print Media","basicCategory":"media_service"},{"name":"record_label","displayName":"Record Label","basicCategory":"media_service"},{"name":"recording_and_rehearsal_studio","displayName":"Recording and Rehearsal Studio","basicCategory":"media_service"},{"name":"studio_taping","displayName":"Studio Taping","basicCategory":"media_service"},{"name":"theatrical_production","displayName":"Theatrical Production","basicCategory":"media_service"},{"name":"video_film_production","displayName":"Video Film Production","basicCategory":"media_service"},{"name":"weather_station","displayName":"Weather Station","basicCategory":"media_service"}]},{"name":"printing_service","displayName":"Printing Service","isBasic":true,"children":[{"name":"3d_printing_service","displayName":"3d Printing Service","basicCategory":"printing_service"},{"name":"commercial_printer","displayName":"Commercial Printer","basicCategory":"printing_service"},{"name":"duplication_service","displayName":"Duplication Service","basicCategory":"printing_service"},{"name":"screen_printing_service","displayName":"Screen Printing Service","basicCategory":"printing_service","children":[{"name":"t_shirt_printing_service","displayName":"T-shirt Printing Service","basicCategory":"printing_service"}]}]},{"name":"professional_service","displayName":"Professional Service","isBasic":true,"children":[{"name":"advertising_agency","displayName":"Advertising Agency","basicCategory":"professional_service"},{"name":"bank_equipment_service","displayName":"Bank Equipment Service","basicCategory":"professional_service"},{"name":"billing_service","displayName":"Billing Service","basicCategory":"professional_service"},{"name":"bookkeeper","displayName":"Bookkeeper","basicCategory":"professional_service"},{"name":"business_consulting","displayName":"Business Consulting","basicCategory":"professional_service"},{"name":"career_counseling","displayName":"Career Counseling","basicCategory":"professional_service"},{"name":"certification_agency","displayName":"Certification Agency","basicCategory":"professional_service"},{"name":"cleaning_service","displayName":"Cleaning Service","basicCategory":"professional_service","children":[{"name":"industrial_cleaning_service","displayName":"Industrial Cleaning Service","basicCategory":"professional_service"},{"name":"janitorial_service","displayName":"Janitorial Service","basicCategory":"professional_service"},{"name":"office_cleaning","displayName":"Office Cleaning","basicCategory":"professional_service"}]},{"name":"copywriting_service","displayName":"Copywriting Service","basicCategory":"professional_service"},{"name":"coworking_space","displayName":"Coworking Space","basicCategory":"professional_service"},{"name":"e_commerce_service","displayName":"E-commerce Service","basicCategory":"professional_service"},{"name":"editorial_service","displayName":"Editorial Service","basicCategory":"professional_service"},{"name":"employment_agency","displayName":"Employment Agency","basicCategory":"professional_service","children":[{"name":"temp_agency","displayName":"Temp Agency","basicCategory":"professional_service"}]},{"name":"food_and_beverage_consultant","displayName":"Food and Beverage Consultant","basicCategory":"professional_service"},{"name":"immigration_assistance_service","displayName":"Immigration Assistance Service","basicCategory":"professional_service"},{"name":"internet_marketing_service","displayName":"Internet Marketing Service","basicCategory":"professional_service"},{"name":"marketing_agency","displayName":"Marketing Agency","basicCategory":"professional_service"},{"name":"merchandising_service","displayName":"Merchandising Service","basicCategory":"professional_service"},{"name":"payroll_service","displayName":"Payroll Service","basicCategory":"professional_service"},{"name":"public_relations","displayName":"Public Relations","basicCategory":"professional_service"},{"name":"shredding_service","displayName":"Shredding Service","basicCategory":"professional_service"},{"name":"social_media_agency","displayName":"Social Media Agency","basicCategory":"professional_service"},{"name":"talent_agency","displayName":"Talent Agency","basicCategory":"professional_service"},{"name":"translation_service","displayName":"Translation Service","basicCategory":"professional_service"},{"name":"typing_service","displayName":"Typing Service","basicCategory":"professional_service"},{"name":"writing_service","displayName":"Writing Service","basicCategory":"professional_service"}]},{"name":"real_estate_service","displayName":"Real Estate Service","isBasic":true,"children":[{"name":"builder","displayName":"Builder","basicCategory":"real_estate_service","children":[{"name":"home_developer","displayName":"Home Developer","basicCategory":"real_estate_service"}]},{"name":"commercial_real_estate","displayName":"Commercial Real Estate","basicCategory":"real_estate_service"},{"name":"display_home_center","displayName":"Display Home Center","basicCategory":"real_estate_service"},{"name":"escrow_service","displayName":"Escrow Service","basicCategory":"real_estate_service"},{"name":"estate_liquidation","displayName":"Estate Liquidation","basicCategory":"real_estate_service"},{"name":"home_organization","displayName":"Home Organization","basicCategory":"real_estate_service"},{"name":"home_staging","displayName":"Home Staging","basicCategory":"real_estate_service"},{"name":"homeowner_association","displayName":"Homeowner Association","basicCategory":"real_estate_service"},{"name":"housing_cooperative","displayName":"Housing Cooperative","basicCategory":"real_estate_service"},{"name":"kitchen_incubator","displayName":"Kitchen Incubator","basicCategory":"real_estate_service"},{"name":"land_surveying","displayName":"Land Surveying","basicCategory":"real_estate_service"},{"name":"mobile_home_dealer","displayName":"Mobile Home Dealer","basicCategory":"real_estate_service"},{"name":"property_management","displayName":"Property Management","basicCategory":"real_estate_service"},{"name":"real_estate_agent","displayName":"Real Estate Agent","basicCategory":"real_estate_service","children":[{"name":"apartment_agent","displayName":"Apartment Agent","basicCategory":"real_estate_service"}]},{"name":"real_estate_photography","displayName":"Real Estate Photography","basicCategory":"real_estate_service"},{"name":"shared_office_space","displayName":"Shared Office Space","basicCategory":"real_estate_service"}]},{"name":"rental_service","displayName":"Rental Service","isBasic":true,"children":[{"name":"art_space_rental","displayName":"Art Space Rental","basicCategory":"rental_service"},{"name":"bus_rental","displayName":"Bus Rental","basicCategory":"rental_service"},{"name":"clothing_rental","displayName":"Clothing Rental","basicCategory":"rental_service"},{"name":"dumpster_rental","displayName":"Dumpster Rental","basicCategory":"rental_service"},{"name":"machine_and_tool_rental","displayName":"Machine and Tool Rental","basicCategory":"rental_service"},{"name":"rental_kiosk","displayName":"Rental Kiosk","basicCategory":"rental_service"},{"name":"vehicle_rental_service","displayName":"Vehicle Rental Service","basicCategory":"rental_service","children":[{"name":"car_rental_service","displayName":"Car Rental Service","basicCategory":"rental_service"},{"name":"motorcycle_rental_service","displayName":"Motorcycle Rental Service","basicCategory":"rental_service"},{"name":"rv_rental_service","displayName":"RV Rental Service","basicCategory":"rental_service"},{"name":"trailer_rental_service","displayName":"Trailer Rental Service","basicCategory":"rental_service"},{"name":"truck_rental_service","displayName":"Truck Rental Service","basicCategory":"rental_service"}]}]},{"name":"security_service","displayName":"Security Service","isBasic":true,"children":[{"name":"fingerprinting_service","displayName":"Fingerprinting Service","basicCategory":"security_service"}]},{"name":"shipping_or_delivery_service","displayName":"Shipping or Delivery Service","isBasic":true,"children":[{"name":"courier_and_delivery_service","displayName":"Courier and Delivery Service","basicCategory":"shipping_or_delivery_service"},{"name":"mailbox_center","displayName":"Mailbox Center","basicCategory":"shipping_or_delivery_service"},{"name":"packaging_contractors_and_service","displayName":"Packaging Contractors and Service","basicCategory":"shipping_or_delivery_service"},{"name":"post_office","displayName":"Post Office","basicCategory":"shipping_or_delivery_service"},{"name":"shipping_center","displayName":"Shipping Center","basicCategory":"shipping_or_delivery_service"},{"name":"shipping_collection_service","displayName":"Shipping Collection Service","basicCategory":"shipping_or_delivery_service"},{"name":"vehicle_shipping","displayName":"Vehicle Shipping","basicCategory":"shipping_or_delivery_service"}]},{"name":"storage_facility","displayName":"Storage Facility","isBasic":true,"children":[{"name":"automotive_storage_facility","displayName":"Automotive Storage Facility","basicCategory":"storage_facility"},{"name":"boat_storage_facility","displayName":"Boat Storage Facility","basicCategory":"storage_facility"},{"name":"package_locker","displayName":"Package Locker","basicCategory":"storage_facility"},{"name":"rv_storage_facility","displayName":"RV Storage Facility","basicCategory":"storage_facility"},{"name":"self_storage_facility","displayName":"Self Storage Facility","basicCategory":"storage_facility"}]},{"name":"technical_service","displayName":"Technical Service","isBasic":true,"children":[{"name":"acoustical_consultant","displayName":"Acoustical Consultant","basicCategory":"technical_service"},{"name":"bike_repair_maintenance","displayName":"Bike Repair Maintenance","basicCategory":"technical_service"},{"name":"commercial_refrigeration","displayName":"Commercial Refrigeration","basicCategory":"technical_service"},{"name":"computer_hardware_company","displayName":"Computer Hardware Company","basicCategory":"technical_service"},{"name":"electronics_repair_shop","displayName":"Electronics Repair Shop","basicCategory":"technical_service"},{"name":"elevator_service","displayName":"Elevator Service","basicCategory":"technical_service"},{"name":"generator_installation_repair","displayName":"Generator Installation Repair","basicCategory":"technical_service"},{"name":"hydraulic_repair_service","displayName":"Hydraulic Repair Service","basicCategory":"technical_service"},{"name":"internet_service_provider","displayName":"Internet Service Provider","basicCategory":"technical_service","children":[{"name":"web_hosting_service","displayName":"Web Hosting Service","basicCategory":"technical_service"}]},{"name":"it_service_and_computer_repair","displayName":"IT Service and Computer Repair","basicCategory":"technical_service","children":[{"name":"it_consultant","displayName":"IT Consultant","basicCategory":"technical_service"},{"name":"mobile_phone_repair","displayName":"Mobile Phone Repair","basicCategory":"technical_service"}]},{"name":"jewelry_repair_service","displayName":"Jewelry Repair Service","basicCategory":"technical_service"},{"name":"laboratory","displayName":"Laboratory","basicCategory":"technical_service"},{"name":"machine_shop","displayName":"Machine Shop","basicCategory":"technical_service"},{"name":"metal_detector_service","displayName":"Metal Detector Service","basicCategory":"technical_service"},{"name":"software_development","displayName":"Software Development","basicCategory":"technical_service"},{"name":"taxidermist","displayName":"Taxidermist","basicCategory":"technical_service"},{"name":"telephone_service","displayName":"Telephone Service","basicCategory":"technical_service"},{"name":"watch_repair_service","displayName":"Watch Repair Service","basicCategory":"technical_service"}]},{"name":"telecommunications_service","displayName":"Telecommunications Service","isBasic":true},{"name":"utility_energy_infrastructure","displayName":"Utility Energy Infrastructure","isBasic":true,"children":[{"name":"wind_energy","displayName":"Wind Energy","basicCategory":"utility_energy_infrastructure"}]}]},{"name":"shopping","displayName":"Shopping","isBasic":true,"children":[{"name":"convenience_store","displayName":"Convenience Store","isBasic":true},{"name":"department_store","displayName":"Department Store","isBasic":true},{"name":"discount_store","displayName":"Discount Store","isBasic":true},{"name":"fashion_and_apparel_store","displayName":"Fashion and Apparel Store","isBasic":true,"children":[{"name":"baby_gear_and_nursery_store","displayName":"Baby Gear and Nursery Store","basicCategory":"fashion_and_apparel_store"},{"name":"clothing_store","displayName":"Clothing Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"bridal_shop","displayName":"Bridal Shop","basicCategory":"fashion_and_apparel_store"},{"name":"childrens_clothing_store","displayName":"Children's Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"custom_clothing_store","displayName":"Custom Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"denim_wear_store","displayName":"Denim Wear Store","basicCategory":"fashion_and_apparel_store"},{"name":"designer_clothing","displayName":"Designer Clothing","basicCategory":"fashion_and_apparel_store"},{"name":"formal_wear_store","displayName":"Formal Wear Store","basicCategory":"fashion_and_apparel_store"},{"name":"fur_clothing","displayName":"Fur Clothing","basicCategory":"fashion_and_apparel_store"},{"name":"lingerie_store","displayName":"Lingerie Store","basicCategory":"fashion_and_apparel_store"},{"name":"maternity_wear","displayName":"Maternity Wear","basicCategory":"fashion_and_apparel_store"},{"name":"mens_clothing_store","displayName":"Men's Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"plus_size_clothing_store","displayName":"Plus Size Clothing Store","basicCategory":"fashion_and_apparel_store"},{"name":"sleepwear","displayName":"Sleepwear","basicCategory":"fashion_and_apparel_store"},{"name":"t_shirt_store","displayName":"T-shirt Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"custom_t_shirt_store","displayName":"Custom T-shirt Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"traditional_clothing","displayName":"Traditional Clothing","basicCategory":"fashion_and_apparel_store","children":[{"name":"saree_shop","displayName":"Saree Shop","basicCategory":"fashion_and_apparel_store"}]},{"name":"uniform_store","displayName":"Uniform Store","basicCategory":"fashion_and_apparel_store"},{"name":"womens_clothing_store","displayName":"Women's Clothing Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"eyewear_store","displayName":"Eyewear Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"sunglasses_store","displayName":"Sunglasses Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"fashion_accessories_store","displayName":"Fashion Accessories Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"handbag_store","displayName":"Handbag Store","basicCategory":"fashion_and_apparel_store"},{"name":"hat_store","displayName":"Hat Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"fashion_boutique","displayName":"Fashion Boutique","basicCategory":"fashion_and_apparel_store"},{"name":"jewelry_store","displayName":"Jewelry Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"diamond_dealer","displayName":"Diamond Dealer","basicCategory":"fashion_and_apparel_store"},{"name":"goldsmith","displayName":"Goldsmith","basicCategory":"fashion_and_apparel_store"},{"name":"watch_store","displayName":"Watch Store","basicCategory":"fashion_and_apparel_store"}]},{"name":"leather_goods_store","displayName":"Leather Goods Store","basicCategory":"fashion_and_apparel_store"},{"name":"luggage_store","displayName":"Luggage Store","basicCategory":"fashion_and_apparel_store"},{"name":"shoe_store","displayName":"Shoe Store","basicCategory":"fashion_and_apparel_store","children":[{"name":"orthopedic_shoe_store","displayName":"Orthopedic Shoe Store","basicCategory":"fashion_and_apparel_store"}]}]},{"name":"food_and_beverage_store","displayName":"Food and Beverage Store","isBasic":true,"children":[{"name":"beer_wine_spirits_store","displayName":"Beer Wine Spirits Store","basicCategory":"food_and_beverage_store"},{"name":"brewing_supply_store","displayName":"Brewing Supply Store","basicCategory":"food_and_beverage_store"},{"name":"butcher_shop","displayName":"Butcher Shop","basicCategory":"food_and_beverage_store"},{"name":"cheese_shop","displayName":"Cheese Shop","basicCategory":"food_and_beverage_store"},{"name":"coffee_and_tea_supplies","displayName":"Coffee and Tea Supplies","basicCategory":"food_and_beverage_store"},{"name":"csa_farm","displayName":"Csa Farm","basicCategory":"food_and_beverage_store"},{"name":"fishmonger","displayName":"Fishmonger","basicCategory":"food_and_beverage_store"},{"name":"grocery_store","displayName":"Grocery Store","basicCategory":"food_and_beverage_store","children":[{"name":"asian_grocery_store","displayName":"Asian Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"ethical_grocery_store","displayName":"Ethical Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"indian_grocery_store","displayName":"Indian Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"international_grocery_store","displayName":"International Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"japanese_grocery_store","displayName":"Japanese Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"korean_grocery_store","displayName":"Korean Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"kosher_grocery_store","displayName":"Kosher Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"mexican_grocery_store","displayName":"Mexican Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"organic_grocery_store","displayName":"Organic Grocery Store","basicCategory":"food_and_beverage_store"},{"name":"russian_grocery_store","displayName":"Russian Grocery Store","basicCategory":"food_and_beverage_store"}]},{"name":"health_food_store","displayName":"Health Food Store","basicCategory":"food_and_beverage_store"},{"name":"herb_and_spice_store","displayName":"Herb and Spice Store","basicCategory":"food_and_beverage_store"},{"name":"honey_farm_shop","displayName":"Honey Farm Shop","basicCategory":"food_and_beverage_store"},{"name":"imported_food_store","displayName":"Imported Food Store","basicCategory":"food_and_beverage_store"},{"name":"liquor_store","displayName":"Liquor Store","basicCategory":"food_and_beverage_store"},{"name":"olive_oil_store","displayName":"Olive Oil Store","basicCategory":"food_and_beverage_store"},{"name":"patisserie_cake_shop","displayName":"Patisserie Cake Shop","basicCategory":"food_and_beverage_store","children":[{"name":"custom_cakes_shop","displayName":"Custom Cakes Shop","basicCategory":"food_and_beverage_store"}]},{"name":"pick_your_own_farm","displayName":"Pick Your Own Farm","basicCategory":"food_and_beverage_store"},{"name":"seafood_market","displayName":"Seafood Market","basicCategory":"food_and_beverage_store"},{"name":"smokehouse","displayName":"Smokehouse","basicCategory":"food_and_beverage_store"},{"name":"specialty_foods_store","displayName":"Specialty Foods Store","basicCategory":"food_and_beverage_store","children":[{"name":"dairy_store","displayName":"Dairy Store","basicCategory":"food_and_beverage_store"},{"name":"frozen_foods_store","displayName":"Frozen Foods Store","basicCategory":"food_and_beverage_store"},{"name":"pasta_store","displayName":"Pasta Store","basicCategory":"food_and_beverage_store"},{"name":"produce_store","displayName":"Produce Store","basicCategory":"food_and_beverage_store"},{"name":"rice_store","displayName":"Rice Store","basicCategory":"food_and_beverage_store"}]},{"name":"tobacco_shop","displayName":"Tobacco Shop","basicCategory":"food_and_beverage_store"},{"name":"vitamin_and_supplement_store","displayName":"Vitamin and Supplement Store","basicCategory":"food_and_beverage_store"},{"name":"water_store","displayName":"Water Store","basicCategory":"food_and_beverage_store"}]},{"name":"kiosk","displayName":"Kiosk","isBasic":true},{"name":"market","displayName":"Market","isBasic":true,"children":[{"name":"bazaar","displayName":"Bazaar","basicCategory":"market"},{"name":"farmers_market","displayName":"Farmers Market","isBasic":true},{"name":"health_market","displayName":"Health Market","basicCategory":"market"},{"name":"holiday_market","displayName":"Holiday Market","basicCategory":"market"},{"name":"market_stall","displayName":"Market Stall","basicCategory":"market"},{"name":"night_market","displayName":"Night Market","basicCategory":"market"},{"name":"public_market","displayName":"Public Market","basicCategory":"market"},{"name":"shopping_passage","displayName":"Shopping Passage","basicCategory":"market"},{"name":"street_vendor","displayName":"Street Vendor","basicCategory":"market"}]},{"name":"second_hand_store","displayName":"Second Hand Store","isBasic":true,"children":[{"name":"antique_store","displayName":"Antique Store","basicCategory":"second_hand_store"},{"name":"flea_market","displayName":"Flea Market","basicCategory":"second_hand_store"},{"name":"junkyard","displayName":"Junkyard","basicCategory":"second_hand_store"},{"name":"pawn_shop","displayName":"Pawn Shop","basicCategory":"second_hand_store"},{"name":"second_hand_clothing_store","displayName":"Second Hand Clothing Store","basicCategory":"second_hand_store"}]},{"name":"shopping_mall","displayName":"Shopping Mall","isBasic":true},{"name":"shopping_service","displayName":"Shopping Service","isBasic":true,"children":[{"name":"personal_shopper","displayName":"Personal Shopper","basicCategory":"shopping_service"}]},{"name":"specialty_store","displayName":"Specialty Store","isBasic":true,"children":[{"name":"adult_store","displayName":"Adult Store","basicCategory":"specialty_store"},{"name":"animal_and_pet_store","displayName":"Animal and Pet Store","isBasic":true,"children":[{"name":"horse_equipment_shop","displayName":"Horse Equipment Shop","basicCategory":"animal_and_pet_store"},{"name":"livestock_feed_and_supply_store","displayName":"Livestock Feed and Supply Store","basicCategory":"animal_and_pet_store"},{"name":"pet_store","displayName":"Pet Store","basicCategory":"animal_and_pet_store","children":[{"name":"aquatic_pet_store","displayName":"Aquatic Pet Store","basicCategory":"animal_and_pet_store"},{"name":"bird_store","displayName":"Bird Store","basicCategory":"animal_and_pet_store"},{"name":"reptile_store","displayName":"Reptile Store","basicCategory":"animal_and_pet_store"}]}]},{"name":"arts_crafts_and_hobby_store","displayName":"Arts Crafts and Hobby Store","isBasic":true,"children":[{"name":"art_supply_store","displayName":"Art Supply Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"atelier","displayName":"Atelier","basicCategory":"arts_crafts_and_hobby_store"},{"name":"cooking_classes","displayName":"Cooking Classes","basicCategory":"arts_crafts_and_hobby_store"},{"name":"costume_store","displayName":"Costume Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"craft_store","displayName":"Craft Store","basicCategory":"arts_crafts_and_hobby_store","children":[{"name":"embroidery_and_crochet_store","displayName":"Embroidery and Crochet Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"knitting_supply_store","displayName":"Knitting Supply Store","basicCategory":"arts_crafts_and_hobby_store"}]},{"name":"fabric_store","displayName":"Fabric Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"framing_store","displayName":"Framing Store","basicCategory":"arts_crafts_and_hobby_store"},{"name":"hobby_shop","displayName":"Hobby Shop","basicCategory":"arts_crafts_and_hobby_store"}]},{"name":"auction_house","displayName":"Auction House","basicCategory":"specialty_store","children":[{"name":"car_auction","displayName":"Car Auction","basicCategory":"specialty_store"}]},{"name":"books_music_and_video_store","displayName":"Books Music and Video Store","isBasic":true,"children":[{"name":"bookstore","displayName":"Bookstore","basicCategory":"books_music_and_video_store","children":[{"name":"academic_bookstore","displayName":"Academic Bookstore","basicCategory":"books_music_and_video_store"},{"name":"comic_books_store","displayName":"Comic Books Store","basicCategory":"books_music_and_video_store"},{"name":"used_bookstore","displayName":"Used Bookstore","basicCategory":"books_music_and_video_store"}]},{"name":"music_and_dvd_store","displayName":"Music and DVD Store","basicCategory":"books_music_and_video_store"},{"name":"newspaper_and_magazines_store","displayName":"Newspaper and Magazines Store","basicCategory":"books_music_and_video_store"},{"name":"video_and_video_game_rental","displayName":"Video and Video Game Rental","basicCategory":"books_music_and_video_store"},{"name":"video_game_store","displayName":"Video Game Store","basicCategory":"books_music_and_video_store"},{"name":"vinyl_record_store","displayName":"Vinyl Record Store","basicCategory":"books_music_and_video_store"}]},{"name":"cards_and_stationery_store","displayName":"Cards and Stationery Store","basicCategory":"specialty_store"},{"name":"customized_merchandise_store","displayName":"Customized Merchandise Store","basicCategory":"specialty_store"},{"name":"duty_free_store","displayName":"Duty Free Store","basicCategory":"specialty_store"},{"name":"educational_supply_store","displayName":"Educational Supply Store","basicCategory":"specialty_store"},{"name":"electronics_store","displayName":"Electronics Store","isBasic":true,"children":[{"name":"audio_visual_equipment_store","displayName":"Audio Visual Equipment Store","basicCategory":"electronics_store"},{"name":"battery_store","displayName":"Battery Store","basicCategory":"electronics_store"},{"name":"camera_and_photography_store","displayName":"Camera and Photography Store","basicCategory":"electronics_store"},{"name":"car_stereo_store","displayName":"Car Stereo Store","basicCategory":"electronics_store"},{"name":"computer_store","displayName":"Computer Store","basicCategory":"electronics_store"},{"name":"drone_store","displayName":"Drone Store","basicCategory":"electronics_store"},{"name":"home_theater_systems_stores","displayName":"Home Theater Systems Stores","basicCategory":"electronics_store"},{"name":"mobile_phone_accessory_store","displayName":"Mobile Phone Accessory Store","basicCategory":"electronics_store"},{"name":"mobile_phone_store","displayName":"Mobile Phone Store","basicCategory":"electronics_store"}]},{"name":"farming_equipment_and_supply_store","displayName":"Farming Equipment and Supply Store","basicCategory":"specialty_store","children":[{"name":"agricultural_seed_store","displayName":"Agricultural Seed Store","basicCategory":"specialty_store"},{"name":"farming_equipment_store","displayName":"Farming Equipment Store","basicCategory":"specialty_store"}]},{"name":"fireworks_store","displayName":"Fireworks Store","basicCategory":"specialty_store"},{"name":"flowers_and_gifts_store","displayName":"Flowers and Gifts Store","isBasic":true,"children":[{"name":"florist","displayName":"Florist","basicCategory":"flowers_and_gifts_store"},{"name":"flower_market","displayName":"Flower Market","basicCategory":"flowers_and_gifts_store"},{"name":"gift_shop","displayName":"Gift Shop","basicCategory":"flowers_and_gifts_store"}]},{"name":"gemstone_and_mineral_store","displayName":"Gemstone and Mineral Store","basicCategory":"specialty_store"},{"name":"gun_and_ammo_store","displayName":"Gun and Ammo Store","basicCategory":"specialty_store","children":[{"name":"gunsmith","displayName":"Gunsmith","basicCategory":"specialty_store"}]},{"name":"hardware_home_and_garden_store","displayName":"Hardware Home and Garden Store","isBasic":true,"children":[{"name":"appliance_store","displayName":"Appliance Store","basicCategory":"hardware_home_and_garden_store"},{"name":"bedding_and_bath_store","displayName":"Bedding and Bath Store","basicCategory":"hardware_home_and_garden_store"},{"name":"building_supply_store","displayName":"Building Supply Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"lumber_store","displayName":"Lumber Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"candle_store","displayName":"Candle Store","basicCategory":"hardware_home_and_garden_store"},{"name":"carpet_store","displayName":"Carpet Store","basicCategory":"hardware_home_and_garden_store"},{"name":"christmas_tree_store","displayName":"Christmas Tree Store","basicCategory":"hardware_home_and_garden_store"},{"name":"do_it_yourself_store","displayName":"Do IT Yourself Store","basicCategory":"hardware_home_and_garden_store"},{"name":"electrical_supply_store","displayName":"Electrical Supply Store","basicCategory":"hardware_home_and_garden_store"},{"name":"flooring_store","displayName":"Flooring Store","basicCategory":"hardware_home_and_garden_store"},{"name":"furniture_accessory_store","displayName":"Furniture Accessory Store","basicCategory":"hardware_home_and_garden_store"},{"name":"furniture_store","displayName":"Furniture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"grilling_equipment_store","displayName":"Grilling Equipment Store","basicCategory":"hardware_home_and_garden_store"},{"name":"hardware_store","displayName":"Hardware Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"welding_supply_store","displayName":"Welding Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"holiday_decor_store","displayName":"Holiday Decor Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_decor_store","displayName":"Home Decor Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_goods_store","displayName":"Home Goods Store","basicCategory":"hardware_home_and_garden_store"},{"name":"home_improvement_store","displayName":"Home Improvement Store","basicCategory":"hardware_home_and_garden_store"},{"name":"hot_tub_and_pool_store","displayName":"Hot Tub and Pool Store","basicCategory":"hardware_home_and_garden_store"},{"name":"kitchen_and_bath_store","displayName":"Kitchen and Bath Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"bathroom_fixture_store","displayName":"Bathroom Fixture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"kitchen_supply_store","displayName":"Kitchen Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"lawn_mower_store","displayName":"Lawn Mower Store","basicCategory":"hardware_home_and_garden_store"},{"name":"lighting_store","displayName":"Lighting Store","basicCategory":"hardware_home_and_garden_store"},{"name":"linen_store","displayName":"Linen Store","basicCategory":"hardware_home_and_garden_store"},{"name":"mattress_store","displayName":"Mattress Store","basicCategory":"hardware_home_and_garden_store"},{"name":"nursery_and_gardening_store","displayName":"Nursery and Gardening Store","basicCategory":"hardware_home_and_garden_store","children":[{"name":"hydroponic_gardening_store","displayName":"Hydroponic Gardening Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"outdoor_furniture_store","displayName":"Outdoor Furniture Store","basicCategory":"hardware_home_and_garden_store"},{"name":"paint_store","displayName":"Paint Store","basicCategory":"hardware_home_and_garden_store"},{"name":"rug_store","displayName":"Rug Store","basicCategory":"hardware_home_and_garden_store"},{"name":"tile_store","displayName":"Tile Store","basicCategory":"hardware_home_and_garden_store"},{"name":"wallpaper_store","displayName":"Wallpaper Store","basicCategory":"hardware_home_and_garden_store"},{"name":"window_treatment_store","displayName":"Window Treatment Store","basicCategory":"hardware_home_and_garden_store"},{"name":"woodworking_supply_store","displayName":"Woodworking Supply Store","basicCategory":"hardware_home_and_garden_store"}]},{"name":"medical_supply_store","displayName":"Medical Supply Store","basicCategory":"specialty_store","children":[{"name":"dental_supply_store","displayName":"Dental Supply Store","basicCategory":"specialty_store"},{"name":"hearing_aid_store","displayName":"Hearing Aid Store","basicCategory":"specialty_store"}]},{"name":"musical_instrument_and_pro_audio_store","displayName":"Musical Instrument and Pro Audio Store","isBasic":true,"children":[{"name":"dj_equipment_store","displayName":"DJ Equipment Store","basicCategory":"musical_instrument_and_pro_audio_store"},{"name":"musical_instrument_store","displayName":"Musical Instrument Store","basicCategory":"musical_instrument_and_pro_audio_store","children":[{"name":"guitar_store","displayName":"Guitar Store","basicCategory":"musical_instrument_and_pro_audio_store"},{"name":"piano_store","displayName":"Piano Store","basicCategory":"musical_instrument_and_pro_audio_store"}]},{"name":"pro_audio_store","displayName":"Pro Audio Store","basicCategory":"musical_instrument_and_pro_audio_store"}]},{"name":"office_supply_store","displayName":"Office Supply Store","isBasic":true,"children":[{"name":"packing_supply_store","displayName":"Packing Supply Store","basicCategory":"office_supply_store"},{"name":"pen_store","displayName":"Pen Store","basicCategory":"office_supply_store"}]},{"name":"outlet_store","displayName":"Outlet Store","basicCategory":"specialty_store"},{"name":"party_supply_store","displayName":"Party Supply Store","basicCategory":"specialty_store"},{"name":"personal_care_and_beauty_store","displayName":"Personal Care and Beauty Store","isBasic":true,"children":[{"name":"bath_and_body_store","displayName":"Bath and Body Store","basicCategory":"personal_care_and_beauty_store"},{"name":"beauty_supply_store","displayName":"Beauty Supply Store","basicCategory":"personal_care_and_beauty_store","children":[{"name":"cosmetics_and_fragrance_store","displayName":"Cosmetics and Fragrance Store","basicCategory":"personal_care_and_beauty_store"},{"name":"hair_supply_store","displayName":"Hair Supply Store","basicCategory":"personal_care_and_beauty_store"},{"name":"wig_store","displayName":"Wig Store","basicCategory":"personal_care_and_beauty_store"}]}]},{"name":"pharmacy_and_drug_store","displayName":"Pharmacy and Drug Store","isBasic":true,"children":[{"name":"drugstore","displayName":"Drugstore","basicCategory":"pharmacy_and_drug_store"},{"name":"pharmacy","displayName":"Pharmacy","basicCategory":"pharmacy_and_drug_store"}]},{"name":"pop_up_store","displayName":"Pop Up Store","basicCategory":"specialty_store"},{"name":"religious_and_spiritual_goods_store","displayName":"Religious and Spiritual Goods Store","basicCategory":"specialty_store","children":[{"name":"buddhist_goods_store","displayName":"Buddhist Goods Store","basicCategory":"specialty_store"},{"name":"christian_goods_store","displayName":"Christian Goods Store","basicCategory":"specialty_store","children":[{"name":"church_supply_store","displayName":"Church Supply Store","basicCategory":"specialty_store"}]},{"name":"hindu_goods_store","displayName":"Hindu Goods Store","basicCategory":"specialty_store"},{"name":"islamic_goods_store","displayName":"Islamic Goods Store","basicCategory":"specialty_store"},{"name":"jewish_goods_store","displayName":"Jewish Goods Store","basicCategory":"specialty_store"},{"name":"mind_body_spirit_store","displayName":"Mind Body Spirit Store","basicCategory":"specialty_store"},{"name":"new_age_goods_store","displayName":"New Age Goods Store","basicCategory":"specialty_store"},{"name":"occult_store","displayName":"Occult Store","basicCategory":"specialty_store"},{"name":"pagan_goods_store","displayName":"Pagan Goods Store","basicCategory":"specialty_store"}]},{"name":"safe_store","displayName":"Safe Store","basicCategory":"specialty_store"},{"name":"safety_equipment_store","displayName":"Safety Equipment Store","basicCategory":"specialty_store"},{"name":"smoke_and_vape_store","displayName":"Smoke and Vape Store","basicCategory":"specialty_store","children":[{"name":"cannabis_dispensary","displayName":"Cannabis Dispensary","basicCategory":"specialty_store"}]},{"name":"souvenir_store","displayName":"Souvenir Store","basicCategory":"specialty_store"},{"name":"sporting_goods_store","displayName":"Sporting Goods Store","isBasic":true,"children":[{"name":"archery_store","displayName":"Archery Store","basicCategory":"sporting_goods_store"},{"name":"bike_store","displayName":"Bike Store","basicCategory":"sporting_goods_store"},{"name":"dive_store","displayName":"Dive Store","basicCategory":"sporting_goods_store"},{"name":"fitness_exercise_store","displayName":"Fitness Exercise Store","basicCategory":"sporting_goods_store"},{"name":"golf_equipment_store","displayName":"Golf Equipment Store","basicCategory":"sporting_goods_store"},{"name":"hockey_equipment_store","displayName":"Hockey Equipment Store","basicCategory":"sporting_goods_store"},{"name":"hunting_and_fishing_store","displayName":"Hunting and Fishing Store","basicCategory":"sporting_goods_store"},{"name":"outdoor_store","displayName":"Outdoor Store","basicCategory":"sporting_goods_store"},{"name":"pool_and_billiards_store","displayName":"Pool and Billiards Store","basicCategory":"sporting_goods_store"},{"name":"skate_store","displayName":"Skate Store","basicCategory":"sporting_goods_store"},{"name":"ski_and_snowboard_store","displayName":"Ski and Snowboard Store","basicCategory":"sporting_goods_store"},{"name":"sportswear_store","displayName":"Sportswear Store","basicCategory":"sporting_goods_store","children":[{"name":"dancewear_store","displayName":"Dancewear Store","basicCategory":"sporting_goods_store"}]},{"name":"surf_store","displayName":"Surf Store","basicCategory":"sporting_goods_store"},{"name":"swimwear_store","displayName":"Swimwear Store","basicCategory":"sporting_goods_store"}]},{"name":"tactical_supply_store","displayName":"Tactical Supply Store","basicCategory":"specialty_store","children":[{"name":"army_and_navy_store","displayName":"Army and Navy Store","basicCategory":"specialty_store"},{"name":"military_surplus_store","displayName":"Military Surplus Store","basicCategory":"specialty_store"}]},{"name":"toys_and_games_store","displayName":"Toys and Games Store","isBasic":true,"children":[{"name":"tabletop_games_store","displayName":"Tabletop Games Store","basicCategory":"toys_and_games_store"},{"name":"toy_store","displayName":"Toy Store","basicCategory":"toys_and_games_store"}]},{"name":"trophy_store","displayName":"Trophy Store","basicCategory":"specialty_store"},{"name":"vehicle_parts_store","displayName":"Vehicle Parts Store","isBasic":true,"children":[{"name":"auto_parts_store","displayName":"Auto Parts Store","basicCategory":"vehicle_parts_store"},{"name":"boat_parts_store","displayName":"Boat Parts Store","basicCategory":"vehicle_parts_store"},{"name":"motorcycle_parts_store","displayName":"Motorcycle Parts Store","basicCategory":"vehicle_parts_store"},{"name":"motorsports_store","displayName":"Motorsports Store","basicCategory":"vehicle_parts_store"},{"name":"rv_parts_store","displayName":"RV Parts Store","basicCategory":"vehicle_parts_store"}]}]},{"name":"superstore","displayName":"Superstore","isBasic":true},{"name":"vehicle_dealer","displayName":"Vehicle Dealer","isBasic":true,"children":[{"name":"aircraft_dealer","displayName":"Aircraft Dealer","basicCategory":"vehicle_dealer"},{"name":"auto_dealer","displayName":"Auto Dealer","isBasic":true,"children":[{"name":"auto_broker","displayName":"Auto Broker","basicCategory":"auto_dealer"},{"name":"auto_leasing","displayName":"Auto Leasing","basicCategory":"auto_dealer"},{"name":"used_auto_dealer","displayName":"Used Auto Dealer","basicCategory":"auto_dealer"}]},{"name":"boat_dealer","displayName":"Boat Dealer","basicCategory":"vehicle_dealer"},{"name":"commercial_vehicle_dealer","displayName":"Commercial Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"forklift_dealer","displayName":"Forklift Dealer","basicCategory":"vehicle_dealer"},{"name":"golf_cart_dealer","displayName":"Golf Cart Dealer","basicCategory":"vehicle_dealer"},{"name":"motorcycle_dealer","displayName":"Motorcycle Dealer","basicCategory":"vehicle_dealer"},{"name":"motorsport_vehicle_dealer","displayName":"Motorsport Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"recreational_vehicle_dealer","displayName":"Recreational Vehicle Dealer","basicCategory":"vehicle_dealer"},{"name":"scooter_dealer","displayName":"Scooter Dealer","basicCategory":"vehicle_dealer"},{"name":"trailer_dealer","displayName":"Trailer Dealer","basicCategory":"vehicle_dealer"},{"name":"truck_dealer","displayName":"Truck Dealer","basicCategory":"vehicle_dealer"}]},{"name":"warehouse_club_store","displayName":"Warehouse Club Store","isBasic":true}]},{"name":"sports_and_recreation","displayName":"Sports and Recreation","isBasic":true,"children":[{"name":"park","displayName":"Park","isBasic":true,"children":[{"name":"dog_park","displayName":"Dog Park","isBasic":true},{"name":"mountain_bike_park","displayName":"Mountain Bike Park","basicCategory":"park"},{"name":"national_park","displayName":"National Park","isBasic":true},{"name":"playground","displayName":"Playground","isBasic":true},{"name":"state_park","displayName":"State Park","basicCategory":"park"},{"name":"water_park","displayName":"Water Park","basicCategory":"park"}]},{"name":"recreational_equipment_rental","displayName":"Recreational Equipment Rental","isBasic":true,"children":[{"name":"atv_rental_tour","displayName":"ATV Rental Tour","basicCategory":"recreational_equipment_rental"},{"name":"beach_equipment_rental","displayName":"Beach Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"bike_rental","displayName":"Bike Rental","basicCategory":"recreational_equipment_rental"},{"name":"boat_hire_service","displayName":"Boat Hire Service","basicCategory":"recreational_equipment_rental"},{"name":"boat_rental_and_training","displayName":"Boat Rental and Training","basicCategory":"recreational_equipment_rental"},{"name":"canoe_and_kayak_hire_service","displayName":"Canoe and Kayak Hire Service","basicCategory":"recreational_equipment_rental"},{"name":"jet_skis_rental","displayName":"Jet Skis Rental","basicCategory":"recreational_equipment_rental"},{"name":"paddleboard_rental","displayName":"Paddleboard Rental","basicCategory":"recreational_equipment_rental"},{"name":"scooter_rental","displayName":"Scooter Rental","basicCategory":"recreational_equipment_rental"},{"name":"sledding_rental","displayName":"Sledding Rental","basicCategory":"recreational_equipment_rental"},{"name":"snorkeling_equipment_rental","displayName":"Snorkeling Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"sport_equipment_rental","displayName":"Sport Equipment Rental","basicCategory":"recreational_equipment_rental"},{"name":"surfboard_rental","displayName":"Surfboard Rental","basicCategory":"recreational_equipment_rental"}]},{"name":"recreational_trail_or_path","displayName":"Recreational Trail or Path","isBasic":true,"children":[{"name":"backpacking_area","displayName":"Backpacking Area","basicCategory":"recreational_trail_or_path"},{"name":"bike_path","displayName":"Bike Path","basicCategory":"recreational_trail_or_path"},{"name":"hiking_trail","displayName":"Hiking Trail","basicCategory":"recreational_trail_or_path"},{"name":"mountain_bike_trail","displayName":"Mountain Bike Trail","basicCategory":"recreational_trail_or_path"}]},{"name":"sport_league","displayName":"Sport League","isBasic":true,"children":[{"name":"amateur_sport_league","displayName":"Amateur Sport League","basicCategory":"sport_league"},{"name":"esports_league","displayName":"Esports League","basicCategory":"sport_league"},{"name":"professional_sport_league","displayName":"Professional Sport League","basicCategory":"sport_league"},{"name":"school_sport_league","displayName":"School Sport League","basicCategory":"sport_league"}]},{"name":"sport_or_fitness_facility","displayName":"Sport or Fitness Facility","isBasic":true,"children":[{"name":"adventure_sport","displayName":"Adventure Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"axe_throwing","displayName":"Axe Throwing","basicCategory":"sport_or_fitness_facility"},{"name":"bungee_jumping_center","displayName":"Bungee Jumping Center","basicCategory":"sport_or_fitness_facility"},{"name":"challenge_courses_center","displayName":"Challenge Courses Center","basicCategory":"sport_or_fitness_facility"},{"name":"cliff_jumping_center","displayName":"Cliff Jumping Center","basicCategory":"sport_or_fitness_facility"},{"name":"climbing_service","displayName":"Climbing Service","basicCategory":"sport_or_fitness_facility"},{"name":"high_gliding_center","displayName":"High Gliding Center","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_spot","displayName":"Rock Climbing Spot","basicCategory":"sport_or_fitness_facility"},{"name":"ziplining_center","displayName":"Ziplining Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"adventure_sports_center","displayName":"Adventure Sports Center","basicCategory":"sport_or_fitness_facility"},{"name":"atv_recreation_park","displayName":"ATV Recreation Park","basicCategory":"sport_or_fitness_facility"},{"name":"batting_cage","displayName":"Batting Cage","basicCategory":"sport_or_fitness_facility"},{"name":"bowling_alley","displayName":"Bowling Alley","basicCategory":"sport_or_fitness_facility"},{"name":"boxing_class","displayName":"Boxing Class","basicCategory":"sport_or_fitness_facility"},{"name":"boxing_gym","displayName":"Boxing Gym","basicCategory":"sport_or_fitness_facility"},{"name":"cardio_class","displayName":"Cardio Class","basicCategory":"sport_or_fitness_facility"},{"name":"climbing_class","displayName":"Climbing Class","basicCategory":"sport_or_fitness_facility"},{"name":"curling_center","displayName":"Curling Center","basicCategory":"sport_or_fitness_facility"},{"name":"curling_ice","displayName":"Curling Ice","basicCategory":"sport_or_fitness_facility"},{"name":"cycling_class","displayName":"Cycling Class","basicCategory":"sport_or_fitness_facility"},{"name":"dance_studio","displayName":"Dance Studio","basicCategory":"sport_or_fitness_facility"},{"name":"diving_center","displayName":"Diving Center","basicCategory":"sport_or_fitness_facility","children":[{"name":"free_diving_center","displayName":"Free Diving Center","basicCategory":"sport_or_fitness_facility"},{"name":"scuba_diving_center","displayName":"Scuba Diving Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"diving_instruction","displayName":"Diving Instruction","basicCategory":"sport_or_fitness_facility","children":[{"name":"free_diving_instruction","displayName":"Free Diving Instruction","basicCategory":"sport_or_fitness_facility"},{"name":"scuba_diving_instruction","displayName":"Scuba Diving Instruction","basicCategory":"sport_or_fitness_facility"}]},{"name":"fitness_studio","displayName":"Fitness Studio","isBasic":true,"children":[{"name":"aerial_fitness_center","displayName":"Aerial Fitness Center","basicCategory":"fitness_studio"},{"name":"barre_class","displayName":"Barre Class","basicCategory":"fitness_studio"},{"name":"boot_camp","displayName":"Boot Camp","basicCategory":"fitness_studio"},{"name":"pilates_studio","displayName":"Pilates Studio","basicCategory":"fitness_studio"},{"name":"qi_gong_studio","displayName":"Qi Gong Studio","basicCategory":"fitness_studio"},{"name":"tai_chi_studio","displayName":"Tai Chi Studio","basicCategory":"fitness_studio"},{"name":"yoga_studio","displayName":"Yoga Studio","basicCategory":"fitness_studio"}]},{"name":"fitness_trainer","displayName":"Fitness Trainer","basicCategory":"sport_or_fitness_facility"},{"name":"flyboarding_center","displayName":"Flyboarding Center","basicCategory":"sport_or_fitness_facility"},{"name":"flyboarding_rental","displayName":"Flyboarding Rental","basicCategory":"sport_or_fitness_facility"},{"name":"golf_course","displayName":"Golf Course","isBasic":true,"children":[{"name":"driving_range","displayName":"Driving Range","basicCategory":"golf_course"}]},{"name":"golf_instructor","displayName":"Golf Instructor","basicCategory":"sport_or_fitness_facility"},{"name":"gym","displayName":"Gym","isBasic":true,"children":[{"name":"cycle_studio","displayName":"Cycle Studio","basicCategory":"gym"}]},{"name":"gymnastics_center","displayName":"Gymnastics Center","basicCategory":"sport_or_fitness_facility"},{"name":"hang_gliding_center","displayName":"Hang Gliding Center","basicCategory":"sport_or_fitness_facility"},{"name":"hockey_rink","displayName":"Hockey Rink","basicCategory":"sport_or_fitness_facility","children":[{"name":"ice_hockey_rink","displayName":"Ice Hockey Rink","basicCategory":"sport_or_fitness_facility"},{"name":"roller_hockey_rink","displayName":"Roller Hockey Rink","basicCategory":"sport_or_fitness_facility"}]},{"name":"horse_riding","displayName":"Horse Riding","basicCategory":"sport_or_fitness_facility","children":[{"name":"equestrian_facility","displayName":"Equestrian Facility","basicCategory":"sport_or_fitness_facility"}]},{"name":"horseback_riding_service","displayName":"Horseback Riding Service","basicCategory":"sport_or_fitness_facility"},{"name":"indoor_playcenter","displayName":"Indoor Playcenter","basicCategory":"sport_or_fitness_facility"},{"name":"kiteboarding","displayName":"Kiteboarding","basicCategory":"sport_or_fitness_facility"},{"name":"kiteboarding_instruction","displayName":"Kiteboarding Instruction","basicCategory":"sport_or_fitness_facility"},{"name":"laser_tag","displayName":"Laser Tag","basicCategory":"sport_or_fitness_facility"},{"name":"miniature_golf_course","displayName":"Miniature Golf Course","basicCategory":"sport_or_fitness_facility"},{"name":"paddleboarding_center","displayName":"Paddleboarding Center","basicCategory":"sport_or_fitness_facility"},{"name":"paddleboarding_lessons","displayName":"Paddleboarding Lessons","basicCategory":"sport_or_fitness_facility"},{"name":"paintball","displayName":"Paintball","basicCategory":"sport_or_fitness_facility"},{"name":"parasailing_ride_service","displayName":"Parasailing Ride Service","basicCategory":"sport_or_fitness_facility"},{"name":"pool_billiards","displayName":"Pool Billiards","basicCategory":"sport_or_fitness_facility","children":[{"name":"pool_hall","displayName":"Pool Hall","basicCategory":"sport_or_fitness_facility"}]},{"name":"race_track","displayName":"Race Track","basicCategory":"sport_or_fitness_facility","children":[{"name":"go_kart_track","displayName":"Go Kart Track","basicCategory":"sport_or_fitness_facility"},{"name":"horse_racing_track","displayName":"Horse Racing Track","basicCategory":"sport_or_fitness_facility"},{"name":"motor_race_track","displayName":"Motor Race Track","basicCategory":"sport_or_fitness_facility"},{"name":"track_and_field_track","displayName":"Track and Field Track","basicCategory":"sport_or_fitness_facility"},{"name":"velodrome","displayName":"Velodrome","basicCategory":"sport_or_fitness_facility"}]},{"name":"racing_experience","displayName":"Racing Experience","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_gym","displayName":"Rock Climbing Gym","basicCategory":"sport_or_fitness_facility"},{"name":"rock_climbing_instructor","displayName":"Rock Climbing Instructor","basicCategory":"sport_or_fitness_facility"},{"name":"running_and_track","displayName":"Running and Track","basicCategory":"sport_or_fitness_facility","children":[{"name":"running","displayName":"Running","basicCategory":"sport_or_fitness_facility"},{"name":"track_field_event","displayName":"Track Field Event","basicCategory":"sport_or_fitness_facility"}]},{"name":"self_defense_class","displayName":"Self Defense Class","basicCategory":"sport_or_fitness_facility"},{"name":"shooting_range","displayName":"Shooting Range","basicCategory":"sport_or_fitness_facility","children":[{"name":"archery_range","displayName":"Archery Range","basicCategory":"sport_or_fitness_facility"}]},{"name":"skate_park","displayName":"Skate Park","isBasic":true},{"name":"skating_rink","displayName":"Skating Rink","isBasic":true,"children":[{"name":"ice_skating_rink","displayName":"Ice Skating Rink","basicCategory":"skating_rink"},{"name":"roller_skating_rink","displayName":"Roller Skating Rink","basicCategory":"skating_rink"}]},{"name":"ski_and_snowboard_school","displayName":"Ski and Snowboard School","basicCategory":"sport_or_fitness_facility"},{"name":"sky_diving","displayName":"Sky Diving","basicCategory":"sport_or_fitness_facility","children":[{"name":"sky_diving_drop_zone","displayName":"Sky Diving Drop Zone","basicCategory":"sport_or_fitness_facility"},{"name":"skydiving_center","displayName":"Skydiving Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"snow_sport","displayName":"Snow Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"bobsledding_field","displayName":"Bobsledding Field","basicCategory":"sport_or_fitness_facility"},{"name":"ski_area","displayName":"Ski Area","basicCategory":"sport_or_fitness_facility"},{"name":"ski_chairlift","displayName":"Ski Chairlift","basicCategory":"sport_or_fitness_facility"},{"name":"ski_chalet","displayName":"Ski Chalet","basicCategory":"sport_or_fitness_facility"},{"name":"ski_resort_area","displayName":"Ski Resort Area","basicCategory":"sport_or_fitness_facility"},{"name":"snowboarding_center","displayName":"Snowboarding Center","basicCategory":"sport_or_fitness_facility"}]},{"name":"sport_court","displayName":"Sport Court","isBasic":true,"children":[{"name":"badminton_court","displayName":"Badminton Court","basicCategory":"sport_court"},{"name":"basketball_court","displayName":"Basketball Court","basicCategory":"sport_court"},{"name":"beach_volleyball_court","displayName":"Beach Volleyball Court","basicCategory":"sport_court"},{"name":"bocce_ball_court","displayName":"Bocce Ball Court","basicCategory":"sport_court"},{"name":"handball_court","displayName":"Handball Court","basicCategory":"sport_court"},{"name":"pickleball_court","displayName":"Pickleball Court","basicCategory":"sport_court"},{"name":"racquetball_court","displayName":"Racquetball Court","basicCategory":"sport_court"},{"name":"squash_court","displayName":"Squash Court","basicCategory":"sport_court"},{"name":"street_hockey_court","displayName":"Street Hockey Court","basicCategory":"sport_court"},{"name":"tennis_court","displayName":"Tennis Court","basicCategory":"sport_court"},{"name":"volleyball_court","displayName":"Volleyball Court","basicCategory":"sport_court"}]},{"name":"sport_field","displayName":"Sport Field","isBasic":true,"children":[{"name":"airsoft_field","displayName":"Airsoft Field","basicCategory":"sport_field"},{"name":"american_football_field","displayName":"American Football Field","basicCategory":"sport_field"},{"name":"baseball_field","displayName":"Baseball Field","basicCategory":"sport_field"},{"name":"disc_golf_course","displayName":"Disc Golf Course","basicCategory":"sport_field"},{"name":"futsal_field","displayName":"Futsal Field","basicCategory":"sport_field"},{"name":"hockey_field","displayName":"Hockey Field","basicCategory":"sport_field","children":[{"name":"field_hockey_pitch","displayName":"Field Hockey Pitch","basicCategory":"sport_field"}]},{"name":"lacrosse_field","displayName":"Lacrosse Field","basicCategory":"sport_field"},{"name":"rugby_pitch","displayName":"Rugby Pitch","basicCategory":"sport_field"},{"name":"soccer_field","displayName":"Soccer Field","basicCategory":"sport_field"},{"name":"softball_field","displayName":"Softball Field","basicCategory":"sport_field"}]},{"name":"sports_complex","displayName":"Sports Complex","isBasic":true},{"name":"surfing_school","displayName":"Surfing School","basicCategory":"sport_or_fitness_facility"},{"name":"swimming_pool","displayName":"Swimming Pool","isBasic":true,"children":[{"name":"swimming_instructor","displayName":"Swimming Instructor","basicCategory":"swimming_pool"}]},{"name":"trampoline_park","displayName":"Trampoline Park","basicCategory":"sport_or_fitness_facility"},{"name":"tubing_provider","displayName":"Tubing Provider","basicCategory":"sport_or_fitness_facility"},{"name":"water_sport","displayName":"Water Sport","basicCategory":"sport_or_fitness_facility","children":[{"name":"boating_place","displayName":"Boating Place","basicCategory":"sport_or_fitness_facility"},{"name":"fishing","displayName":"Fishing","basicCategory":"sport_or_fitness_facility","children":[{"name":"fishing_area","displayName":"Fishing Area","basicCategory":"sport_or_fitness_facility"},{"name":"fishing_charter","displayName":"Fishing Charter","basicCategory":"sport_or_fitness_facility"}]},{"name":"rafting_kayaking_area","displayName":"Rafting Kayaking Area","basicCategory":"sport_or_fitness_facility"},{"name":"sailing_area","displayName":"Sailing Area","basicCategory":"sport_or_fitness_facility"},{"name":"snorkeling","displayName":"Snorkeling","basicCategory":"sport_or_fitness_facility"},{"name":"surfing","displayName":"Surfing","basicCategory":"sport_or_fitness_facility","children":[{"name":"windsurfing_center","displayName":"Windsurfing Center","basicCategory":"sport_or_fitness_facility"}]}]},{"name":"wildlife_hunting_range","displayName":"Wildlife Hunting Range","basicCategory":"sport_or_fitness_facility"}]},{"name":"sport_or_recreation_club","displayName":"Sport or Recreation Club","isBasic":true,"children":[{"name":"beach_volleyball_club","displayName":"Beach Volleyball Club","basicCategory":"sport_or_recreation_club"},{"name":"curling_club","displayName":"Curling Club","basicCategory":"sport_or_recreation_club"},{"name":"fencing_club","displayName":"Fencing Club","basicCategory":"sport_or_recreation_club"},{"name":"fishing_club","displayName":"Fishing Club","basicCategory":"sport_or_recreation_club"},{"name":"football_club","displayName":"Football Club","basicCategory":"sport_or_recreation_club"},{"name":"go_kart_club","displayName":"Go Kart Club","basicCategory":"sport_or_recreation_club"},{"name":"golf_club","displayName":"Golf Club","basicCategory":"sport_or_recreation_club","children":[{"name":"indoor_golf_center","displayName":"Indoor Golf Center","basicCategory":"sport_or_recreation_club"}]},{"name":"gymnastics_club","displayName":"Gymnastics Club","basicCategory":"sport_or_recreation_club"},{"name":"hockey_club","displayName":"Hockey Club","basicCategory":"sport_or_recreation_club","children":[{"name":"field_hockey_club","displayName":"Field Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"ice_hockey_club","displayName":"Ice Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"roller_hockey_club","displayName":"Roller Hockey Club","basicCategory":"sport_or_recreation_club"},{"name":"street_hockey_club","displayName":"Street Hockey Club","basicCategory":"sport_or_recreation_club"}]},{"name":"lacrosse_club","displayName":"Lacrosse Club","basicCategory":"sport_or_recreation_club"},{"name":"lawn_bowling_club","displayName":"Lawn Bowling Club","basicCategory":"sport_or_recreation_club"},{"name":"martial_arts_club","displayName":"Martial Arts Club","basicCategory":"sport_or_recreation_club","children":[{"name":"brazilian_jiu_jitsu_club","displayName":"Brazilian Jiu Jitsu Club","basicCategory":"sport_or_recreation_club"},{"name":"chinese_martial_arts_club","displayName":"Chinese Martial Arts Club","basicCategory":"sport_or_recreation_club"},{"name":"karate_club","displayName":"Karate Club","basicCategory":"sport_or_recreation_club"},{"name":"kickboxing_club","displayName":"Kickboxing Club","basicCategory":"sport_or_recreation_club"},{"name":"muay_thai_club","displayName":"Muay Thai Club","basicCategory":"sport_or_recreation_club"},{"name":"taekwondo_club","displayName":"Taekwondo Club","basicCategory":"sport_or_recreation_club"}]},{"name":"naturist_club","displayName":"Naturist Club","basicCategory":"sport_or_recreation_club"},{"name":"paddle_tennis_club","displayName":"Paddle Tennis Club","basicCategory":"sport_or_recreation_club"},{"name":"pickleball_club","displayName":"Pickleball Club","basicCategory":"sport_or_recreation_club"},{"name":"rowing_club","displayName":"Rowing Club","basicCategory":"sport_or_recreation_club"},{"name":"running_and_track_club","displayName":"Running and Track Club","basicCategory":"sport_or_recreation_club","children":[{"name":"running_club","displayName":"Running Club","basicCategory":"sport_or_recreation_club"},{"name":"track_and_field_club","displayName":"Track and Field Club","basicCategory":"sport_or_recreation_club"}]},{"name":"sailing_club","displayName":"Sailing Club","basicCategory":"sport_or_recreation_club"},{"name":"soccer_club","displayName":"Soccer Club","basicCategory":"sport_or_recreation_club"},{"name":"surf_lifesaving_club","displayName":"Surf Lifesaving Club","basicCategory":"sport_or_recreation_club"},{"name":"table_tennis_club","displayName":"Table Tennis Club","basicCategory":"sport_or_recreation_club"},{"name":"volleyball_club","displayName":"Volleyball Club","basicCategory":"sport_or_recreation_club"}]},{"name":"sport_team","displayName":"Sport Team","isBasic":true,"children":[{"name":"amateur_sport_team","displayName":"Amateur Sport Team","basicCategory":"sport_team"},{"name":"esports_team","displayName":"Esports Team","basicCategory":"sport_team"},{"name":"professional_sport_team","displayName":"Professional Sport Team","basicCategory":"sport_team"},{"name":"school_sport_team","displayName":"School Sport Team","basicCategory":"sport_team"}]}]},{"name":"travel_and_transportation","displayName":"Travel and Transportation","isBasic":true,"children":[{"name":"air_transport_facility_or_service","displayName":"Air Transport Facility or Service","isBasic":true,"children":[{"name":"aircraft_parts_and_supplies","displayName":"Aircraft Parts and Supplies","basicCategory":"air_transport_facility_or_service","children":[{"name":"avionics_shop","displayName":"Avionics Shop","basicCategory":"air_transport_facility_or_service"}]},{"name":"airline","displayName":"Airline","basicCategory":"air_transport_facility_or_service"},{"name":"airline_ticket_agency","displayName":"Airline Ticket Agency","basicCategory":"air_transport_facility_or_service"},{"name":"airport","displayName":"Airport","isBasic":true,"children":[{"name":"airport_terminal","displayName":"Airport Terminal","basicCategory":"airport"},{"name":"balloon_port","displayName":"Balloon Port","basicCategory":"airport"},{"name":"glider_port","displayName":"Glider Port","basicCategory":"airport"},{"name":"heliport","displayName":"Heliport","basicCategory":"airport"},{"name":"seaplane_base","displayName":"Seaplane Base","basicCategory":"airport"},{"name":"ultralight_airport","displayName":"Ultralight Airport","basicCategory":"airport"}]},{"name":"airport_shuttle","displayName":"Airport Shuttle","basicCategory":"air_transport_facility_or_service"},{"name":"private_jet_charter","displayName":"Private Jet Charter","basicCategory":"air_transport_facility_or_service"}]},{"name":"fueling_station","displayName":"Fueling Station","isBasic":true,"children":[{"name":"ev_charging_station","displayName":"EV Charging Station","isBasic":true},{"name":"gas_station","displayName":"Gas Station","isBasic":true,"children":[{"name":"fuel_dock","displayName":"Fuel Dock","basicCategory":"gas_station"},{"name":"truck_gas_station","displayName":"Truck Gas Station","basicCategory":"gas_station"}]}]},{"name":"ground_transport_facility_or_service","displayName":"Ground Transport Facility or Service","isBasic":true,"children":[{"name":"bikes_and_bike_service","displayName":"Bikes and Bike Service","basicCategory":"ground_transport_facility_or_service","children":[{"name":"bike_sharing_location","displayName":"Bike Sharing Location","basicCategory":"ground_transport_facility_or_service"}]},{"name":"public_transit_facility_or_service","displayName":"Public Transit Facility or Service","isBasic":true,"children":[{"name":"bus_station","displayName":"Bus Station","basicCategory":"public_transit_facility_or_service"},{"name":"bus_ticket_agency","displayName":"Bus Ticket Agency","basicCategory":"public_transit_facility_or_service"},{"name":"cable_car_service","displayName":"Cable Car Service","basicCategory":"public_transit_facility_or_service"},{"name":"coach_bus","displayName":"Coach Bus","basicCategory":"public_transit_facility_or_service"},{"name":"light_rail_and_subway_station","displayName":"Light Rail and Subway Station","basicCategory":"public_transit_facility_or_service"},{"name":"metro_station","displayName":"Metro Station","basicCategory":"public_transit_facility_or_service"}]},{"name":"rail_facility_or_service","displayName":"Rail Facility or Service","isBasic":true,"children":[{"name":"railway_ticket_agent","displayName":"Railway Ticket Agent","basicCategory":"rail_facility_or_service"},{"name":"train","displayName":"Train","basicCategory":"rail_facility_or_service"},{"name":"train_station","displayName":"Train Station","isBasic":true}]},{"name":"road_structures_and_service","displayName":"Road Structures and Service","basicCategory":"ground_transport_facility_or_service","children":[{"name":"rest_stop","displayName":"Rest Stop","isBasic":true},{"name":"toll_station","displayName":"Toll Station","isBasic":true},{"name":"truck_stop","displayName":"Truck Stop","basicCategory":"ground_transport_facility_or_service"}]},{"name":"taxi_or_ride_share_service","displayName":"Taxi or Ride Share Service","isBasic":true,"children":[{"name":"car_sharing","displayName":"Car Sharing","basicCategory":"taxi_or_ride_share_service"},{"name":"limo_service","displayName":"Limo Service","basicCategory":"taxi_or_ride_share_service"},{"name":"pedicab_service","displayName":"Pedicab Service","basicCategory":"taxi_or_ride_share_service"},{"name":"ride_share_service","displayName":"Ride Share Service","basicCategory":"taxi_or_ride_share_service"},{"name":"taxi_service","displayName":"Taxi Service","basicCategory":"taxi_or_ride_share_service","children":[{"name":"taxi_stand","displayName":"Taxi Stand","basicCategory":"taxi_or_ride_share_service"}]},{"name":"town_car_service","displayName":"Town Car Service","basicCategory":"taxi_or_ride_share_service"}]}]},{"name":"parking","displayName":"Parking","isBasic":true,"children":[{"name":"bike_parking","displayName":"Bike Parking","basicCategory":"parking"},{"name":"motorcycle_parking","displayName":"Motorcycle Parking","basicCategory":"parking"},{"name":"park_and_ride","displayName":"Park and Ride","isBasic":true},{"name":"parking_garage","displayName":"Parking Garage","isBasic":true},{"name":"parking_lot","displayName":"Parking Lot","isBasic":true}]},{"name":"transport_interchange","displayName":"Transport Interchange","basicCategory":"travel_and_transportation"},{"name":"travel_service","displayName":"Travel Service","isBasic":true,"children":[{"name":"agritourism","displayName":"Agritourism","basicCategory":"travel_service"},{"name":"luggage_storage","displayName":"Luggage Storage","basicCategory":"travel_service"},{"name":"passport_and_visa_service","displayName":"Passport and Visa Service","basicCategory":"travel_service","children":[{"name":"visa_agent","displayName":"Visa Agent","basicCategory":"travel_service"}]},{"name":"tour_operator","displayName":"Tour Operator","basicCategory":"travel_service","children":[{"name":"aerial_tour","displayName":"Aerial Tour","basicCategory":"travel_service"},{"name":"architectural_tour","displayName":"Architectural Tour","basicCategory":"travel_service"},{"name":"art_tour","displayName":"Art Tour","basicCategory":"travel_service"},{"name":"beer_tour","displayName":"Beer Tour","basicCategory":"travel_service"},{"name":"bike_tour","displayName":"Bike Tour","basicCategory":"travel_service"},{"name":"boat_tour","displayName":"Boat Tour","basicCategory":"travel_service"},{"name":"bus_tour","displayName":"Bus Tour","basicCategory":"travel_service"},{"name":"cannabis_tour","displayName":"Cannabis Tour","basicCategory":"travel_service"},{"name":"food_tour","displayName":"Food Tour","basicCategory":"travel_service"},{"name":"historical_tour","displayName":"Historical Tour","basicCategory":"travel_service"},{"name":"hot_air_balloons_tour","displayName":"Hot Air Balloons Tour","basicCategory":"travel_service"},{"name":"scooter_tour","displayName":"Scooter Tour","basicCategory":"travel_service"},{"name":"sightseeing_tour_agency","displayName":"Sightseeing Tour Agency","basicCategory":"travel_service"},{"name":"walking_tour","displayName":"Walking Tour","basicCategory":"travel_service"},{"name":"whale_watching_tour","displayName":"Whale Watching Tour","basicCategory":"travel_service"},{"name":"wine_tour","displayName":"Wine Tour","basicCategory":"travel_service"}]},{"name":"travel_agent","displayName":"Travel Agent","basicCategory":"travel_service"},{"name":"vacation_rental_agent","displayName":"Vacation Rental Agent","basicCategory":"travel_service"},{"name":"visitor_center","displayName":"Visitor Center","basicCategory":"travel_service"}]},{"name":"vehicle_service","displayName":"Vehicle Service","isBasic":true,"children":[{"name":"aircraft_service","displayName":"Aircraft Service","basicCategory":"vehicle_service"},{"name":"automotive_service","displayName":"Automotive Service","isBasic":true,"children":[{"name":"auto_body_shop","displayName":"Auto Body Shop","basicCategory":"automotive_service"},{"name":"auto_customization","displayName":"Auto Customization","basicCategory":"automotive_service"},{"name":"auto_detailing","displayName":"Auto Detailing","basicCategory":"automotive_service"},{"name":"auto_glass_service","displayName":"Auto Glass Service","basicCategory":"automotive_service","children":[{"name":"car_window_tinting","displayName":"Car Window Tinting","basicCategory":"automotive_service"},{"name":"windshield_installation_and_repair","displayName":"Windshield Installation and Repair","basicCategory":"automotive_service"}]},{"name":"auto_restoration_service","displayName":"Auto Restoration Service","basicCategory":"automotive_service"},{"name":"auto_security","displayName":"Auto Security","basicCategory":"automotive_service"},{"name":"auto_upholstery","displayName":"Auto Upholstery","basicCategory":"automotive_service"},{"name":"automobile_registration_service","displayName":"Automobile Registration Service","basicCategory":"automotive_service"},{"name":"automotive_consultant","displayName":"Automotive Consultant","basicCategory":"automotive_service"},{"name":"automotive_repair","displayName":"Automotive Repair","basicCategory":"automotive_service","children":[{"name":"auto_electrical_repair","displayName":"Auto Electrical Repair","basicCategory":"automotive_service"},{"name":"brake_service_and_repair","displayName":"Brake Service and Repair","basicCategory":"automotive_service"},{"name":"diy_auto_shop","displayName":"DIY Auto Shop","basicCategory":"automotive_service"},{"name":"engine_repair_service","displayName":"Engine Repair Service","basicCategory":"automotive_service"},{"name":"exhaust_and_muffler_repair","displayName":"Exhaust and Muffler Repair","basicCategory":"automotive_service"},{"name":"hybrid_car_repair","displayName":"Hybrid Car Repair","basicCategory":"automotive_service"},{"name":"motorsport_vehicle_repair","displayName":"Motorsport Vehicle Repair","basicCategory":"automotive_service"},{"name":"tire_dealer_and_repair","displayName":"Tire Dealer and Repair","basicCategory":"automotive_service"},{"name":"trailer_repair","displayName":"Trailer Repair","basicCategory":"automotive_service"},{"name":"transmission_repair","displayName":"Transmission Repair","basicCategory":"automotive_service"},{"name":"wheel_and_rim_repair","displayName":"Wheel and Rim Repair","basicCategory":"automotive_service"}]},{"name":"automotive_wheel_polishing_service","displayName":"Automotive Wheel Polishing Service","basicCategory":"automotive_service"},{"name":"car_buyer","displayName":"Car Buyer","basicCategory":"automotive_service"},{"name":"car_inspection","displayName":"Car Inspection","basicCategory":"automotive_service"},{"name":"car_stereo_installation","displayName":"Car Stereo Installation","basicCategory":"automotive_service"},{"name":"car_wash","displayName":"Car Wash","basicCategory":"automotive_service"},{"name":"emergency_roadside_service","displayName":"Emergency Roadside Service","basicCategory":"automotive_service"},{"name":"emissions_inspection","displayName":"Emissions Inspection","basicCategory":"automotive_service"},{"name":"oil_change_station","displayName":"Oil Change Station","basicCategory":"automotive_service"},{"name":"tire_shop","displayName":"Tire Shop","basicCategory":"automotive_service"},{"name":"towing_service","displayName":"Towing Service","basicCategory":"automotive_service"},{"name":"truck_repair","displayName":"Truck Repair","basicCategory":"automotive_service"},{"name":"vehicle_wrap","displayName":"Vehicle Wrap","basicCategory":"automotive_service"}]},{"name":"boat_service","displayName":"Boat Service","basicCategory":"vehicle_service","children":[{"name":"mooring_service","displayName":"Mooring Service","basicCategory":"vehicle_service"}]},{"name":"delegated_driver_service","displayName":"Delegated Driver Service","basicCategory":"vehicle_service"},{"name":"motorcycle_service","displayName":"Motorcycle Service","basicCategory":"vehicle_service","children":[{"name":"motorcycle_repair","displayName":"Motorcycle Repair","basicCategory":"vehicle_service"}]},{"name":"recreation_vehicle_service","displayName":"Recreation Vehicle Service","basicCategory":"vehicle_service","children":[{"name":"recreation_vehicle_repair","displayName":"Recreation Vehicle Repair","basicCategory":"vehicle_service"}]},{"name":"roadside_assistance","displayName":"Roadside Assistance","basicCategory":"vehicle_service","children":[{"name":"mobile_dent_repair","displayName":"Mobile Dent Repair","basicCategory":"vehicle_service"}]}]},{"name":"water_transport_facility_or_service","displayName":"Water Transport Facility or Service","isBasic":true,"children":[{"name":"ferry_service","displayName":"Ferry Service","isBasic":true},{"name":"water_taxi_service","displayName":"Water Taxi Service","isBasic":true}]}]}]} From d0f91e3f9a68c2f95d312f000ecc4c66c7bdf7b1 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 15:45:46 -0400 Subject: [PATCH 15/19] add counts Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 63 +++++++++++++++++++ src/components/taxonomyBrowser.jsx | 24 ++++++- 2 files changed, 84 insertions(+), 3 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 438372e7f..7e73566f5 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -109,6 +109,69 @@ describe('TaxonomyBrowser', () => { 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')); + expect(rows()['Places at this category']).toBe('50'); + expect(rows()['Including subcategories']).toBe('150'); + }); + + 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'); + expect(rows()['Including subcategories']).toBe('100'); + }); + + 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'); + expect(rows()).not.toHaveProperty('Including subcategories'); + }); + }); + it('renders a download link per artifact', async () => { render(); const json = await screen.findByRole('link', { name: 'Taxonomy (JSON)' }); diff --git a/src/components/taxonomyBrowser.jsx b/src/components/taxonomyBrowser.jsx index 2a8a90fb4..9a55d9799 100644 --- a/src/components/taxonomyBrowser.jsx +++ b/src/components/taxonomyBrowser.jsx @@ -300,6 +300,7 @@ function buildJsonRelease(data) { code, basicCategory: node.basicCategory, count: node.leafCount, + totalCount: node.totalCount, prevCount: null, basicCount: null, prevBasicCount: null, @@ -513,7 +514,7 @@ function ChangeIndicator({ current, previous }) { ); } -function HierarchyLevelList({ hierarchy, selectedCode, basicCategory, basicCount, prevBasicCount, count, prevCount, pctTag, mappings, displayFields, data }) { +function HierarchyLevelList({ hierarchy, selectedCode, basicCategory, basicCount, prevBasicCount, count, totalCount, prevCount, pctTag, mappings, displayFields, data }) { if (!hierarchy) return null; const parts = hierarchy.split(' > '); const items = parts.map((part, i) => ({ @@ -535,8 +536,24 @@ function HierarchyLevelList({ hierarchy, selectedCode, basicCategory, basicCount 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 } }); + // 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. + if (count != null || totalCount != null) { + const direct = count ?? 0; + items.push({ + label: 'Places at this category', + value: direct.toLocaleString(), + countChange: { current: direct, previous: prevCount }, + }); + } + // Suppressed on a leaf, where the two numbers are the same. + if (totalCount != null && totalCount !== (count ?? 0)) { + items.push({ + label: 'Including subcategories', + value: totalCount.toLocaleString(), + }); } if (pctTag) { items.push({ label: 'Note', value: pctTag, isPctTag: true }); @@ -578,6 +595,7 @@ function SectionContent({ data, release }) { basicCount={data.basicCount} prevBasicCount={data.prevBasicCount} count={data.count} + totalCount={data.totalCount} prevCount={data.prevCount} pctTag={data.pctTag} displayFields={release.displayFields} From b880cfabd6377fd965d737027bb3e7c30cc4b7c8 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 15:51:14 -0400 Subject: [PATCH 16/19] fix buttons Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 17 +++++++++++++++++ src/components/taxonomyViz.jsx | 17 ++++++----------- src/css/taxonomyBrowser.css | 17 +++++++++++++++-- 3 files changed, 38 insertions(+), 13 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 7e73566f5..51d7b1624 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -514,6 +514,23 @@ describe('TaxonomyBrowser', () => { 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'); diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index 7599dcb9f..e65151577 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -420,14 +420,11 @@ function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, sele const blockHeight = labelLines.length * lineHeight + 12; const firstLineY = -blockHeight / 2 + labelSize; - // A circle narrows as you move away from its centre line, so a sub-label that - // clears the hole vertically can still stick out of the sides. Drop it when - // the chord at its baseline is too short to hold it. + // 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; - const subHalfWidth = (subText.length * 10 * CHAR_WIDTH_RATIO) / 2; - const chordHalfWidth = Math.sqrt(Math.max(0, holeRadius ** 2 - (subY + 4) ** 2)); - const showSub = chordHalfWidth >= subHalfWidth; return (
))} - {showSub && ( - - {subText} - - )} + + {subText} + diff --git a/src/css/taxonomyBrowser.css b/src/css/taxonomyBrowser.css index 79aa35d17..221db3505 100644 --- a/src/css/taxonomyBrowser.css +++ b/src/css/taxonomyBrowser.css @@ -728,12 +728,25 @@ } .taxonomy-viz-toggle { - display: flex; + display: inline-flex; align-items: center; gap: 6px; - font-size: 0.76em; + font-size: 0.8em; color: var(--ifm-color-emphasis-700); cursor: pointer; + user-select: none; +} + +/* 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-viz-nav { From 989efdd45e8e32ca1d789d88a27dab4da47ffc45 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 16:02:03 -0400 Subject: [PATCH 17/19] trim csvs Signed-off-by: Warren Ehrenfried --- docs/guides/places/_README.md | 11 +- docs/guides/places/taxonomy-explorer.mdx | 1 - docs/guides/places/taxonomy.mdx | 3 +- scripts/build-taxonomy.mjs | 34 +- .../2026-08-19.0/basic_categories.csv | 598 +-- static/taxonomy/2026-08-19.0/taxonomy.csv | 4606 ++++++++--------- 6 files changed, 2627 insertions(+), 2626 deletions(-) diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md index 5701dfbe6..862aab44f 100644 --- a/docs/guides/places/_README.md +++ b/docs/guides/places/_README.md @@ -30,9 +30,12 @@ npm run build-taxonomy -- \ --counts path/to/counts.csv # optional ``` -This writes `static/taxonomy//`, which Docusaurus serves verbatim — so -each file is both the browser's data source and a public download. Commit the -output; the docs build never reads the pipeline repo. +This writes `static/taxonomy//`, which Docusaurus serves verbatim. +Commit the output; the docs build never reads the pipeline repo. + +`taxonomy.json` is the explorer's data source, not a download: it carries the +place counts and roll-ups the page needs. The CSVs are the human-facing form and +are what `downloads` should link to. If `--counts` is omitted the taxonomy still renders, and the stats row reports "Not published" for place counts rather than showing a broken zero. Counts can @@ -53,8 +56,8 @@ be added later by re-running the generator; no component change is needed. ], dataUrl: '/taxonomy/2026-08-19.0/taxonomy.json', downloads: [ - { label: 'Taxonomy (JSON)', url: '/taxonomy/2026-08-19.0/taxonomy.json' }, { label: 'Taxonomy (CSV)', url: '/taxonomy/2026-08-19.0/taxonomy.csv' }, + { label: 'Basic categories (CSV)', url: '/taxonomy/2026-08-19.0/basic_categories.csv' }, ], displayFields: [ { field: 'is_basic', label: 'Is Basic Category' }, diff --git a/docs/guides/places/taxonomy-explorer.mdx b/docs/guides/places/taxonomy-explorer.mdx index ad7adbed6..aaa4398d2 100644 --- a/docs/guides/places/taxonomy-explorer.mdx +++ b/docs/guides/places/taxonomy-explorer.mdx @@ -123,7 +123,6 @@ See [Places Taxonomy](./taxonomy.mdx) for what the `taxonomy` and ], dataUrl: '/taxonomy/2026-08-19.0/taxonomy.json', downloads: [ - { label: 'Taxonomy (JSON)', url: '/taxonomy/2026-08-19.0/taxonomy.json' }, { label: 'Taxonomy (CSV)', url: '/taxonomy/2026-08-19.0/taxonomy.csv' }, { label: 'Basic categories (CSV)', url: '/taxonomy/2026-08-19.0/basic_categories.csv' }, { label: 'Legacy crosswalk (CSV)', url: '/taxonomy/2026-08-19.0/legacy_crosswalk.csv' }, diff --git a/docs/guides/places/taxonomy.mdx b/docs/guides/places/taxonomy.mdx index 8fc06ec4a..7cb0d54ea 100644 --- a/docs/guides/places/taxonomy.mdx +++ b/docs/guides/places/taxonomy.mdx @@ -115,8 +115,7 @@ the equivalents for every release it covers. | File | Contents | | --- | --- | -| [`taxonomy.json`](pathname:///taxonomy/2026-08-19.0/taxonomy.json) | The full taxonomy as a nested tree, with display names and basic-category flags. | -| [`taxonomy.csv`](pathname:///taxonomy/2026-08-19.0/taxonomy.csv) | One row per category: path, name, display name, level, top-level group, and basic category. | +| [`taxonomy.csv`](pathname:///taxonomy/2026-08-19.0/taxonomy.csv) | One row per category: full taxonomy path, primary category, display name, level, and basic category. | | [`basic_categories.csv`](pathname:///taxonomy/2026-08-19.0/basic_categories.csv) | The 298 basic categories and where each sits in the hierarchy. | | [`legacy_crosswalk.csv`](pathname:///taxonomy/2026-08-19.0/legacy_crosswalk.csv) | Every original `categories` value mapped to its taxonomy path. | diff --git a/scripts/build-taxonomy.mjs b/scripts/build-taxonomy.mjs index 65039c70f..7ce0266b2 100755 --- a/scripts/build-taxonomy.mjs +++ b/scripts/build-taxonomy.mjs @@ -106,8 +106,9 @@ function write(name, contents) { written.push([name, Buffer.byteLength(contents)]); } -// 1. Nested tree — the browser's data source, the visualization's d3 hierarchy, -// and the JSON download, all from one file. +// 1. Nested tree — the explorer's data source and the visualization's d3 +// hierarchy. Not offered as a download: it carries the place counts and +// roll-ups the page needs, and the CSVs below are the human-facing form. write( 'taxonomy.json', `${JSON.stringify( @@ -123,19 +124,20 @@ write( )}\n` ); -// 2. Flat category list — the spreadsheet answer to the download request. +// 2. Flat category list — the spreadsheet form of the taxonomy. write( 'taxonomy.csv', - toCsv(flat, [ - 'path', - 'name', - 'displayName', - 'level', - 'group', - 'isBasic', - 'basicCategory', - 'count', - ]) + toCsv( + flat.map(entry => ({ + taxonomy: entry.path, + primary: entry.name, + displayName: entry.displayName, + level: entry.level, + isBasic: entry.isBasic, + basicCategory: entry.basicCategory, + })), + ['taxonomy', 'primary', 'displayName', 'level', 'isBasic', 'basicCategory'] + ) ); // 3. Basic categories on their own — the ~300-label set most map-iconography @@ -145,12 +147,10 @@ const basicRows = flat .map(entry => ({ basic_category: entry.name, display_name: entry.displayName, - path: entry.path, + taxonomy: entry.path, level: entry.level, - group: entry.group, - count: entry.count, })); -write('basic_categories.csv', toCsv(basicRows, ['basic_category', 'display_name', 'path', 'level', 'group', 'count'])); +write('basic_categories.csv', toCsv(basicRows, ['basic_category', 'display_name', 'taxonomy', 'level'])); // 4. Legacy crosswalk — the pipeline uses this file to back-fill the deprecated // `categories` property, so it is the authoritative old -> new mapping and diff --git a/static/taxonomy/2026-08-19.0/basic_categories.csv b/static/taxonomy/2026-08-19.0/basic_categories.csv index 77d408be4..34f6581e6 100644 --- a/static/taxonomy/2026-08-19.0/basic_categories.csv +++ b/static/taxonomy/2026-08-19.0/basic_categories.csv @@ -1,299 +1,299 @@ -basic_category,display_name,path,level,group,count -arts_and_entertainment,Arts and Entertainment,arts_and_entertainment,0,arts_and_entertainment,300372 -amusement_attraction,Amusement Attraction,arts_and_entertainment > amusement_attraction,1,arts_and_entertainment, -amusement_park,Amusement Park,arts_and_entertainment > amusement_attraction > amusement_park,2,arts_and_entertainment,43182 -animal_attraction,Animal Attraction,arts_and_entertainment > animal_attraction,1,arts_and_entertainment, -aquarium,Aquarium,arts_and_entertainment > animal_attraction > aquarium,2,arts_and_entertainment,6904 -zoo,Zoo,arts_and_entertainment > animal_attraction > zoo,2,arts_and_entertainment,9589 -arts_and_crafts_space,Arts and Crafts Space,arts_and_entertainment > arts_and_crafts_space,1,arts_and_entertainment,15 -art_gallery,Art Gallery,arts_and_entertainment > arts_and_crafts_space > art_gallery,2,arts_and_entertainment,150708 -sculpture_statue,Sculpture Statue,arts_and_entertainment > arts_and_crafts_space > sculpture_statue,2,arts_and_entertainment,4327 -street_art,Street Art,arts_and_entertainment > arts_and_crafts_space > street_art,2,arts_and_entertainment,1329 -event_venue,Event Venue,arts_and_entertainment > event_venue,1,arts_and_entertainment,22534 -festival_venue,Festival Venue,arts_and_entertainment > festival_venue,1,arts_and_entertainment,3327 -fairgrounds,Fairgrounds,arts_and_entertainment > festival_venue > fairgrounds,2,arts_and_entertainment,10464 -gaming_venue,Gaming Venue,arts_and_entertainment > gaming_venue,1,arts_and_entertainment, -arcade,Arcade,arts_and_entertainment > gaming_venue > arcade,2,arts_and_entertainment,29707 -casino,Casino,arts_and_entertainment > gaming_venue > casino,2,arts_and_entertainment,31753 -movie_theater,Movie Theater,arts_and_entertainment > movie_theater,1,arts_and_entertainment,59201 -museum,Museum,arts_and_entertainment > museum,1,arts_and_entertainment,76188 -nightlife_venue,Nightlife Venue,arts_and_entertainment > nightlife_venue,1,arts_and_entertainment, -adult_entertainment_venue,Adult Entertainment Venue,arts_and_entertainment > nightlife_venue > adult_entertainment_venue,2,arts_and_entertainment,11462 -dance_club,Dance Club,arts_and_entertainment > nightlife_venue > dance_club,2,arts_and_entertainment,85287 -performing_arts_venue,Performing Arts Venue,arts_and_entertainment > performing_arts_venue,1,arts_and_entertainment,20329 -comedy_club,Comedy Club,arts_and_entertainment > performing_arts_venue > comedy_club,2,arts_and_entertainment,7335 -music_venue,Music Venue,arts_and_entertainment > performing_arts_venue > music_venue,2,arts_and_entertainment,187181 -theatre_venue,Theatre Venue,arts_and_entertainment > performing_arts_venue > theatre_venue,2,arts_and_entertainment,53142 -rural_attraction,Rural Attraction,arts_and_entertainment > rural_attraction,1,arts_and_entertainment, -rodeo,Rodeo,arts_and_entertainment > rural_attraction > rodeo,2,arts_and_entertainment,2190 -science_attraction,Science Attraction,arts_and_entertainment > science_attraction,1,arts_and_entertainment, -makerspace,Makerspace,arts_and_entertainment > science_attraction > makerspace,2,arts_and_entertainment,128 -planetarium,Planetarium,arts_and_entertainment > science_attraction > planetarium,2,arts_and_entertainment,1372 -social_club,Social Club,arts_and_entertainment > social_club,1,arts_and_entertainment,9343 -country_club,Country Club,arts_and_entertainment > social_club > country_club,2,arts_and_entertainment,989 -spiritual_advising,Spiritual Advising,arts_and_entertainment > spiritual_advising,1,arts_and_entertainment,234 -astrological_advising,Astrological Advising,arts_and_entertainment > spiritual_advising > astrological_advising,2,arts_and_entertainment,7919 -psychic_advising,Psychic Advising,arts_and_entertainment > spiritual_advising > psychic_advising,2,arts_and_entertainment,16324 -stadium_arena,Stadium Arena,arts_and_entertainment > stadium_arena,1,arts_and_entertainment,92811 -ticket_office_or_booth,Ticket Office or Booth,arts_and_entertainment > ticket_office_or_booth,1,arts_and_entertainment,1059 -community_and_government,Community and Government,community_and_government,0,community_and_government,232773 -civic_organization,Civic Organization,community_and_government > civic_organization,1,community_and_government,53685 -civic_center,Civic Center,community_and_government > civic_organization > civic_center,2,community_and_government,559 -labor_union,Labor Union,community_and_government > civic_organization > labor_union,2,community_and_government,28433 -political_organization,Political Organization,community_and_government > civic_organization > political_organization,2,community_and_government,26869 -government_office,Government Office,community_and_government > government_office,1,community_and_government,522622 -courthouse,Courthouse,community_and_government > government_office > courthouse,2,community_and_government,34811 -embassy,Embassy,community_and_government > government_office > embassy,2,community_and_government,16931 -government_department,Government Department,community_and_government > government_office > government_department,2,community_and_government, -military_site,Military Site,community_and_government > military_site,1,community_and_government,35584 -military_base,Military Base,community_and_government > military_site > military_base,2,community_and_government, -military_office,Military Office,community_and_government > military_site > military_office,2,community_and_government, -public_facility,Public Facility,community_and_government > public_facility,1,community_and_government, -public_fountain,Public Fountain,community_and_government > public_facility > public_fountain,2,community_and_government,11910 -public_pathway,Public Pathway,community_and_government > public_facility > public_pathway,2,community_and_government, -public_plaza,Public Plaza,community_and_government > public_facility > public_plaza,2,community_and_government,62362 -public_restroom,Public Restroom,community_and_government > public_facility > public_restroom,2,community_and_government,4616 -public_safety_service,Public Safety Service,community_and_government > public_safety_service,1,community_and_government, -fire_station,Fire Station,community_and_government > public_safety_service > fire_station,2,community_and_government,83675 -jail_or_prison,Jail or Prison,community_and_government > public_safety_service > jail_or_prison,2,community_and_government,9083 -police_station,Police Station,community_and_government > public_safety_service > police_station,2,community_and_government,97337 -public_utility,Public Utility,community_and_government > public_utility,1,community_and_government,14646 -electric_utility_provider,Electric Utility Provider,community_and_government > public_utility > electric_utility_provider,2,community_and_government,23290 -natural_gas_utility_provider,Natural Gas Utility Provider,community_and_government > public_utility > natural_gas_utility_provider,2,community_and_government,10233 -water_utility_provider,Water Utility Provider,community_and_government > public_utility > water_utility_provider,2,community_and_government,17658 -social_or_community_service,Social or Community Service,community_and_government > social_or_community_service,1,community_and_government,821250 -community_center,Community Center,community_and_government > social_or_community_service > community_center,2,community_and_government,106008 -food_bank,Food Bank,community_and_government > social_or_community_service > food_bank,2,community_and_government,8346 -youth_organization,Youth Organization,community_and_government > social_or_community_service > youth_organization,2,community_and_government,57839 -cultural_and_historic,Cultural and Historic,cultural_and_historic,0,cultural_and_historic, -cultural_center,Cultural Center,cultural_and_historic > cultural_center,1,cultural_and_historic,51870 -historic_site,Historic Site,cultural_and_historic > historic_site,1,cultural_and_historic,998562 -castle,Castle,cultural_and_historic > historic_site > castle,2,cultural_and_historic,15319 -fort,Fort,cultural_and_historic > historic_site > fort,2,cultural_and_historic,2330 -lighthouse,Lighthouse,cultural_and_historic > historic_site > lighthouse,2,cultural_and_historic,3747 -memorial_site,Memorial Site,cultural_and_historic > memorial_site,1,cultural_and_historic, -cemetery,Cemetery,cultural_and_historic > memorial_site > cemetery,2,cultural_and_historic,3078 -monument,Monument,cultural_and_historic > memorial_site > monument,2,cultural_and_historic,46824 -place_of_worship,Place of Worship,cultural_and_historic > place_of_worship,1,cultural_and_historic,1408 -buddhist_place_of_worship,Buddhist Place of Worship,cultural_and_historic > place_of_worship > buddhist_place_of_worship,2,cultural_and_historic,110363 -christian_place_of_worship,Christian Place of Worship,cultural_and_historic > place_of_worship > christian_place_of_worship,2,cultural_and_historic,862941 -hindu_place_of_worship,Hindu Place of Worship,cultural_and_historic > place_of_worship > hindu_place_of_worship,2,cultural_and_historic,128014 -jewish_place_of_worship,Jewish Place of Worship,cultural_and_historic > place_of_worship > jewish_place_of_worship,2,cultural_and_historic,8295 -muslim_place_of_worship,Muslim Place of Worship,cultural_and_historic > place_of_worship > muslim_place_of_worship,2,cultural_and_historic,122811 -religious_landmark,Religious Landmark,cultural_and_historic > religious_landmark,1,cultural_and_historic, -religious_organization,Religious Organization,cultural_and_historic > religious_organization,1,cultural_and_historic,388911 -religious_retreat_or_center,Religious Retreat or Center,cultural_and_historic > religious_retreat_or_center,1,cultural_and_historic, -education,Education,education,0,education,437216 -education_office,Education Office,education > education_office,1,education, -school_district_office,School District Office,education > education_office > school_district_office,2,education,1983 -educational_facility,Educational Facility,education > educational_facility,1,education, -campus,Campus,education > educational_facility > campus,2,education, -campus_building,Campus Building,education > educational_facility > campus_building,2,education,82488 -educational_service,Educational Service,education > educational_service,1,education,69509 -tutoring_service,Tutoring Service,education > educational_service > tutoring_service,2,education,87959 -library,Library,education > library,1,education,136849 -place_of_learning,Place of Learning,education > place_of_learning,1,education, -academy,Academy,education > place_of_learning > academy,2,education, -class_venue,Class Venue,education > place_of_learning > class_venue,2,education, -college_university,College University,education > place_of_learning > college_university,2,education,365741 -elementary_school,Elementary School,education > place_of_learning > school > elementary_school,3,education,423059 -high_school,High School,education > place_of_learning > school > high_school,3,education,168990 -kindergarten,Kindergarten,education > place_of_learning > school > kindergarten,3,education, -middle_school,Middle School,education > place_of_learning > school > middle_school,3,education,66983 -preschool,Preschool,education > place_of_learning > school > preschool,3,education,282188 -specialty_school,Specialty School,education > place_of_learning > specialty_school,2,education,52024 -research_institute,Research Institute,education > research_institute,1,education,3210 -food_and_drink,Food and Drink,food_and_drink,0,food_and_drink,98464 -alcoholic_beverage_venue,Alcoholic Beverage Venue,food_and_drink > alcoholic_beverage_venue,1,food_and_drink, -bar,Bar,food_and_drink > alcoholic_beverage_venue > bar,2,food_and_drink,644080 -brewery,Brewery,food_and_drink > alcoholic_beverage_venue > brewery,2,food_and_drink,47917 -distillery,Distillery,food_and_drink > alcoholic_beverage_venue > distillery,2,food_and_drink,9919 -lounge,Lounge,food_and_drink > alcoholic_beverage_venue > lounge,2,food_and_drink,52495 -winery,Winery,food_and_drink > alcoholic_beverage_venue > winery,2,food_and_drink,76227 -casual_eatery,Casual Eatery,food_and_drink > casual_eatery,1,food_and_drink, -cafe,Cafe,food_and_drink > casual_eatery > cafe,2,food_and_drink,700856 -fast_food_restaurant,Fast Food Restaurant,food_and_drink > casual_eatery > fast_food_restaurant,2,food_and_drink,409785 -food_court,Food Court,food_and_drink > casual_eatery > food_court,2,food_and_drink,2101 -food_truck_stand,Food Truck or Stand,food_and_drink > casual_eatery > food_truck_stand,2,food_and_drink,83367 -non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,food_and_drink > non_alcoholic_beverage_venue,1,food_and_drink,155 -coffee_shop,Coffee Shop,food_and_drink > non_alcoholic_beverage_venue > coffee_shop,2,food_and_drink,610598 -smoothie_juice_bar,Smoothie or Juice Bar,food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,2,food_and_drink,62736 -restaurant,Restaurant,food_and_drink > restaurant,1,food_and_drink,1812921 -geographic_entities,Geographic Entities,geographic_entities,0,geographic_entities,176263 -built_feature,Built Feature,geographic_entities > built_feature,1,geographic_entities, -bridge,Bridge,geographic_entities > built_feature > bridge,2,geographic_entities,43784 -building,Building,geographic_entities > built_feature > building,2,geographic_entities, -dam,Dam,geographic_entities > built_feature > dam,2,geographic_entities,2 -dock,Dock,geographic_entities > built_feature > dock,2,geographic_entities, -garden,Garden,geographic_entities > built_feature > garden,2,geographic_entities, -marina,Marina,geographic_entities > built_feature > marina,2,geographic_entities,19183 -pier,Pier,geographic_entities > built_feature > pier,2,geographic_entities,4793 -land_feature,Land Feature,geographic_entities > land_feature,1,geographic_entities, -beach,Beach,geographic_entities > land_feature > beach,2,geographic_entities,177958 -canyon,Canyon,geographic_entities > land_feature > canyon,2,geographic_entities,12 -forest,Forest,geographic_entities > land_feature > forest,2,geographic_entities,7854 -hill,Hill,geographic_entities > land_feature > hill,2,geographic_entities, -island,Island,geographic_entities > land_feature > island,2,geographic_entities,2613 -mountain,Mountain,geographic_entities > land_feature > mountain,2,geographic_entities,131189 -nature_reserve,Nature Reserve,geographic_entities > land_feature > nature_reserve,2,geographic_entities,24277 -valley,Valley,geographic_entities > land_feature > valley,2,geographic_entities, -scenic_viewpoint,Scenic Viewpoint,geographic_entities > scenic_viewpoint,1,geographic_entities, -water_feature,Water Feature,geographic_entities > water_feature,1,geographic_entities, -canal,Canal,geographic_entities > water_feature > canal,2,geographic_entities,2621 -hot_springs,Hot Springs,geographic_entities > water_feature > hot_springs,2,geographic_entities,5642 -lake,Lake,geographic_entities > water_feature > lake,2,geographic_entities,215556 -ocean,Ocean,geographic_entities > water_feature > ocean,2,geographic_entities, -river,River,geographic_entities > water_feature > river,2,geographic_entities,134916 -sea,Sea,geographic_entities > water_feature > sea,2,geographic_entities, -waterfall,Waterfall,geographic_entities > water_feature > waterfall,2,geographic_entities,8069 -health_care,Health Care,health_care,0,health_care,601038 -emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,health_care > emergency_or_urgent_care_facility,1,health_care,3986 -emergency_department,Emergency Department,health_care > emergency_or_urgent_care_facility > emergency_department,2,health_care,13985 -urgent_care_clinic,Urgent Care Clinic,health_care > emergency_or_urgent_care_facility > urgent_care_clinic,2,health_care,5530 -walk_in_clinic,Walk-In Clinic,health_care > emergency_or_urgent_care_facility > walk_in_clinic,2,health_care,8395 -hospital,Hospital,health_care > hospital,1,health_care,483089 -general_hospital,General Hospital,health_care > hospital > general_hospital,2,health_care, -specialty_hospital,Specialty Hospital,health_care > hospital > specialty_hospital,2,health_care, -medical_service,Medical Service,health_care > medical_service,1,health_care, -outpatient_care_facility,Outpatient Care Facility,health_care > outpatient_care_facility,1,health_care,210956 -behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,2,health_care,32418 -complementary_and_alternative_medicine,Complementary and Alternative Medicine,health_care > outpatient_care_facility > complementary_and_alternative_medicine,2,health_care,19458 -dental_clinic,Dental Clinic,health_care > outpatient_care_facility > dental_clinic,2,health_care,505874 -diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,2,health_care, -pediatric_clinic,Pediatric Clinic,health_care > outpatient_care_facility > pediatric_clinic,2,health_care,58503 -physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,2,health_care, -primary_care_or_general_clinic,Primary Care or General Clinic,health_care > outpatient_care_facility > primary_care_or_general_clinic,2,health_care, -reproductive_perinatal_and_womens_care,Reproductive Perinatal and Women's Care,health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care,2,health_care,12735 -specialized_health_care,Specialized Health Care,health_care > outpatient_care_facility > specialized_health_care,2,health_care,9268 -vision_or_eye_care_clinic,Vision or Eye Care Clinic,health_care > outpatient_care_facility > vision_or_eye_care_clinic,2,health_care,33767 -specialized_medical_facility,Specialized Medical Facility,health_care > specialized_medical_facility,1,health_care, -surgery,Surgery,health_care > specialized_medical_facility > surgery,2,health_care,34095 -lifestyle_services,Lifestyle Services,lifestyle_services,0,lifestyle_services, -animal_or_pet_service,Animal or Pet Service,lifestyle_services > animal_or_pet_service,1,lifestyle_services,80894 -food_service,Food Service,lifestyle_services > food_service,1,lifestyle_services, -personal_or_beauty_service,Personal or Beauty Service,lifestyle_services > personal_or_beauty_service,1,lifestyle_services,34051 -wellness_service,Wellness Service,lifestyle_services > wellness_service,1,lifestyle_services,6714 -lodging,Lodging,lodging,0,lodging,430223 -bed_and_breakfast,Bed and Breakfast,lodging > bed_and_breakfast,1,lodging,155160 -campground,Campground,lodging > campground,1,lodging,104128 -hotel,Hotel,lodging > hotel,1,lodging,1172978 -inn,Inn,lodging > inn,1,lodging,25854 -private_lodging,Private Lodging,lodging > private_lodging,1,lodging, -resort,Resort,lodging > resort,1,lodging,102837 -rv_park,RV Park,lodging > rv_park,1,lodging,23854 -services_and_business,Services and Business,services_and_business,0,services_and_business, -agricultural_service,Agricultural Service,services_and_business > agricultural_service,1,services_and_business,89225 -farm,Farm,services_and_business > agricultural_service > farm,2,services_and_business,254727 -b2b_service,B2B Service,services_and_business > b2b_service,1,services_and_business,50289 -b2b_energy_and_utility_service,B2B Energy and Utility Service,services_and_business > b2b_service > b2b_energy_and_utility_service,2,services_and_business,35130 -b2b_industrial_and_machine_service,B2B Industrial and Machine Service,services_and_business > b2b_service > b2b_industrial_and_machine_service,2,services_and_business,3478 -b2b_office_and_professional_service,B2B Office and Professional Service,services_and_business > b2b_service > b2b_office_and_professional_service,2,services_and_business, -b2b_science_and_technology_service,B2B Science and Technology Service,services_and_business > b2b_service > b2b_science_and_technology_service,2,services_and_business,14826 -b2b_transportation_and_storage_service,B2B Transportation and Storage Service,services_and_business > b2b_service > b2b_transportation_and_storage_service,2,services_and_business,1110 -manufacturer,Manufacturer,services_and_business > b2b_service > manufacturer,2,services_and_business,258533 -supplier_or_distributor,Supplier or Distributor,services_and_business > b2b_service > supplier_or_distributor,2,services_and_business,5376 -wholesaler,Wholesaler,services_and_business > b2b_service > wholesaler,2,services_and_business,15756 -building_or_construction_service,Building or Construction Service,services_and_business > building_or_construction_service,1,services_and_business,343319 -corporate_or_business_office,Corporate or Business Office,services_and_business > corporate_or_business_office,1,services_and_business,164478 -design_service,Design Service,services_and_business > design_service,1,services_and_business, -environmental_or_ecological_service,Environmental or Ecological Service,services_and_business > environmental_or_ecological_service,1,services_and_business,11061 -event_or_party_service,Event or Party Service,services_and_business > event_or_party_service,1,services_and_business,1 -family_service,Family Service,services_and_business > family_service,1,services_and_business, -financial_service,Financial Service,services_and_business > financial_service,1,services_and_business,313147 -atm,ATM,services_and_business > financial_service > atm,2,services_and_business,342719 -bank_or_credit_union,Bank or Credit Union,services_and_business > financial_service > bank_or_credit_union,2,services_and_business,358594 -home_service,Home Service,services_and_business > home_service,1,services_and_business,151878 -housing_or_property_service,Housing or Property Service,services_and_business > housing_or_property_service,1,services_and_business, -apartment,Apartment,services_and_business > housing_or_property_service > apartment,2,services_and_business,28150 -condominium,Condominium,services_and_business > housing_or_property_service > condominium,2,services_and_business,13157 -senior_living_facility,Senior Living Facility,services_and_business > housing_or_property_service > senior_living_facility,2,services_and_business, -industrial_facility_or_service,Industrial Facility or Service,services_and_business > industrial_facility_or_service,1,services_and_business, -laundry_service,Laundry Service,services_and_business > laundry_service,1,services_and_business,16277 -legal_service,Legal Service,services_and_business > legal_service,1,services_and_business,67183 -attorney_or_law_firm,Attorney or Law Firm,services_and_business > legal_service > attorney_or_law_firm,2,services_and_business,316077 -media_service,Media Service,services_and_business > media_service,1,services_and_business,13702 -radio_station,Radio Station,services_and_business > media_service > media_news_company > radio_station,3,services_and_business,24573 -television_station,Television Station,services_and_business > media_service > media_news_company > television_station,3,services_and_business,1073 -printing_service,Printing Service,services_and_business > printing_service,1,services_and_business,298475 -professional_service,Professional Service,services_and_business > professional_service,1,services_and_business,1267482 -real_estate_service,Real Estate Service,services_and_business > real_estate_service,1,services_and_business,740534 -rental_service,Rental Service,services_and_business > rental_service,1,services_and_business,69201 -security_service,Security Service,services_and_business > security_service,1,services_and_business,7724 -shipping_or_delivery_service,Shipping or Delivery Service,services_and_business > shipping_or_delivery_service,1,services_and_business, -storage_facility,Storage Facility,services_and_business > storage_facility,1,services_and_business,80256 -technical_service,Technical Service,services_and_business > technical_service,1,services_and_business, -telecommunications_service,Telecommunications Service,services_and_business > telecommunications_service,1,services_and_business,35375 -utility_energy_infrastructure,Utility Energy Infrastructure,services_and_business > utility_energy_infrastructure,1,services_and_business, -shopping,Shopping,shopping,0,shopping,1225096 -convenience_store,Convenience Store,shopping > convenience_store,1,shopping,469802 -department_store,Department Store,shopping > department_store,1,shopping,86591 -discount_store,Discount Store,shopping > discount_store,1,shopping,124970 -fashion_and_apparel_store,Fashion and Apparel Store,shopping > fashion_and_apparel_store,1,shopping,97108 -food_and_beverage_store,Food and Beverage Store,shopping > food_and_beverage_store,1,shopping,65762 -kiosk,Kiosk,shopping > kiosk,1,shopping,1865 -market,Market,shopping > market,1,shopping, -farmers_market,Farmers Market,shopping > market > farmers_market,2,shopping,60196 -second_hand_store,Second Hand Store,shopping > second_hand_store,1,shopping,84231 -shopping_mall,Shopping Mall,shopping > shopping_mall,1,shopping,186795 -shopping_service,Shopping Service,shopping > shopping_service,1,shopping, -specialty_store,Specialty Store,shopping > specialty_store,1,shopping,53 -animal_and_pet_store,Animal and Pet Store,shopping > specialty_store > animal_and_pet_store,2,shopping, -arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,shopping > specialty_store > arts_crafts_and_hobby_store,2,shopping,142261 -books_music_and_video_store,Books Music and Video Store,shopping > specialty_store > books_music_and_video_store,2,shopping,5663 -electronics_store,Electronics Store,shopping > specialty_store > electronics_store,2,shopping,256895 -flowers_and_gifts_store,Flowers and Gifts Store,shopping > specialty_store > flowers_and_gifts_store,2,shopping,398227 -hardware_home_and_garden_store,Hardware Home and Garden Store,shopping > specialty_store > hardware_home_and_garden_store,2,shopping,30904 -musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,shopping > specialty_store > musical_instrument_and_pro_audio_store,2,shopping, -office_supply_store,Office Supply Store,shopping > specialty_store > office_supply_store,2,shopping,57124 -personal_care_and_beauty_store,Personal Care and Beauty Store,shopping > specialty_store > personal_care_and_beauty_store,2,shopping, -pharmacy_and_drug_store,Pharmacy and Drug Store,shopping > specialty_store > pharmacy_and_drug_store,2,shopping, -sporting_goods_store,Sporting Goods Store,shopping > specialty_store > sporting_goods_store,2,shopping,128526 -toys_and_games_store,Toys and Games Store,shopping > specialty_store > toys_and_games_store,2,shopping, -vehicle_parts_store,Vehicle Parts Store,shopping > specialty_store > vehicle_parts_store,2,shopping, -superstore,Superstore,shopping > superstore,1,shopping,15014 -vehicle_dealer,Vehicle Dealer,shopping > vehicle_dealer,1,shopping,1512 -auto_dealer,Auto Dealer,shopping > vehicle_dealer > auto_dealer,2,shopping,542069 -warehouse_club_store,Warehouse Club Store,shopping > warehouse_club_store,1,shopping,121150 -sports_and_recreation,Sports and Recreation,sports_and_recreation,0,sports_and_recreation,198851 -park,Park,sports_and_recreation > park,1,sports_and_recreation,491407 -dog_park,Dog Park,sports_and_recreation > park > dog_park,2,sports_and_recreation,12924 -national_park,National Park,sports_and_recreation > park > national_park,2,sports_and_recreation,27732 -playground,Playground,sports_and_recreation > park > playground,2,sports_and_recreation,38750 -recreational_equipment_rental,Recreational Equipment Rental,sports_and_recreation > recreational_equipment_rental,1,sports_and_recreation, -recreational_trail_or_path,Recreational Trail or Path,sports_and_recreation > recreational_trail_or_path,1,sports_and_recreation,24 -sport_league,Sport League,sports_and_recreation > sport_league,1,sports_and_recreation, -sport_or_fitness_facility,Sport or Fitness Facility,sports_and_recreation > sport_or_fitness_facility,1,sports_and_recreation,135796 -fitness_studio,Fitness Studio,sports_and_recreation > sport_or_fitness_facility > fitness_studio,2,sports_and_recreation, -golf_course,Golf Course,sports_and_recreation > sport_or_fitness_facility > golf_course,2,sports_and_recreation,37906 -gym,Gym,sports_and_recreation > sport_or_fitness_facility > gym,2,sports_and_recreation,541730 -skate_park,Skate Park,sports_and_recreation > sport_or_fitness_facility > skate_park,2,sports_and_recreation,18613 -skating_rink,Skating Rink,sports_and_recreation > sport_or_fitness_facility > skating_rink,2,sports_and_recreation,669 -sport_court,Sport Court,sports_and_recreation > sport_or_fitness_facility > sport_court,2,sports_and_recreation, -sport_field,Sport Field,sports_and_recreation > sport_or_fitness_facility > sport_field,2,sports_and_recreation, -sports_complex,Sports Complex,sports_and_recreation > sport_or_fitness_facility > sports_complex,2,sports_and_recreation, -swimming_pool,Swimming Pool,sports_and_recreation > sport_or_fitness_facility > swimming_pool,2,sports_and_recreation,64630 -sport_or_recreation_club,Sport or Recreation Club,sports_and_recreation > sport_or_recreation_club,1,sports_and_recreation,10279 -sport_team,Sport Team,sports_and_recreation > sport_team,1,sports_and_recreation, -travel_and_transportation,Travel and Transportation,travel_and_transportation,0,travel_and_transportation,207498 -air_transport_facility_or_service,Air Transport Facility or Service,travel_and_transportation > air_transport_facility_or_service,1,travel_and_transportation, -airport,Airport,travel_and_transportation > air_transport_facility_or_service > airport,2,travel_and_transportation,53917 -fueling_station,Fueling Station,travel_and_transportation > fueling_station,1,travel_and_transportation, -ev_charging_station,EV Charging Station,travel_and_transportation > fueling_station > ev_charging_station,2,travel_and_transportation,49715 -gas_station,Gas Station,travel_and_transportation > fueling_station > gas_station,2,travel_and_transportation,577515 -ground_transport_facility_or_service,Ground Transport Facility or Service,travel_and_transportation > ground_transport_facility_or_service,1,travel_and_transportation, -public_transit_facility_or_service,Public Transit Facility or Service,travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,2,travel_and_transportation,7875 -rail_facility_or_service,Rail Facility or Service,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,2,travel_and_transportation,221 -train_station,Train Station,travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,3,travel_and_transportation,98033 -rest_stop,Rest Stop,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,3,travel_and_transportation,549 -toll_station,Toll Station,travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,3,travel_and_transportation,65 -taxi_or_ride_share_service,Taxi or Ride Share Service,travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,2,travel_and_transportation, -parking,Parking,travel_and_transportation > parking,1,travel_and_transportation,143540 -park_and_ride,Park and Ride,travel_and_transportation > parking > park_and_ride,2,travel_and_transportation,164 -parking_garage,Parking Garage,travel_and_transportation > parking > parking_garage,2,travel_and_transportation, -parking_lot,Parking Lot,travel_and_transportation > parking > parking_lot,2,travel_and_transportation, -travel_service,Travel Service,travel_and_transportation > travel_service,1,travel_and_transportation,395616 -vehicle_service,Vehicle Service,travel_and_transportation > vehicle_service,1,travel_and_transportation, -automotive_service,Automotive Service,travel_and_transportation > vehicle_service > automotive_service,2,travel_and_transportation,172801 -water_transport_facility_or_service,Water Transport Facility or Service,travel_and_transportation > water_transport_facility_or_service,1,travel_and_transportation, -ferry_service,Ferry Service,travel_and_transportation > water_transport_facility_or_service > ferry_service,2,travel_and_transportation,369 -water_taxi_service,Water Taxi Service,travel_and_transportation > water_transport_facility_or_service > water_taxi_service,2,travel_and_transportation,2 +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-08-19.0/taxonomy.csv b/static/taxonomy/2026-08-19.0/taxonomy.csv index 71084846e..1ab909716 100644 --- a/static/taxonomy/2026-08-19.0/taxonomy.csv +++ b/static/taxonomy/2026-08-19.0/taxonomy.csv @@ -1,2303 +1,2303 @@ -path,name,displayName,level,group,isBasic,basicCategory,count -arts_and_entertainment,arts_and_entertainment,Arts and Entertainment,0,arts_and_entertainment,true,arts_and_entertainment,300372 -arts_and_entertainment > amusement_attraction,amusement_attraction,Amusement Attraction,1,arts_and_entertainment,true,amusement_attraction, -arts_and_entertainment > amusement_attraction > amusement_park,amusement_park,Amusement Park,2,arts_and_entertainment,true,amusement_park,43182 -arts_and_entertainment > amusement_attraction > carnival_venue,carnival_venue,Carnival Venue,2,arts_and_entertainment,false,amusement_attraction, -arts_and_entertainment > amusement_attraction > carousel,carousel,Carousel,2,arts_and_entertainment,false,amusement_attraction,7 -arts_and_entertainment > amusement_attraction > circus_venue,circus_venue,Circus Venue,2,arts_and_entertainment,false,amusement_attraction,3854 -arts_and_entertainment > amusement_attraction > haunted_house,haunted_house,Haunted House,2,arts_and_entertainment,false,amusement_attraction,2780 -arts_and_entertainment > animal_attraction,animal_attraction,Animal Attraction,1,arts_and_entertainment,true,animal_attraction, -arts_and_entertainment > animal_attraction > aquarium,aquarium,Aquarium,2,arts_and_entertainment,true,aquarium,6904 -arts_and_entertainment > animal_attraction > wildlife_sanctuary,wildlife_sanctuary,Wildlife Sanctuary,2,arts_and_entertainment,false,animal_attraction,10715 -arts_and_entertainment > animal_attraction > zoo,zoo,Zoo,2,arts_and_entertainment,true,zoo,9589 -arts_and_entertainment > animal_attraction > zoo > petting_zoo,petting_zoo,Petting Zoo,3,arts_and_entertainment,false,zoo,2921 -arts_and_entertainment > animal_attraction > zoo > zoo_exhibit,zoo_exhibit,Zoo Exhibit,3,arts_and_entertainment,false,zoo, -arts_and_entertainment > arts_and_crafts_space,arts_and_crafts_space,Arts and Crafts Space,1,arts_and_entertainment,true,arts_and_crafts_space,15 -arts_and_entertainment > arts_and_crafts_space > art_gallery,art_gallery,Art Gallery,2,arts_and_entertainment,true,art_gallery,150708 -arts_and_entertainment > arts_and_crafts_space > artist_studio,artist_studio,Artist Studio,2,arts_and_entertainment,false,arts_and_crafts_space, -arts_and_entertainment > arts_and_crafts_space > glass_blowing_venue,glass_blowing_venue,Glass Blowing Venue,2,arts_and_entertainment,false,arts_and_crafts_space,2481 -arts_and_entertainment > arts_and_crafts_space > paint_and_sip_venue,paint_and_sip_venue,Paint and Sip Venue,2,arts_and_entertainment,false,arts_and_crafts_space,313 -arts_and_entertainment > arts_and_crafts_space > paint_your_own_pottery_venue,paint_your_own_pottery_venue,Paint Your Own Pottery Venue,2,arts_and_entertainment,false,arts_and_crafts_space,183 -arts_and_entertainment > arts_and_crafts_space > sculpture_park,sculpture_park,Sculpture Park,2,arts_and_entertainment,false,arts_and_crafts_space, -arts_and_entertainment > arts_and_crafts_space > sculpture_statue,sculpture_statue,Sculpture Statue,2,arts_and_entertainment,true,sculpture_statue,4327 -arts_and_entertainment > arts_and_crafts_space > street_art,street_art,Street Art,2,arts_and_entertainment,true,street_art,1329 -arts_and_entertainment > event_venue,event_venue,Event Venue,1,arts_and_entertainment,true,event_venue,22534 -arts_and_entertainment > event_venue > auditorium,auditorium,Auditorium,2,arts_and_entertainment,false,event_venue,19652 -arts_and_entertainment > event_venue > exhibition_and_trade_fair_venue,exhibition_and_trade_fair_venue,Exhibition and Trade Fair Venue,2,arts_and_entertainment,false,event_venue,2303 -arts_and_entertainment > festival_venue,festival_venue,Festival Venue,1,arts_and_entertainment,true,festival_venue,3327 -arts_and_entertainment > festival_venue > fairgrounds,fairgrounds,Fairgrounds,2,arts_and_entertainment,true,fairgrounds,10464 -arts_and_entertainment > festival_venue > film_festival_venue,film_festival_venue,Film Festival Venue,2,arts_and_entertainment,false,festival_venue,79 -arts_and_entertainment > festival_venue > music_festival_venue,music_festival_venue,Music Festival Venue,2,arts_and_entertainment,false,festival_venue,69 -arts_and_entertainment > gaming_venue,gaming_venue,Gaming Venue,1,arts_and_entertainment,true,gaming_venue, -arts_and_entertainment > gaming_venue > arcade,arcade,Arcade,2,arts_and_entertainment,true,arcade,29707 -arts_and_entertainment > gaming_venue > betting_center,betting_center,Betting Center,2,arts_and_entertainment,false,gaming_venue,17181 -arts_and_entertainment > gaming_venue > bingo_hall,bingo_hall,Bingo Hall,2,arts_and_entertainment,false,gaming_venue,3073 -arts_and_entertainment > gaming_venue > casino,casino,Casino,2,arts_and_entertainment,true,casino,31753 -arts_and_entertainment > gaming_venue > escape_room,escape_room,Escape Room,2,arts_and_entertainment,false,gaming_venue,9907 -arts_and_entertainment > gaming_venue > lottery_vendor,lottery_vendor,Lottery Vendor,2,arts_and_entertainment,false,gaming_venue,15960 -arts_and_entertainment > gaming_venue > scavenger_hunt,scavenger_hunt,Scavenger Hunt,2,arts_and_entertainment,false,gaming_venue,17 -arts_and_entertainment > movie_theater,movie_theater,Movie Theater,1,arts_and_entertainment,true,movie_theater,59201 -arts_and_entertainment > movie_theater > drive_in_theater,drive_in_theater,Drive-In Theater,2,arts_and_entertainment,false,movie_theater,3110 -arts_and_entertainment > movie_theater > outdoor_movie_space,outdoor_movie_space,Outdoor Movie Space,2,arts_and_entertainment,false,movie_theater,65 -arts_and_entertainment > museum,museum,Museum,1,arts_and_entertainment,true,museum,76188 -arts_and_entertainment > museum > art_museum,art_museum,Art Museum,2,arts_and_entertainment,false,museum,13036 -arts_and_entertainment > museum > art_museum > asian_art_museum,asian_art_museum,Asian Art Museum,3,arts_and_entertainment,false,museum,108 -arts_and_entertainment > museum > art_museum > cartooning_museum,cartooning_museum,Cartooning Museum,3,arts_and_entertainment,false,museum,69 -arts_and_entertainment > museum > art_museum > contemporary_art_museum,contemporary_art_museum,Contemporary Art Museum,3,arts_and_entertainment,false,museum,1189 -arts_and_entertainment > museum > art_museum > costume_museum,costume_museum,Costume Museum,3,arts_and_entertainment,false,museum,131 -arts_and_entertainment > museum > art_museum > decorative_arts_museum,decorative_arts_museum,Decorative Arts Museum,3,arts_and_entertainment,false,museum,184 -arts_and_entertainment > museum > art_museum > design_museum,design_museum,Design Museum,3,arts_and_entertainment,false,museum,407 -arts_and_entertainment > museum > art_museum > modern_art_museum,modern_art_museum,Modern Art Museum,3,arts_and_entertainment,false,museum,967 -arts_and_entertainment > museum > art_museum > photography_museum,photography_museum,Photography Museum,3,arts_and_entertainment,false,museum,209 -arts_and_entertainment > museum > art_museum > textile_museum,textile_museum,Textile Museum,3,arts_and_entertainment,false,museum,418 -arts_and_entertainment > museum > aviation_museum,aviation_museum,Aviation Museum,2,arts_and_entertainment,false,museum,607 -arts_and_entertainment > museum > childrens_museum,childrens_museum,Children's Museum,2,arts_and_entertainment,false,museum,1571 -arts_and_entertainment > museum > history_museum,history_museum,History Museum,2,arts_and_entertainment,false,museum,36377 -arts_and_entertainment > museum > history_museum > civilization_museum,civilization_museum,Civilization Museum,3,arts_and_entertainment,false,museum,513 -arts_and_entertainment > museum > history_museum > community_museum,community_museum,Community Museum,3,arts_and_entertainment,false,museum,2362 -arts_and_entertainment > museum > military_museum,military_museum,Military Museum,2,arts_and_entertainment,false,museum,34 -arts_and_entertainment > museum > national_museum,national_museum,National Museum,2,arts_and_entertainment,false,museum,8 -arts_and_entertainment > museum > science_museum,science_museum,Science Museum,2,arts_and_entertainment,false,museum,2934 -arts_and_entertainment > museum > science_museum > computer_museum,computer_museum,Computer Museum,3,arts_and_entertainment,false,museum,494 -arts_and_entertainment > museum > sports_museum,sports_museum,Sports Museum,2,arts_and_entertainment,false,museum,475 -arts_and_entertainment > museum > state_museum,state_museum,State Museum,2,arts_and_entertainment,false,museum,201 -arts_and_entertainment > nightlife_venue,nightlife_venue,Nightlife Venue,1,arts_and_entertainment,true,nightlife_venue, -arts_and_entertainment > nightlife_venue > adult_entertainment_venue,adult_entertainment_venue,Adult Entertainment Venue,2,arts_and_entertainment,true,adult_entertainment_venue,11462 -arts_and_entertainment > nightlife_venue > adult_entertainment_venue > erotic_massage_venue,erotic_massage_venue,Erotic Massage Venue,3,arts_and_entertainment,false,adult_entertainment_venue,218 -arts_and_entertainment > nightlife_venue > adult_entertainment_venue > strip_club,strip_club,Strip Club,3,arts_and_entertainment,false,adult_entertainment_venue,795 -arts_and_entertainment > nightlife_venue > bar_crawl,bar_crawl,Bar Crawl,2,arts_and_entertainment,false,nightlife_venue,16 -arts_and_entertainment > nightlife_venue > club_crawl,club_crawl,Club Crawl,2,arts_and_entertainment,false,nightlife_venue,8 -arts_and_entertainment > nightlife_venue > dance_club,dance_club,Dance Club,2,arts_and_entertainment,true,dance_club,85287 -arts_and_entertainment > nightlife_venue > dance_club > salsa_club,salsa_club,Salsa Club,3,arts_and_entertainment,false,dance_club,1210 -arts_and_entertainment > performing_arts_venue,performing_arts_venue,Performing Arts Venue,1,arts_and_entertainment,true,performing_arts_venue,20329 -arts_and_entertainment > performing_arts_venue > amphitheater,amphitheater,Amphitheater,2,arts_and_entertainment,false,performing_arts_venue, -arts_and_entertainment > performing_arts_venue > cabaret,cabaret,Cabaret,2,arts_and_entertainment,false,performing_arts_venue,36 -arts_and_entertainment > performing_arts_venue > comedy_club,comedy_club,Comedy Club,2,arts_and_entertainment,true,comedy_club,7335 -arts_and_entertainment > performing_arts_venue > music_venue,music_venue,Music Venue,2,arts_and_entertainment,true,music_venue,187181 -arts_and_entertainment > performing_arts_venue > music_venue > band_orchestra_symphony,band_orchestra_symphony,Band Orchestra Symphony,3,arts_and_entertainment,false,music_venue,420 -arts_and_entertainment > performing_arts_venue > music_venue > choir,choir,Choir,3,arts_and_entertainment,false,music_venue,3809 -arts_and_entertainment > performing_arts_venue > music_venue > jazz_and_blues_venue,jazz_and_blues_venue,Jazz and Blues Venue,3,arts_and_entertainment,false,music_venue,3219 -arts_and_entertainment > performing_arts_venue > music_venue > karaoke_venue,karaoke_venue,Karaoke Venue,3,arts_and_entertainment,false,music_venue,29368 -arts_and_entertainment > performing_arts_venue > music_venue > opera_and_ballet,opera_and_ballet,Opera and Ballet,3,arts_and_entertainment,false,music_venue,1242 -arts_and_entertainment > performing_arts_venue > theatre_venue,theatre_venue,Theatre Venue,2,arts_and_entertainment,true,theatre_venue,53142 -arts_and_entertainment > performing_arts_venue > theatre_venue > dinner_theater,dinner_theater,Dinner Theater,3,arts_and_entertainment,false,theatre_venue,352 -arts_and_entertainment > rural_attraction,rural_attraction,Rural Attraction,1,arts_and_entertainment,true,rural_attraction, -arts_and_entertainment > rural_attraction > attraction_farm,attraction_farm,Attraction Farm,2,arts_and_entertainment,false,rural_attraction,131 -arts_and_entertainment > rural_attraction > corn_maze,corn_maze,Corn Maze,2,arts_and_entertainment,false,rural_attraction, -arts_and_entertainment > rural_attraction > country_dance_hall,country_dance_hall,Country Dance Hall,2,arts_and_entertainment,false,rural_attraction,91 -arts_and_entertainment > rural_attraction > pumpkin_patch,pumpkin_patch,Pumpkin Patch,2,arts_and_entertainment,false,rural_attraction,145 -arts_and_entertainment > rural_attraction > rodeo,rodeo,Rodeo,2,arts_and_entertainment,true,rodeo,2190 -arts_and_entertainment > science_attraction,science_attraction,Science Attraction,1,arts_and_entertainment,true,science_attraction, -arts_and_entertainment > science_attraction > makerspace,makerspace,Makerspace,2,arts_and_entertainment,true,makerspace,128 -arts_and_entertainment > science_attraction > observatory,observatory,Observatory,2,arts_and_entertainment,false,science_attraction,2998 -arts_and_entertainment > science_attraction > planetarium,planetarium,Planetarium,2,arts_and_entertainment,true,planetarium,1372 -arts_and_entertainment > science_attraction > virtual_reality_center,virtual_reality_center,Virtual Reality Center,2,arts_and_entertainment,false,science_attraction,105 -arts_and_entertainment > science_attraction > virtual_reality_center > vr_cafe,vr_cafe,VR Cafe,3,arts_and_entertainment,false,science_attraction, -arts_and_entertainment > social_club,social_club,Social Club,1,arts_and_entertainment,true,social_club,9343 -arts_and_entertainment > social_club > country_club,country_club,Country Club,2,arts_and_entertainment,true,country_club,989 -arts_and_entertainment > social_club > fraternal_organization,fraternal_organization,Fraternal Organization,2,arts_and_entertainment,false,social_club,2248 -arts_and_entertainment > social_club > veterans_organization,veterans_organization,Veterans Organization,2,arts_and_entertainment,false,social_club,2871 -arts_and_entertainment > spiritual_advising,spiritual_advising,Spiritual Advising,1,arts_and_entertainment,true,spiritual_advising,234 -arts_and_entertainment > spiritual_advising > astrological_advising,astrological_advising,Astrological Advising,2,arts_and_entertainment,true,astrological_advising,7919 -arts_and_entertainment > spiritual_advising > fortune_telling,fortune_telling,Fortune Telling,2,arts_and_entertainment,false,spiritual_advising,74 -arts_and_entertainment > spiritual_advising > psychic_advising,psychic_advising,Psychic Advising,2,arts_and_entertainment,true,psychic_advising,16324 -arts_and_entertainment > stadium_arena,stadium_arena,Stadium Arena,1,arts_and_entertainment,true,stadium_arena,92811 -arts_and_entertainment > stadium_arena > arena,arena,Arena,2,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium,stadium,Stadium,2,arts_and_entertainment,false,stadium_arena, -arts_and_entertainment > stadium_arena > stadium > baseball_stadium,baseball_stadium,Baseball Stadium,3,arts_and_entertainment,false,stadium_arena,1671 -arts_and_entertainment > stadium_arena > stadium > basketball_stadium,basketball_stadium,Basketball Stadium,3,arts_and_entertainment,false,stadium_arena,861 -arts_and_entertainment > stadium_arena > stadium > cricket_ground,cricket_ground,Cricket Ground,3,arts_and_entertainment,false,stadium_arena,5315 -arts_and_entertainment > stadium_arena > stadium > football_stadium,football_stadium,Football Stadium,3,arts_and_entertainment,false,stadium_arena,9034 -arts_and_entertainment > stadium_arena > stadium > hockey_arena,hockey_arena,Hockey Arena,3,arts_and_entertainment,false,stadium_arena,1304 -arts_and_entertainment > stadium_arena > stadium > rugby_stadium,rugby_stadium,Rugby Stadium,3,arts_and_entertainment,false,stadium_arena,572 -arts_and_entertainment > stadium_arena > stadium > soccer_stadium,soccer_stadium,Soccer Stadium,3,arts_and_entertainment,false,stadium_arena,7758 -arts_and_entertainment > stadium_arena > stadium > tennis_stadium,tennis_stadium,Tennis Stadium,3,arts_and_entertainment,false,stadium_arena,699 -arts_and_entertainment > stadium_arena > stadium > track_stadium,track_stadium,Track Stadium,3,arts_and_entertainment,false,stadium_arena,2042 -arts_and_entertainment > ticket_office_or_booth,ticket_office_or_booth,Ticket Office or Booth,1,arts_and_entertainment,true,ticket_office_or_booth,1059 -community_and_government,community_and_government,Community and Government,0,community_and_government,true,community_and_government,232773 -community_and_government > civic_organization,civic_organization,Civic Organization,1,community_and_government,true,civic_organization,53685 -community_and_government > civic_organization > charity_organization,charity_organization,Charity Organization,2,community_and_government,false,civic_organization,114253 -community_and_government > civic_organization > civic_center,civic_center,Civic Center,2,community_and_government,true,civic_center,559 -community_and_government > civic_organization > labor_union,labor_union,Labor Union,2,community_and_government,true,labor_union,28433 -community_and_government > civic_organization > non_governmental_association,non_governmental_association,Non Governmental Association,2,community_and_government,false,civic_organization,57140 -community_and_government > civic_organization > political_organization,political_organization,Political Organization,2,community_and_government,true,political_organization,26869 -community_and_government > civic_organization > political_organization > political_party_office,political_party_office,Political Party Office,3,community_and_government,false,political_organization,15780 -community_and_government > government_office,government_office,Government Office,1,community_and_government,true,government_office,522622 -community_and_government > government_office > chambers_of_commerce,chambers_of_commerce,Chambers of Commerce,2,community_and_government,false,government_office,1909 -community_and_government > government_office > courthouse,courthouse,Courthouse,2,community_and_government,true,courthouse,34811 -community_and_government > government_office > embassy,embassy,Embassy,2,community_and_government,true,embassy,16931 -community_and_government > government_office > government_department,government_department,Government Department,2,community_and_government,true,government_department, -community_and_government > government_office > government_department > department_of_motor_vehicles,department_of_motor_vehicles,Department of Motor Vehicles,3,community_and_government,false,government_department,9426 -community_and_government > government_office > government_department > department_of_social_service,department_of_social_service,Department of Social Service,3,community_and_government,false,government_department,171 -community_and_government > government_office > government_department > health_department,health_department,Health Department,3,community_and_government,false,government_department,5845 -community_and_government > government_office > immigration_and_naturalization_office,immigration_and_naturalization_office,Immigration and Naturalization Office,2,community_and_government,false,government_office,778 -community_and_government > government_office > national_security_service,national_security_service,National Security Service,2,community_and_government,false,government_office,7 -community_and_government > government_office > office_of_vital_records,office_of_vital_records,Office of Vital Records,2,community_and_government,false,government_office,10 -community_and_government > government_office > pension_office,pension_office,Pension Office,2,community_and_government,false,government_office,316 -community_and_government > government_office > registry_office,registry_office,Registry Office,2,community_and_government,false,government_office,222 -community_and_government > government_office > social_security_service,social_security_service,Social Security Service,2,community_and_government,false,government_office,1081 -community_and_government > government_office > tax_office,tax_office,Tax Office,2,community_and_government,false,government_office,2046 -community_and_government > government_office > town_hall,town_hall,Town Hall,2,community_and_government,false,government_office,88703 -community_and_government > government_office > unemployment_office,unemployment_office,Unemployment Office,2,community_and_government,false,government_office,147 -community_and_government > military_site,military_site,Military Site,1,community_and_government,true,military_site,35584 -community_and_government > military_site > military_base,military_base,Military Base,2,community_and_government,true,military_base, -community_and_government > military_site > military_office,military_office,Military Office,2,community_and_government,true,military_office, -community_and_government > public_facility,public_facility,Public Facility,1,community_and_government,true,public_facility, -community_and_government > public_facility > public_fountain,public_fountain,Public Fountain,2,community_and_government,true,public_fountain,11910 -community_and_government > public_facility > public_fountain > drinking_fountain,drinking_fountain,Drinking Fountain,3,community_and_government,false,public_fountain,108 -community_and_government > public_facility > public_pathway,public_pathway,Public Pathway,2,community_and_government,true,public_pathway, -community_and_government > public_facility > public_phone,public_phone,Public Phone,2,community_and_government,false,public_facility,2 -community_and_government > public_facility > public_plaza,public_plaza,Public Plaza,2,community_and_government,true,public_plaza,62362 -community_and_government > public_facility > public_restroom,public_restroom,Public Restroom,2,community_and_government,true,public_restroom,4616 -community_and_government > public_safety_service,public_safety_service,Public Safety Service,1,community_and_government,true,public_safety_service, -community_and_government > public_safety_service > fire_station,fire_station,Fire Station,2,community_and_government,true,fire_station,83675 -community_and_government > public_safety_service > jail_or_prison,jail_or_prison,Jail or Prison,2,community_and_government,true,jail_or_prison,9083 -community_and_government > public_safety_service > jail_or_prison > juvenile_detention_center,juvenile_detention_center,Juvenile Detention Center,3,community_and_government,false,jail_or_prison,110 -community_and_government > public_safety_service > police_station,police_station,Police Station,2,community_and_government,true,police_station,97337 -community_and_government > public_utility,public_utility,Public Utility,1,community_and_government,true,public_utility,14646 -community_and_government > public_utility > electric_utility_provider,electric_utility_provider,Electric Utility Provider,2,community_and_government,true,electric_utility_provider,23290 -community_and_government > public_utility > garbage_collection_service,garbage_collection_service,Garbage Collection Service,2,community_and_government,false,public_utility,48292 -community_and_government > public_utility > natural_gas_utility_provider,natural_gas_utility_provider,Natural Gas Utility Provider,2,community_and_government,true,natural_gas_utility_provider,10233 -community_and_government > public_utility > septic_service,septic_service,Septic Service,2,community_and_government,false,public_utility,7980 -community_and_government > public_utility > water_utility_provider,water_utility_provider,Water Utility Provider,2,community_and_government,true,water_utility_provider,17658 -community_and_government > social_or_community_service,social_or_community_service,Social or Community Service,1,community_and_government,true,social_or_community_service,821250 -community_and_government > social_or_community_service > child_protection_service,child_protection_service,Child Protection Service,2,community_and_government,false,social_or_community_service,1522 -community_and_government > social_or_community_service > community_center,community_center,Community Center,2,community_and_government,true,community_center,106008 -community_and_government > social_or_community_service > disability_services_and_support_organization,disability_services_and_support_organization,Disability Services and Support Organization,2,community_and_government,false,social_or_community_service,23286 -community_and_government > social_or_community_service > food_bank,food_bank,Food Bank,2,community_and_government,true,food_bank,8346 -community_and_government > social_or_community_service > foster_care_service,foster_care_service,Foster Care Service,2,community_and_government,false,social_or_community_service,1922 -community_and_government > social_or_community_service > gay_and_lesbian_services_organization,gay_and_lesbian_services_organization,Gay and Lesbian Services Organization,2,community_and_government,false,social_or_community_service,163 -community_and_government > social_or_community_service > homeless_shelter,homeless_shelter,Homeless Shelter,2,community_and_government,false,social_or_community_service,7095 -community_and_government > social_or_community_service > housing_authority,housing_authority,Housing Authority,2,community_and_government,false,social_or_community_service,9404 -community_and_government > social_or_community_service > scout_hall,scout_hall,Scout Hall,2,community_and_government,false,social_or_community_service,9413 -community_and_government > social_or_community_service > senior_citizen_service,senior_citizen_service,Senior Citizen Service,2,community_and_government,false,social_or_community_service,17107 -community_and_government > social_or_community_service > social_and_human_service,social_and_human_service,Social and Human Service,2,community_and_government,false,social_or_community_service,16422 -community_and_government > social_or_community_service > social_welfare_center,social_welfare_center,Social Welfare Center,2,community_and_government,false,social_or_community_service,604 -community_and_government > social_or_community_service > volunteer_association,volunteer_association,Volunteer Association,2,community_and_government,false,social_or_community_service,1003 -community_and_government > social_or_community_service > youth_organization,youth_organization,Youth Organization,2,community_and_government,true,youth_organization,57839 -cultural_and_historic,cultural_and_historic,Cultural and Historic,0,cultural_and_historic,true,cultural_and_historic, -cultural_and_historic > cultural_center,cultural_center,Cultural Center,1,cultural_and_historic,true,cultural_center,51870 -cultural_and_historic > historic_site,historic_site,Historic Site,1,cultural_and_historic,true,historic_site,998562 -cultural_and_historic > historic_site > castle,castle,Castle,2,cultural_and_historic,true,castle,15319 -cultural_and_historic > historic_site > fort,fort,Fort,2,cultural_and_historic,true,fort,2330 -cultural_and_historic > historic_site > historic_mission,historic_mission,Historic Mission,2,cultural_and_historic,false,historic_site,2116 -cultural_and_historic > historic_site > historic_tower,historic_tower,Historic Tower,2,cultural_and_historic,false,historic_site,10 -cultural_and_historic > historic_site > lighthouse,lighthouse,Lighthouse,2,cultural_and_historic,true,lighthouse,3747 -cultural_and_historic > historic_site > palace,palace,Palace,2,cultural_and_historic,false,historic_site,5324 -cultural_and_historic > historic_site > ruin,ruin,Ruin,2,cultural_and_historic,false,historic_site,29 -cultural_and_historic > memorial_site,memorial_site,Memorial Site,1,cultural_and_historic,true,memorial_site, -cultural_and_historic > memorial_site > cemetery,cemetery,Cemetery,2,cultural_and_historic,true,cemetery,3078 -cultural_and_historic > memorial_site > memorial_park,memorial_park,Memorial Park,2,cultural_and_historic,false,memorial_site,126 -cultural_and_historic > memorial_site > monument,monument,Monument,2,cultural_and_historic,true,monument,46824 -cultural_and_historic > place_of_worship,place_of_worship,Place of Worship,1,cultural_and_historic,true,place_of_worship,1408 -cultural_and_historic > place_of_worship > buddhist_place_of_worship,buddhist_place_of_worship,Buddhist Place of Worship,2,cultural_and_historic,true,buddhist_place_of_worship,110363 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,buddhist_place_of_worship, -cultural_and_historic > place_of_worship > christian_place_of_worship,christian_place_of_worship,Christian Place of Worship,2,cultural_and_historic,true,christian_place_of_worship,862941 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,42812 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,24881 -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,cultural_and_historic,false,christian_place_of_worship,103210 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,42876 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,3185 -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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship,135457 -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,cultural_and_historic,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,cultural_and_historic,false,christian_place_of_worship, -cultural_and_historic > place_of_worship > hindu_place_of_worship,hindu_place_of_worship,Hindu Place of Worship,2,cultural_and_historic,true,hindu_place_of_worship,128014 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,hindu_place_of_worship, -cultural_and_historic > place_of_worship > jewish_place_of_worship,jewish_place_of_worship,Jewish Place of Worship,2,cultural_and_historic,true,jewish_place_of_worship,8295 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,jewish_place_of_worship, -cultural_and_historic > place_of_worship > muslim_place_of_worship,muslim_place_of_worship,Muslim Place of Worship,2,cultural_and_historic,true,muslim_place_of_worship,122811 -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,cultural_and_historic,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,cultural_and_historic,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,cultural_and_historic,false,muslim_place_of_worship, -cultural_and_historic > place_of_worship > sikh_place_of_worship,sikh_place_of_worship,Sikh Place of Worship,2,cultural_and_historic,false,place_of_worship,5325 -cultural_and_historic > religious_landmark,religious_landmark,Religious Landmark,1,cultural_and_historic,true,religious_landmark, -cultural_and_historic > religious_landmark > pilgrimage_site,pilgrimage_site,Pilgrimage Site,2,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > pilgrimage_site > buddhist_pilgrimage_site,buddhist_pilgrimage_site,Buddhist Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > pilgrimage_site > christian_pilgrimage_site,christian_pilgrimage_site,Christian Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > pilgrimage_site > hindu_pilgrimage_site,hindu_pilgrimage_site,Hindu Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > pilgrimage_site > muslim_pilgrimage_site,muslim_pilgrimage_site,Muslim Pilgrimage Site,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > shrine,shrine,Shrine,2,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > shrine > catholic_shrine,catholic_shrine,Catholic Shrine,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_landmark > shrine > shinto_shrine,shinto_shrine,Shinto Shrine,3,cultural_and_historic,false,religious_landmark,7 -cultural_and_historic > religious_landmark > shrine > sufi_shrine,sufi_shrine,Sufi Shrine,3,cultural_and_historic,false,religious_landmark, -cultural_and_historic > religious_organization,religious_organization,Religious Organization,1,cultural_and_historic,true,religious_organization,388911 -cultural_and_historic > religious_organization > convent,convent,Convent,2,cultural_and_historic,false,religious_organization, -cultural_and_historic > religious_organization > monastery,monastery,Monastery,2,cultural_and_historic,false,religious_organization, -cultural_and_historic > religious_organization > seminary,seminary,Seminary,2,cultural_and_historic,false,religious_organization, -cultural_and_historic > religious_retreat_or_center,religious_retreat_or_center,Religious Retreat or Center,1,cultural_and_historic,true,religious_retreat_or_center, -cultural_and_historic > religious_retreat_or_center > christian_retreat_center,christian_retreat_center,Christian Retreat Center,2,cultural_and_historic,false,religious_retreat_or_center, -cultural_and_historic > religious_retreat_or_center > hindu_ashram,hindu_ashram,Hindu Ashram,2,cultural_and_historic,false,religious_retreat_or_center, -cultural_and_historic > religious_retreat_or_center > zen_center,zen_center,Zen Center,2,cultural_and_historic,false,religious_retreat_or_center, -education,education,Education,0,education,true,education,437216 -education > education_office,education_office,Education Office,1,education,true,education_office, -education > education_office > board_of_education_office,board_of_education_office,Board of Education Office,2,education,false,education_office,463 -education > education_office > school_district_office,school_district_office,School District Office,2,education,true,school_district_office,1983 -education > educational_facility,educational_facility,Educational Facility,1,education,true,educational_facility, -education > educational_facility > campus,campus,Campus,2,education,true,campus, -education > educational_facility > campus_building,campus_building,Campus Building,2,education,true,campus_building,82488 -education > educational_facility > campus_building > student_union,student_union,Student Union,3,education,false,campus_building,3458 -education > educational_facility > educational_camp,educational_camp,Educational Camp,2,education,false,educational_facility,7235 -education > educational_service,educational_service,Educational Service,1,education,true,educational_service,69509 -education > educational_service > after_school_program,after_school_program,After School Program,2,education,false,educational_service,2169 -education > educational_service > archaeological_service,archaeological_service,Archaeological Service,2,education,false,educational_service,1605 -education > educational_service > college_counseling,college_counseling,College Counseling,2,education,false,educational_service,289 -education > educational_service > test_preparation,test_preparation,Test Preparation,2,education,false,educational_service,18205 -education > educational_service > tutoring_service,tutoring_service,Tutoring Service,2,education,true,tutoring_service,87959 -education > educational_service > tutoring_service > private_tutor,private_tutor,Private Tutor,3,education,false,tutoring_service,1495 -education > library,library,Library,1,education,true,library,136849 -education > place_of_learning,place_of_learning,Place of Learning,1,education,true,place_of_learning, -education > place_of_learning > academy,academy,Academy,2,education,true,academy, -education > place_of_learning > academy > civil_examinations_academy,civil_examinations_academy,Civil Examinations Academy,3,education,false,academy,62 -education > place_of_learning > adult_education_center,adult_education_center,Adult Education Center,2,education,false,place_of_learning,8420 -education > place_of_learning > class_venue,class_venue,Class Venue,2,education,true,class_venue, -education > place_of_learning > class_venue > tasting_class,tasting_class,Tasting Class,3,education,false,class_venue,8 -education > place_of_learning > class_venue > tasting_class > cheese_tasting_class,cheese_tasting_class,Cheese Tasting Class,4,education,false,class_venue,9 -education > place_of_learning > class_venue > tasting_class > wine_tasting_class,wine_tasting_class,Wine Tasting Class,4,education,false,class_venue,21 -education > place_of_learning > college_university,college_university,College University,2,education,true,college_university,365741 -education > place_of_learning > college_university > architecture_school,architecture_school,Architecture School,3,education,false,college_university,84 -education > place_of_learning > college_university > business_school,business_school,Business School,3,education,false,college_university,1033 -education > place_of_learning > college_university > engineering_school,engineering_school,Engineering School,3,education,false,college_university,521 -education > place_of_learning > college_university > law_school,law_school,Law School,3,education,false,college_university,433 -education > place_of_learning > college_university > medical_sciences_school,medical_sciences_school,Medical Sciences School,3,education,false,college_university,300 -education > place_of_learning > college_university > medical_sciences_school > dentistry_school,dentistry_school,Dentistry School,4,education,false,college_university,318 -education > place_of_learning > college_university > medical_sciences_school > pharmacy_school,pharmacy_school,Pharmacy School,4,education,false,college_university,31 -education > place_of_learning > college_university > medical_sciences_school > veterinary_school,veterinary_school,Veterinary School,4,education,false,college_university,2 -education > place_of_learning > college_university > science_school,science_school,Science School,3,education,false,college_university,59 -education > place_of_learning > school,school,School,2,education,false,place_of_learning,646351 -education > place_of_learning > school > charter_school,charter_school,Charter School,3,education,false,place_of_learning,561 -education > place_of_learning > school > elementary_school,elementary_school,Elementary School,3,education,true,elementary_school,423059 -education > place_of_learning > school > high_school,high_school,High School,3,education,true,high_school,168990 -education > place_of_learning > school > kindergarten,kindergarten,Kindergarten,3,education,true,kindergarten, -education > place_of_learning > school > middle_school,middle_school,Middle School,3,education,true,middle_school,66983 -education > place_of_learning > school > montessori_school,montessori_school,Montessori School,3,education,false,place_of_learning,1041 -education > place_of_learning > school > preschool,preschool,Preschool,3,education,true,preschool,282188 -education > place_of_learning > school > private_school,private_school,Private School,3,education,false,place_of_learning,72921 -education > place_of_learning > school > public_school,public_school,Public School,3,education,false,place_of_learning,51347 -education > place_of_learning > school > religious_school,religious_school,Religious School,3,education,false,place_of_learning,26285 -education > place_of_learning > school > waldorf_school,waldorf_school,Waldorf School,3,education,false,place_of_learning,18 -education > place_of_learning > specialty_school,specialty_school,Specialty School,2,education,true,specialty_school,52024 -education > place_of_learning > specialty_school > art_school,art_school,Art School,3,education,false,specialty_school,36062 -education > place_of_learning > specialty_school > bartending_school,bartending_school,Bartending School,3,education,false,specialty_school,1063 -education > place_of_learning > specialty_school > cheerleading,cheerleading,Cheerleading,3,education,false,specialty_school,104 -education > place_of_learning > specialty_school > childbirth_education,childbirth_education,Childbirth Education,3,education,false,specialty_school,208 -education > place_of_learning > specialty_school > circus_school,circus_school,Circus School,3,education,false,specialty_school,38 -education > place_of_learning > specialty_school > computer_coaching,computer_coaching,Computer Coaching,3,education,false,specialty_school,31690 -education > place_of_learning > specialty_school > cooking_school,cooking_school,Cooking School,3,education,false,specialty_school,10204 -education > place_of_learning > specialty_school > cosmetology_school,cosmetology_school,Cosmetology School,3,education,false,specialty_school,13188 -education > place_of_learning > specialty_school > cpr_class,cpr_class,CPR Class,3,education,false,specialty_school,1030 -education > place_of_learning > specialty_school > drama_school,drama_school,Drama School,3,education,false,specialty_school,631 -education > place_of_learning > specialty_school > driving_school,driving_school,Driving School,3,education,false,specialty_school,103912 -education > place_of_learning > specialty_school > dui_school,dui_school,DUI School,3,education,false,specialty_school,49 -education > place_of_learning > specialty_school > firearm_training,firearm_training,Firearm Training,3,education,false,specialty_school,1203 -education > place_of_learning > specialty_school > first_aid_class,first_aid_class,First Aid Class,3,education,false,specialty_school,3788 -education > place_of_learning > specialty_school > flight_school,flight_school,Flight School,3,education,false,specialty_school,10046 -education > place_of_learning > specialty_school > food_safety_training,food_safety_training,Food Safety Training,3,education,false,specialty_school,710 -education > place_of_learning > specialty_school > language_school,language_school,Language School,3,education,false,specialty_school,90099 -education > place_of_learning > specialty_school > massage_school,massage_school,Massage School,3,education,false,specialty_school,2312 -education > place_of_learning > specialty_school > medical_school,medical_school,Medical School,3,education,false,specialty_school,10228 -education > place_of_learning > specialty_school > music_school,music_school,Music School,3,education,false,specialty_school,69335 -education > place_of_learning > specialty_school > nursing_school,nursing_school,Nursing School,3,education,false,specialty_school,6962 -education > place_of_learning > specialty_school > parenting_class,parenting_class,Parenting Class,3,education,false,specialty_school,174 -education > place_of_learning > specialty_school > photography_class,photography_class,Photography Class,3,education,false,specialty_school,114 -education > place_of_learning > specialty_school > speech_training,speech_training,Speech Training,3,education,false,specialty_school,183 -education > place_of_learning > specialty_school > sports_school,sports_school,Sports School,3,education,false,specialty_school,1107 -education > place_of_learning > specialty_school > traffic_school,traffic_school,Traffic School,3,education,false,specialty_school,1781 -education > place_of_learning > specialty_school > vocational_and_technical_school,vocational_and_technical_school,Vocational and Technical School,3,education,false,specialty_school,48238 -education > research_institute,research_institute,Research Institute,1,education,true,research_institute,3210 -education > research_institute > educational_research_institute,educational_research_institute,Educational Research Institute,2,education,false,research_institute,18836 -education > research_institute > medical_research_institute,medical_research_institute,Medical Research Institute,2,education,false,research_institute,21642 -food_and_drink,food_and_drink,Food and Drink,0,food_and_drink,true,food_and_drink,98464 -food_and_drink > alcoholic_beverage_venue,alcoholic_beverage_venue,Alcoholic Beverage Venue,1,food_and_drink,true,alcoholic_beverage_venue, -food_and_drink > alcoholic_beverage_venue > bar,bar,Bar,2,food_and_drink,true,bar,644080 -food_and_drink > alcoholic_beverage_venue > bar > bar_tabac,bar_tabac,Bar Tabac,3,food_and_drink,false,bar,140 -food_and_drink > alcoholic_beverage_venue > bar > beach_bar,beach_bar,Beach Bar,3,food_and_drink,false,bar,451 -food_and_drink > alcoholic_beverage_venue > bar > beer_bar,beer_bar,Beer Bar,3,food_and_drink,false,bar,23997 -food_and_drink > alcoholic_beverage_venue > bar > champagne_bar,champagne_bar,Champagne Bar,3,food_and_drink,false,bar,240 -food_and_drink > alcoholic_beverage_venue > bar > cigar_bar,cigar_bar,Cigar Bar,3,food_and_drink,false,bar,535 -food_and_drink > alcoholic_beverage_venue > bar > cocktail_bar,cocktail_bar,Cocktail Bar,3,food_and_drink,false,bar,46327 -food_and_drink > alcoholic_beverage_venue > bar > dive_bar,dive_bar,Dive Bar,3,food_and_drink,false,bar,4649 -food_and_drink > alcoholic_beverage_venue > bar > drive_thru_bar,drive_thru_bar,Drive Thru Bar,3,food_and_drink,false,bar,65 -food_and_drink > alcoholic_beverage_venue > bar > gay_bar,gay_bar,Gay Bar,3,food_and_drink,false,bar,3664 -food_and_drink > alcoholic_beverage_venue > bar > hookah_bar,hookah_bar,Hookah Bar,3,food_and_drink,false,bar,16860 -food_and_drink > alcoholic_beverage_venue > bar > hotel_bar,hotel_bar,Hotel Bar,3,food_and_drink,false,bar,2997 -food_and_drink > alcoholic_beverage_venue > bar > piano_bar,piano_bar,Piano Bar,3,food_and_drink,false,bar,126 -food_and_drink > alcoholic_beverage_venue > bar > pub,pub,Pub,3,food_and_drink,false,bar,144776 -food_and_drink > alcoholic_beverage_venue > bar > pub > irish_pub,irish_pub,Irish Pub,4,food_and_drink,false,bar,6819 -food_and_drink > alcoholic_beverage_venue > bar > sake_bar,sake_bar,Sake Bar,3,food_and_drink,false,bar,13225 -food_and_drink > alcoholic_beverage_venue > bar > speakeasy,speakeasy,Speakeasy,3,food_and_drink,false,bar,2295 -food_and_drink > alcoholic_beverage_venue > bar > sports_bar,sports_bar,Sports Bar,3,food_and_drink,false,bar,26179 -food_and_drink > alcoholic_beverage_venue > bar > tiki_bar,tiki_bar,Tiki Bar,3,food_and_drink,false,bar,1035 -food_and_drink > alcoholic_beverage_venue > bar > vermouth_bar,vermouth_bar,Vermouth Bar,3,food_and_drink,false,bar,1 -food_and_drink > alcoholic_beverage_venue > bar > whiskey_bar,whiskey_bar,Whiskey Bar,3,food_and_drink,false,bar,1814 -food_and_drink > alcoholic_beverage_venue > bar > wine_bar,wine_bar,Wine Bar,3,food_and_drink,false,bar,34745 -food_and_drink > alcoholic_beverage_venue > beer_garden,beer_garden,Beer Garden,2,food_and_drink,false,alcoholic_beverage_venue,16278 -food_and_drink > alcoholic_beverage_venue > brewery,brewery,Brewery,2,food_and_drink,true,brewery,47917 -food_and_drink > alcoholic_beverage_venue > cidery,cidery,Cidery,2,food_and_drink,false,alcoholic_beverage_venue,151 -food_and_drink > alcoholic_beverage_venue > distillery,distillery,Distillery,2,food_and_drink,true,distillery,9919 -food_and_drink > alcoholic_beverage_venue > lounge,lounge,Lounge,2,food_and_drink,true,lounge,52495 -food_and_drink > alcoholic_beverage_venue > lounge > airport_lounge,airport_lounge,Airport Lounge,3,food_and_drink,false,lounge,3691 -food_and_drink > alcoholic_beverage_venue > winery,winery,Winery,2,food_and_drink,true,winery,76227 -food_and_drink > alcoholic_beverage_venue > winery > wine_tasting_room,wine_tasting_room,Wine Tasting Room,3,food_and_drink,false,winery,220 -food_and_drink > casual_eatery,casual_eatery,Casual Eatery,1,food_and_drink,true,casual_eatery, -food_and_drink > casual_eatery > bagel_shop,bagel_shop,Bagel Shop,2,food_and_drink,false,casual_eatery,10542 -food_and_drink > casual_eatery > bakery,bakery,Bakery,2,food_and_drink,false,casual_eatery,514933 -food_and_drink > casual_eatery > bakery > baguette_shop,baguette_shop,Baguette Shop,3,food_and_drink,false,casual_eatery, -food_and_drink > casual_eatery > bakery > flatbread_shop,flatbread_shop,Flatbread Shop,3,food_and_drink,false,casual_eatery,15 -food_and_drink > casual_eatery > bakery > macaron_shop,macaron_shop,Macaron Shop,3,food_and_drink,false,casual_eatery,57 -food_and_drink > casual_eatery > bakery > pretzel_shop,pretzel_shop,Pretzel Shop,3,food_and_drink,false,casual_eatery,785 -food_and_drink > casual_eatery > bistro,bistro,Bistro,2,food_and_drink,false,casual_eatery,4258 -food_and_drink > casual_eatery > cafe,cafe,Cafe,2,food_and_drink,true,cafe,700856 -food_and_drink > casual_eatery > cafe > animal_cafe,animal_cafe,Animal Cafe,3,food_and_drink,false,cafe, -food_and_drink > casual_eatery > cafe > animal_cafe > cat_cafe,cat_cafe,Cat Cafe,4,food_and_drink,false,cafe, -food_and_drink > casual_eatery > cafe > animal_cafe > dog_cafe,dog_cafe,Dog Cafe,4,food_and_drink,false,cafe, -food_and_drink > casual_eatery > cafe > hong_kong_style_cafe,hong_kong_style_cafe,Hong Kong Style Cafe,3,food_and_drink,false,cafe,1236 -food_and_drink > casual_eatery > cafe > internet_cafe,internet_cafe,Internet Cafe,3,food_and_drink,false,cafe,22815 -food_and_drink > casual_eatery > candy_store,candy_store,Candy Store,2,food_and_drink,false,casual_eatery,61223 -food_and_drink > casual_eatery > candy_store > chocolatier,chocolatier,Chocolatier,3,food_and_drink,false,casual_eatery,30157 -food_and_drink > casual_eatery > candy_store > indian_sweets_shop,indian_sweets_shop,Indian Sweets Shop,3,food_and_drink,false,casual_eatery,119 -food_and_drink > casual_eatery > candy_store > japanese_confectionery_shop,japanese_confectionery_shop,Japanese Confectionery Shop,3,food_and_drink,false,casual_eatery,322 -food_and_drink > casual_eatery > canteen,canteen,Canteen,2,food_and_drink,false,casual_eatery,2 -food_and_drink > casual_eatery > delicatessen,delicatessen,Delicatessen,2,food_and_drink,false,casual_eatery,75264 -food_and_drink > casual_eatery > dessert_shop,dessert_shop,Dessert Shop,2,food_and_drink,false,casual_eatery,120900 -food_and_drink > casual_eatery > dessert_shop > cupcake_shop,cupcake_shop,Cupcake Shop,3,food_and_drink,false,casual_eatery,27896 -food_and_drink > casual_eatery > dessert_shop > donut_shop,donut_shop,Donut Shop,3,food_and_drink,false,casual_eatery,30561 -food_and_drink > casual_eatery > dessert_shop > frozen_yogurt_shop,frozen_yogurt_shop,Frozen Yogurt Shop,3,food_and_drink,false,casual_eatery,9688 -food_and_drink > casual_eatery > dessert_shop > gelato_shop,gelato_shop,Gelato Shop,3,food_and_drink,false,casual_eatery,13542 -food_and_drink > casual_eatery > dessert_shop > ice_cream_shop,ice_cream_shop,Ice Cream Shop,3,food_and_drink,false,casual_eatery,174518 -food_and_drink > casual_eatery > dessert_shop > pie_shop,pie_shop,Pie Shop,3,food_and_drink,false,casual_eatery,830 -food_and_drink > casual_eatery > dessert_shop > shaved_ice_shop,shaved_ice_shop,Shaved Ice Shop,3,food_and_drink,false,casual_eatery,5564 -food_and_drink > casual_eatery > diner,diner,Diner,2,food_and_drink,false,casual_eatery,90273 -food_and_drink > casual_eatery > fast_food_restaurant,fast_food_restaurant,Fast Food Restaurant,2,food_and_drink,true,fast_food_restaurant,409785 -food_and_drink > casual_eatery > fondue_restaurant,fondue_restaurant,Fondue Restaurant,2,food_and_drink,false,casual_eatery,2428 -food_and_drink > casual_eatery > food_court,food_court,Food Court,2,food_and_drink,true,food_court,2101 -food_and_drink > casual_eatery > food_truck_stand,food_truck_stand,Food Truck or Stand,2,food_and_drink,true,food_truck_stand,83367 -food_and_drink > casual_eatery > friterie,friterie,Friterie,2,food_and_drink,false,casual_eatery,280 -food_and_drink > casual_eatery > gastropub,gastropub,Gastropub,2,food_and_drink,false,casual_eatery,24221 -food_and_drink > casual_eatery > popcorn_shop,popcorn_shop,Popcorn Shop,2,food_and_drink,false,casual_eatery,527 -food_and_drink > casual_eatery > sandwich_shop,sandwich_shop,Sandwich Shop,2,food_and_drink,false,casual_eatery,90951 -food_and_drink > casual_eatery > sugar_shack,sugar_shack,Sugar Shack,2,food_and_drink,false,casual_eatery,5 -food_and_drink > casual_eatery > tapas_bar,tapas_bar,Tapas Bar,2,food_and_drink,false,casual_eatery,41690 -food_and_drink > non_alcoholic_beverage_venue,non_alcoholic_beverage_venue,Non-Alcoholic Beverage Venue,1,food_and_drink,true,non_alcoholic_beverage_venue,155 -food_and_drink > non_alcoholic_beverage_venue > bubble_tea_shop,bubble_tea_shop,Bubble Tea Shop,2,food_and_drink,false,non_alcoholic_beverage_venue,39573 -food_and_drink > non_alcoholic_beverage_venue > coffee_shop,coffee_shop,Coffee Shop,2,food_and_drink,true,coffee_shop,610598 -food_and_drink > non_alcoholic_beverage_venue > coffee_shop > coffee_roastery,coffee_roastery,Coffee Roastery,3,food_and_drink,false,coffee_shop,1610 -food_and_drink > non_alcoholic_beverage_venue > kombucha_bar,kombucha_bar,Kombucha Bar,2,food_and_drink,false,non_alcoholic_beverage_venue,40 -food_and_drink > non_alcoholic_beverage_venue > milk_bar,milk_bar,Milk Bar,2,food_and_drink,false,non_alcoholic_beverage_venue,4081 -food_and_drink > non_alcoholic_beverage_venue > milkshake_bar,milkshake_bar,Milkshake Bar,2,food_and_drink,false,non_alcoholic_beverage_venue, -food_and_drink > non_alcoholic_beverage_venue > smoothie_juice_bar,smoothie_juice_bar,Smoothie or Juice Bar,2,food_and_drink,true,smoothie_juice_bar,62736 -food_and_drink > non_alcoholic_beverage_venue > tea_room,tea_room,Tea Room,2,food_and_drink,false,non_alcoholic_beverage_venue,59781 -food_and_drink > restaurant,restaurant,Restaurant,1,food_and_drink,true,restaurant,1812921 -food_and_drink > restaurant > african_restaurant,african_restaurant,African Restaurant,2,food_and_drink,false,restaurant,7479 -food_and_drink > restaurant > african_restaurant > east_african_restaurant,east_african_restaurant,East African Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > east_african_restaurant > eritrean_restaurant,eritrean_restaurant,Eritrean Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > east_african_restaurant > ethiopian_restaurant,ethiopian_restaurant,Ethiopian Restaurant,4,food_and_drink,false,restaurant,1600 -food_and_drink > restaurant > african_restaurant > east_african_restaurant > somalian_restaurant,somalian_restaurant,Somalian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > north_african_restaurant,north_african_restaurant,North African Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > north_african_restaurant > algerian_restaurant,algerian_restaurant,Algerian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > north_african_restaurant > egyptian_restaurant,egyptian_restaurant,Egyptian Restaurant,4,food_and_drink,false,restaurant,986 -food_and_drink > restaurant > african_restaurant > north_african_restaurant > moroccan_restaurant,moroccan_restaurant,Moroccan Restaurant,4,food_and_drink,false,restaurant,2829 -food_and_drink > restaurant > african_restaurant > southern_african_restaurant,southern_african_restaurant,Southern African Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > southern_african_restaurant > south_african_restaurant,south_african_restaurant,South African Restaurant,4,food_and_drink,false,restaurant,217 -food_and_drink > restaurant > african_restaurant > west_african_restaurant,west_african_restaurant,West African Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > west_african_restaurant > ghanaian_restaurant,ghanaian_restaurant,Ghanaian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > african_restaurant > west_african_restaurant > nigerian_restaurant,nigerian_restaurant,Nigerian Restaurant,4,food_and_drink,false,restaurant,303 -food_and_drink > restaurant > african_restaurant > west_african_restaurant > senegalese_restaurant,senegalese_restaurant,Senegalese Restaurant,4,food_and_drink,false,restaurant,115 -food_and_drink > restaurant > asian_restaurant,asian_restaurant,Asian Restaurant,2,food_and_drink,false,restaurant,73045 -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant,central_asian_restaurant,Central Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > afghani_restaurant,afghani_restaurant,Afghani Restaurant,4,food_and_drink,false,restaurant,2055 -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > kazakhstani_restaurant,kazakhstani_restaurant,Kazakhstani Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > central_asian_restaurant > uzbek_restaurant,uzbek_restaurant,Uzbek Restaurant,4,food_and_drink,false,restaurant,241 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant,east_asian_restaurant,East Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant,chinese_restaurant,Chinese Restaurant,4,food_and_drink,false,restaurant,181146 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > baozi_restaurant,baozi_restaurant,Baozi Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > beijing_restaurant,beijing_restaurant,Beijing Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > cantonese_restaurant,cantonese_restaurant,Cantonese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dim_sum_restaurant,dim_sum_restaurant,Dim Sum Restaurant,5,food_and_drink,false,restaurant,4953 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > dongbei_restaurant,dongbei_restaurant,Dongbei Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > fujian_restaurant,fujian_restaurant,Fujian Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > hunan_restaurant,hunan_restaurant,Hunan Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > indo_chinese_restaurant,indo_chinese_restaurant,Indo Chinese Restaurant,5,food_and_drink,false,restaurant,615 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > jiangsu_restaurant,jiangsu_restaurant,Jiangsu Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shandong_restaurant,shandong_restaurant,Shandong Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > shanghainese_restaurant,shanghainese_restaurant,Shanghainese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > sichuan_restaurant,sichuan_restaurant,Sichuan Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > chinese_restaurant > xinjiang_restaurant,xinjiang_restaurant,Xinjiang Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant,japanese_restaurant,Japanese Restaurant,4,food_and_drink,false,restaurant,348248 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > japanese_restaurant > sushi_restaurant,sushi_restaurant,Sushi Restaurant,5,food_and_drink,false,restaurant,101741 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > korean_restaurant,korean_restaurant,Korean Restaurant,4,food_and_drink,false,restaurant,84105 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > mongolian_restaurant,mongolian_restaurant,Mongolian Restaurant,4,food_and_drink,false,restaurant,751 -food_and_drink > restaurant > asian_restaurant > east_asian_restaurant > taiwanese_restaurant,taiwanese_restaurant,Taiwanese Restaurant,4,food_and_drink,false,restaurant,8913 -food_and_drink > restaurant > asian_restaurant > ramen_restaurant,ramen_restaurant,Ramen Restaurant,3,food_and_drink,false,restaurant,45827 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant,south_asian_restaurant,South Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > bangladeshi_restaurant,bangladeshi_restaurant,Bangladeshi Restaurant,4,food_and_drink,false,restaurant,1969 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant,himalayan_restaurant,Himalayan Restaurant,4,food_and_drink,false,restaurant,58 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > himalayan_restaurant > nepalese_restaurant,nepalese_restaurant,Nepalese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant,indian_restaurant,Indian Restaurant,4,food_and_drink,false,restaurant,102723 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > bengali_restaurant,bengali_restaurant,Bengali Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > chettinad_restaurant,chettinad_restaurant,Chettinad Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > gujarati_restaurant,gujarati_restaurant,Gujarati Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > hyderabadi_restaurant,hyderabadi_restaurant,Hyderabadi Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > north_indian_restaurant,north_indian_restaurant,North Indian Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > punjabi_restaurant,punjabi_restaurant,Punjabi Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > rajasthani_restaurant,rajasthani_restaurant,Rajasthani Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > indian_restaurant > south_indian_restaurant,south_indian_restaurant,South Indian Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > pakistani_restaurant,pakistani_restaurant,Pakistani Restaurant,4,food_and_drink,false,restaurant,3240 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > sri_lankan_restaurant,sri_lankan_restaurant,Sri Lankan Restaurant,4,food_and_drink,false,restaurant,1138 -food_and_drink > restaurant > asian_restaurant > south_asian_restaurant > tibetan_restaurant,tibetan_restaurant,Tibetan Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant,southeast_asian_restaurant,Southeast Asian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > burmese_restaurant,burmese_restaurant,Burmese Restaurant,4,food_and_drink,false,restaurant,641 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > cambodian_restaurant,cambodian_restaurant,Cambodian Restaurant,4,food_and_drink,false,restaurant,791 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > filipino_restaurant,filipino_restaurant,Filipino Restaurant,4,food_and_drink,false,restaurant,10665 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant,indonesian_restaurant,Indonesian Restaurant,4,food_and_drink,false,restaurant,54634 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > indonesian_restaurant > sundanese_restaurant,sundanese_restaurant,Sundanese Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > laotian_restaurant,laotian_restaurant,Laotian Restaurant,4,food_and_drink,false,restaurant,20 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > malaysian_restaurant,malaysian_restaurant,Malaysian Restaurant,4,food_and_drink,false,restaurant,12316 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > nasi_restaurant,nasi_restaurant,Nasi Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > singaporean_restaurant,singaporean_restaurant,Singaporean Restaurant,4,food_and_drink,false,restaurant,758 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > thai_restaurant,thai_restaurant,Thai Restaurant,4,food_and_drink,false,restaurant,100446 -food_and_drink > restaurant > asian_restaurant > southeast_asian_restaurant > vietnamese_restaurant,vietnamese_restaurant,Vietnamese Restaurant,4,food_and_drink,false,restaurant,35501 -food_and_drink > restaurant > asian_restaurant > wok_restaurant,wok_restaurant,Wok Restaurant,3,food_and_drink,false,restaurant,15 -food_and_drink > restaurant > bar_and_grill_restaurant,bar_and_grill_restaurant,Bar and Grill Restaurant,2,food_and_drink,false,restaurant,88422 -food_and_drink > restaurant > breakfast_and_brunch_restaurant,breakfast_and_brunch_restaurant,Breakfast and Brunch Restaurant,2,food_and_drink,false,restaurant,74087 -food_and_drink > restaurant > breakfast_and_brunch_restaurant > pancake_house,pancake_house,Pancake House,3,food_and_drink,false,restaurant,15138 -food_and_drink > restaurant > breakfast_and_brunch_restaurant > waffle_restaurant,waffle_restaurant,Waffle Restaurant,3,food_and_drink,false,restaurant,284 -food_and_drink > restaurant > buffet_restaurant,buffet_restaurant,Buffet Restaurant,2,food_and_drink,false,restaurant,33644 -food_and_drink > restaurant > cafeteria,cafeteria,Cafeteria,2,food_and_drink,false,restaurant,2717 -food_and_drink > restaurant > comfort_food_restaurant,comfort_food_restaurant,Comfort Food Restaurant,2,food_and_drink,false,restaurant,9536 -food_and_drink > restaurant > diy_foods_restaurant,diy_foods_restaurant,DIY Foods Restaurant,2,food_and_drink,false,restaurant,52 -food_and_drink > restaurant > dumpling_restaurant,dumpling_restaurant,Dumpling Restaurant,2,food_and_drink,false,restaurant,1115 -food_and_drink > restaurant > european_restaurant,european_restaurant,European Restaurant,2,food_and_drink,false,restaurant,12182 -food_and_drink > restaurant > european_restaurant > central_european_restaurant,central_european_restaurant,Central European Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > austrian_restaurant,austrian_restaurant,Austrian Restaurant,4,food_and_drink,false,restaurant,4715 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > czech_restaurant,czech_restaurant,Czech Restaurant,4,food_and_drink,false,restaurant,1355 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant,german_restaurant,German Restaurant,4,food_and_drink,false,restaurant,26141 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > german_restaurant > fischbrotchen_restaurant,fischbrotchen_restaurant,Fischbrotchen Restaurant,5,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > central_european_restaurant > hungarian_restaurant,hungarian_restaurant,Hungarian Restaurant,4,food_and_drink,false,restaurant,1108 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > polish_restaurant,polish_restaurant,Polish Restaurant,4,food_and_drink,false,restaurant,2696 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > schnitzel_restaurant,schnitzel_restaurant,Schnitzel Restaurant,4,food_and_drink,false,restaurant,9 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > slovakian_restaurant,slovakian_restaurant,Slovakian Restaurant,4,food_and_drink,false,restaurant,79 -food_and_drink > restaurant > european_restaurant > central_european_restaurant > swiss_restaurant,swiss_restaurant,Swiss Restaurant,4,food_and_drink,false,restaurant,1716 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant,eastern_european_restaurant,Eastern European Restaurant,3,food_and_drink,false,restaurant,3510 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > belarusian_restaurant,belarusian_restaurant,Belarusian Restaurant,4,food_and_drink,false,restaurant,35 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > bulgarian_restaurant,bulgarian_restaurant,Bulgarian Restaurant,4,food_and_drink,false,restaurant,618 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > lithuanian_restaurant,lithuanian_restaurant,Lithuanian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > romanian_restaurant,romanian_restaurant,Romanian Restaurant,4,food_and_drink,false,restaurant,614 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant,russian_restaurant,Russian Restaurant,4,food_and_drink,false,restaurant,1495 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > russian_restaurant > tatar_restaurant,tatar_restaurant,Tatar Restaurant,5,food_and_drink,false,restaurant,77 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > serbo_croatian_restaurant,serbo_croatian_restaurant,Serbo-Croatian Restaurant,4,food_and_drink,false,restaurant,10 -food_and_drink > restaurant > european_restaurant > eastern_european_restaurant > ukrainian_restaurant,ukrainian_restaurant,Ukrainian Restaurant,4,food_and_drink,false,restaurant,938 -food_and_drink > restaurant > european_restaurant > iberian_restaurant,iberian_restaurant,Iberian Restaurant,3,food_and_drink,false,restaurant,49 -food_and_drink > restaurant > european_restaurant > iberian_restaurant > portuguese_restaurant,portuguese_restaurant,Portuguese Restaurant,4,food_and_drink,false,restaurant,9726 -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant,spanish_restaurant,Spanish Restaurant,4,food_and_drink,false,restaurant,29021 -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > basque_restaurant,basque_restaurant,Basque Restaurant,5,food_and_drink,false,restaurant,1060 -food_and_drink > restaurant > european_restaurant > iberian_restaurant > spanish_restaurant > catalan_restaurant,catalan_restaurant,Catalan Restaurant,5,food_and_drink,false,restaurant,1219 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant,mediterranean_restaurant,Mediterranean Restaurant,3,food_and_drink,false,restaurant,26883 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > greek_restaurant,greek_restaurant,Greek Restaurant,4,food_and_drink,false,restaurant,26884 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant,italian_restaurant,Italian Restaurant,4,food_and_drink,false,restaurant,216908 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > piadina_restaurant,piadina_restaurant,Piadina Restaurant,5,food_and_drink,false,restaurant,185 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > italian_restaurant > pizza_restaurant,pizza_restaurant,Pizza Restaurant,5,food_and_drink,false,restaurant,408941 -food_and_drink > restaurant > european_restaurant > mediterranean_restaurant > maltese_restaurant,maltese_restaurant,Maltese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant,scandinavian_restaurant,Scandinavian Restaurant,3,food_and_drink,false,restaurant,3318 -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > danish_restaurant,danish_restaurant,Danish Restaurant,4,food_and_drink,false,restaurant,6 -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > finnish_restaurant,finnish_restaurant,Finnish Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > icelandic_restaurant,icelandic_restaurant,Icelandic Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > norwegian_restaurant,norwegian_restaurant,Norwegian Restaurant,4,food_and_drink,false,restaurant,1 -food_and_drink > restaurant > european_restaurant > scandinavian_restaurant > swedish_restaurant,swedish_restaurant,Swedish Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant,western_european_restaurant,Western European Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > belgian_restaurant,belgian_restaurant,Belgian Restaurant,4,food_and_drink,false,restaurant,4096 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > british_restaurant,british_restaurant,British Restaurant,4,food_and_drink,false,restaurant,4332 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > dutch_restaurant,dutch_restaurant,Dutch Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant,french_restaurant,French Restaurant,4,food_and_drink,false,restaurant,65306 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > french_restaurant > brasserie,brasserie,Brasserie,5,food_and_drink,false,restaurant,941 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > irish_restaurant,irish_restaurant,Irish Restaurant,4,food_and_drink,false,restaurant,483 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > scottish_restaurant,scottish_restaurant,Scottish Restaurant,4,food_and_drink,false,restaurant,239 -food_and_drink > restaurant > european_restaurant > western_european_restaurant > welsh_restaurant,welsh_restaurant,Welsh Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > haute_cuisine_restaurant,haute_cuisine_restaurant,Haute Cuisine Restaurant,2,food_and_drink,false,restaurant,3 -food_and_drink > restaurant > international_fusion_restaurant,international_fusion_restaurant,International Fusion Restaurant,2,food_and_drink,false,restaurant,476 -food_and_drink > restaurant > international_fusion_restaurant > asian_fusion_restaurant,asian_fusion_restaurant,Asian Fusion Restaurant,3,food_and_drink,false,restaurant,12746 -food_and_drink > restaurant > international_fusion_restaurant > latin_fusion_restaurant,latin_fusion_restaurant,Latin Fusion Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > international_fusion_restaurant > pan_asian_restaurant,pan_asian_restaurant,Pan Asian Restaurant,3,food_and_drink,false,restaurant,2864 -food_and_drink > restaurant > latin_american_restaurant,latin_american_restaurant,Latin American Restaurant,2,food_and_drink,false,restaurant,21756 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant,caribbean_restaurant,Caribbean Restaurant,3,food_and_drink,false,restaurant,7779 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > cuban_restaurant,cuban_restaurant,Cuban Restaurant,4,food_and_drink,false,restaurant,3109 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > dominican_restaurant,dominican_restaurant,Dominican Restaurant,4,food_and_drink,false,restaurant,1029 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > haitian_restaurant,haitian_restaurant,Haitian Restaurant,4,food_and_drink,false,restaurant,503 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > jamaican_restaurant,jamaican_restaurant,Jamaican Restaurant,4,food_and_drink,false,restaurant,2508 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > puerto_rican_restaurant,puerto_rican_restaurant,Puerto Rican Restaurant,4,food_and_drink,false,restaurant,1125 -food_and_drink > restaurant > latin_american_restaurant > caribbean_restaurant > trinidadian_restaurant,trinidadian_restaurant,Trinidadian Restaurant,4,food_and_drink,false,restaurant,63 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant,central_american_restaurant,Central American Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > belizean_restaurant,belizean_restaurant,Belizean Restaurant,4,food_and_drink,false,restaurant,12 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > costa_rican_restaurant,costa_rican_restaurant,Costa Rican Restaurant,4,food_and_drink,false,restaurant,91 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > guatemalan_restaurant,guatemalan_restaurant,Guatemalan Restaurant,4,food_and_drink,false,restaurant,460 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > honduran_restaurant,honduran_restaurant,Honduran Restaurant,4,food_and_drink,false,restaurant,806 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > nicaraguan_restaurant,nicaraguan_restaurant,Nicaraguan Restaurant,4,food_and_drink,false,restaurant,319 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > panamanian_restaurant,panamanian_restaurant,Panamanian Restaurant,4,food_and_drink,false,restaurant,257 -food_and_drink > restaurant > latin_american_restaurant > central_american_restaurant > salvadoran_restaurant,salvadoran_restaurant,Salvadoran Restaurant,4,food_and_drink,false,restaurant,2477 -food_and_drink > restaurant > latin_american_restaurant > empanada_restaurant,empanada_restaurant,Empanada Restaurant,3,food_and_drink,false,restaurant,274 -food_and_drink > restaurant > latin_american_restaurant > mexican_restaurant,mexican_restaurant,Mexican Restaurant,3,food_and_drink,false,restaurant,211662 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant,south_american_restaurant,South American Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > argentine_restaurant,argentine_restaurant,Argentine Restaurant,4,food_and_drink,false,restaurant,4479 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > bolivian_restaurant,bolivian_restaurant,Bolivian Restaurant,4,food_and_drink,false,restaurant,153 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > brazilian_restaurant,brazilian_restaurant,Brazilian Restaurant,4,food_and_drink,false,restaurant,45435 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > chilean_restaurant,chilean_restaurant,Chilean Restaurant,4,food_and_drink,false,restaurant,297 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > colombian_restaurant,colombian_restaurant,Colombian Restaurant,4,food_and_drink,false,restaurant,3106 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > ecuadorian_restaurant,ecuadorian_restaurant,Ecuadorian Restaurant,4,food_and_drink,false,restaurant,1001 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > paraguayan_restaurant,paraguayan_restaurant,Paraguayan Restaurant,4,food_and_drink,false,restaurant,78 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > peruvian_restaurant,peruvian_restaurant,Peruvian Restaurant,4,food_and_drink,false,restaurant,9377 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > surinamese_restaurant,surinamese_restaurant,Surinamese Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > uruguayan_restaurant,uruguayan_restaurant,Uruguayan Restaurant,4,food_and_drink,false,restaurant,203 -food_and_drink > restaurant > latin_american_restaurant > south_american_restaurant > venezuelan_restaurant,venezuelan_restaurant,Venezuelan Restaurant,4,food_and_drink,false,restaurant,1698 -food_and_drink > restaurant > latin_american_restaurant > taco_restaurant,taco_restaurant,Taco Restaurant,3,food_and_drink,false,restaurant,42343 -food_and_drink > restaurant > latin_american_restaurant > texmex_restaurant,texmex_restaurant,Texmex Restaurant,3,food_and_drink,false,restaurant,7539 -food_and_drink > restaurant > meat_restaurant,meat_restaurant,Meat Restaurant,2,food_and_drink,false,restaurant,57 -food_and_drink > restaurant > meat_restaurant > barbecue_restaurant,barbecue_restaurant,Barbecue Restaurant,3,food_and_drink,false,restaurant,112256 -food_and_drink > restaurant > meat_restaurant > burger_restaurant,burger_restaurant,Burger Restaurant,3,food_and_drink,false,restaurant,158132 -food_and_drink > restaurant > meat_restaurant > cheesesteak_restaurant,cheesesteak_restaurant,Cheesesteak Restaurant,3,food_and_drink,false,restaurant,563 -food_and_drink > restaurant > meat_restaurant > chicken_restaurant,chicken_restaurant,Chicken Restaurant,3,food_and_drink,false,restaurant,95913 -food_and_drink > restaurant > meat_restaurant > chicken_wings_restaurant,chicken_wings_restaurant,Chicken Wings Restaurant,3,food_and_drink,false,restaurant,7157 -food_and_drink > restaurant > meat_restaurant > curry_sausage_restaurant,curry_sausage_restaurant,Curry Sausage Restaurant,3,food_and_drink,false,restaurant,2 -food_and_drink > restaurant > meat_restaurant > hot_dog_restaurant,hot_dog_restaurant,Hot Dog Restaurant,3,food_and_drink,false,restaurant,13550 -food_and_drink > restaurant > meat_restaurant > meatball_restaurant,meatball_restaurant,Meatball Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > rotisserie_chicken_restaurant,rotisserie_chicken_restaurant,Rotisserie Chicken Restaurant,3,food_and_drink,false,restaurant,5 -food_and_drink > restaurant > meat_restaurant > steakhouse,steakhouse,Steakhouse,3,food_and_drink,false,restaurant,62767 -food_and_drink > restaurant > meat_restaurant > venison_restaurant,venison_restaurant,Venison Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > meat_restaurant > wild_game_meats_restaurant,wild_game_meats_restaurant,Wild Game Meats Restaurant,3,food_and_drink,false,restaurant,1 -food_and_drink > restaurant > middle_eastern_restaurant,middle_eastern_restaurant,Middle Eastern Restaurant,2,food_and_drink,false,restaurant,16804 -food_and_drink > restaurant > middle_eastern_restaurant > arabian_restaurant,arabian_restaurant,Arabian Restaurant,3,food_and_drink,false,restaurant,3210 -food_and_drink > restaurant > middle_eastern_restaurant > armenian_restaurant,armenian_restaurant,Armenian Restaurant,3,food_and_drink,false,restaurant,414 -food_and_drink > restaurant > middle_eastern_restaurant > azerbaijani_restaurant,azerbaijani_restaurant,Azerbaijani Restaurant,3,food_and_drink,false,restaurant,60 -food_and_drink > restaurant > middle_eastern_restaurant > falafel_restaurant,falafel_restaurant,Falafel Restaurant,3,food_and_drink,false,restaurant,860 -food_and_drink > restaurant > middle_eastern_restaurant > georgian_restaurant,georgian_restaurant,Georgian Restaurant,3,food_and_drink,false,restaurant,1336 -food_and_drink > restaurant > middle_eastern_restaurant > israeli_restaurant,israeli_restaurant,Israeli Restaurant,3,food_and_drink,false,restaurant,288 -food_and_drink > restaurant > middle_eastern_restaurant > kofta_restaurant,kofta_restaurant,Kofta Restaurant,3,food_and_drink,false,restaurant,17 -food_and_drink > restaurant > middle_eastern_restaurant > kurdish_restaurant,kurdish_restaurant,Kurdish Restaurant,3,food_and_drink,false,restaurant,120 -food_and_drink > restaurant > middle_eastern_restaurant > lebanese_restaurant,lebanese_restaurant,Lebanese Restaurant,3,food_and_drink,false,restaurant,6717 -food_and_drink > restaurant > middle_eastern_restaurant > palestinian_restaurant,palestinian_restaurant,Palestinian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > persian_restaurant,persian_restaurant,Persian Restaurant,3,food_and_drink,false,restaurant,2564 -food_and_drink > restaurant > middle_eastern_restaurant > syrian_restaurant,syrian_restaurant,Syrian Restaurant,3,food_and_drink,false,restaurant,1230 -food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant,turkish_restaurant,Turkish Restaurant,3,food_and_drink,false,restaurant,35007 -food_and_drink > restaurant > middle_eastern_restaurant > turkish_restaurant > doner_kebab_restaurant,doner_kebab_restaurant,Doner Kebab Restaurant,4,food_and_drink,false,restaurant,24870 -food_and_drink > restaurant > middle_eastern_restaurant > turkmen_restaurant,turkmen_restaurant,Turkmen Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > middle_eastern_restaurant > yemenite_restaurant,yemenite_restaurant,Yemenite Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant,north_american_restaurant,North American Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > north_american_restaurant > american_restaurant,american_restaurant,American Restaurant,3,food_and_drink,false,restaurant,66136 -food_and_drink > restaurant > north_american_restaurant > american_restaurant > cajun_and_creole_restaurant,cajun_and_creole_restaurant,Cajun and Creole Restaurant,4,food_and_drink,false,restaurant,5107 -food_and_drink > restaurant > north_american_restaurant > american_restaurant > southern_american_restaurant,southern_american_restaurant,Southern American Restaurant,4,food_and_drink,false,restaurant,5958 -food_and_drink > restaurant > north_american_restaurant > canadian_restaurant,canadian_restaurant,Canadian Restaurant,3,food_and_drink,false,restaurant,1053 -food_and_drink > restaurant > north_american_restaurant > canadian_restaurant > poutinerie_restaurant,poutinerie_restaurant,Poutinerie Restaurant,4,food_and_drink,false,restaurant,42 -food_and_drink > restaurant > pacific_rim_restaurant,pacific_rim_restaurant,Pacific Rim Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > australian_restaurant,australian_restaurant,Australian Restaurant,3,food_and_drink,false,restaurant,1787 -food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant,melanesian_restaurant,Melanesian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > melanesian_restaurant > fijian_restaurant,fijian_restaurant,Fijian Restaurant,4,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant,micronesian_restaurant,Micronesian Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > micronesian_restaurant > guamanian_restaurant,guamanian_restaurant,Guamanian Restaurant,4,food_and_drink,false,restaurant,1 -food_and_drink > restaurant > pacific_rim_restaurant > new_zealand_restaurant,new_zealand_restaurant,New Zealand Restaurant,3,food_and_drink,false,restaurant, -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant,polynesian_restaurant,Polynesian Restaurant,3,food_and_drink,false,restaurant,178 -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant,hawaiian_restaurant,Hawaiian Restaurant,4,food_and_drink,false,restaurant,2486 -food_and_drink > restaurant > pacific_rim_restaurant > polynesian_restaurant > hawaiian_restaurant > poke_restaurant,poke_restaurant,Poke Restaurant,5,food_and_drink,false,restaurant,4620 -food_and_drink > restaurant > pop_up_restaurant,pop_up_restaurant,Pop Up Restaurant,2,food_and_drink,false,restaurant,97 -food_and_drink > restaurant > salad_bar,salad_bar,Salad Bar,2,food_and_drink,false,restaurant,12830 -food_and_drink > restaurant > seafood_restaurant,seafood_restaurant,Seafood Restaurant,2,food_and_drink,false,restaurant,144973 -food_and_drink > restaurant > seafood_restaurant > fish_and_chips_restaurant,fish_and_chips_restaurant,Fish and Chips Restaurant,3,food_and_drink,false,restaurant,17051 -food_and_drink > restaurant > seafood_restaurant > fish_restaurant,fish_restaurant,Fish Restaurant,3,food_and_drink,false,restaurant,43 -food_and_drink > restaurant > soul_food,soul_food,Soul Food,2,food_and_drink,false,restaurant,3087 -food_and_drink > restaurant > soup_restaurant,soup_restaurant,Soup Restaurant,2,food_and_drink,false,restaurant,13668 -food_and_drink > restaurant > special_diet_restaurant,special_diet_restaurant,Special Diet Restaurant,2,food_and_drink,false,restaurant, -food_and_drink > restaurant > special_diet_restaurant > acai_bowls,acai_bowls,Acai Bowls,3,food_and_drink,false,restaurant,355 -food_and_drink > restaurant > special_diet_restaurant > gluten_free_restaurant,gluten_free_restaurant,Gluten Free Restaurant,3,food_and_drink,false,restaurant,1227 -food_and_drink > restaurant > special_diet_restaurant > halal_restaurant,halal_restaurant,Halal Restaurant,3,food_and_drink,false,restaurant,7605 -food_and_drink > restaurant > special_diet_restaurant > health_food_restaurant,health_food_restaurant,Health Food Restaurant,3,food_and_drink,false,restaurant,9750 -food_and_drink > restaurant > special_diet_restaurant > jewish_restaurant,jewish_restaurant,Jewish Restaurant,3,food_and_drink,false,restaurant,54 -food_and_drink > restaurant > special_diet_restaurant > kosher_restaurant,kosher_restaurant,Kosher Restaurant,3,food_and_drink,false,restaurant,1280 -food_and_drink > restaurant > special_diet_restaurant > live_and_raw_food_restaurant,live_and_raw_food_restaurant,Live and Raw Food Restaurant,3,food_and_drink,false,restaurant,799 -food_and_drink > restaurant > special_diet_restaurant > molecular_gastronomy_restaurant,molecular_gastronomy_restaurant,Molecular Gastronomy Restaurant,3,food_and_drink,false,restaurant,336 -food_and_drink > restaurant > special_diet_restaurant > vegan_restaurant,vegan_restaurant,Vegan Restaurant,3,food_and_drink,false,restaurant,4033 -food_and_drink > restaurant > special_diet_restaurant > vegetarian_restaurant,vegetarian_restaurant,Vegetarian Restaurant,3,food_and_drink,false,restaurant,25774 -food_and_drink > restaurant > supper_club,supper_club,Supper Club,2,food_and_drink,false,restaurant,7 -food_and_drink > restaurant > theme_restaurant,theme_restaurant,Theme Restaurant,2,food_and_drink,false,restaurant,23210 -food_and_drink > restaurant > wrap_restaurant,wrap_restaurant,Wrap Restaurant,2,food_and_drink,false,restaurant,3 -geographic_entities,geographic_entities,Geographic Entities,0,geographic_entities,true,geographic_entities,176263 -geographic_entities > built_feature,built_feature,Built Feature,1,geographic_entities,true,built_feature, -geographic_entities > built_feature > bridge,bridge,Bridge,2,geographic_entities,true,bridge,43784 -geographic_entities > built_feature > building,building,Building,2,geographic_entities,true,building, -geographic_entities > built_feature > building > skyscraper,skyscraper,Skyscraper,3,geographic_entities,false,building,3 -geographic_entities > built_feature > dam,dam,Dam,2,geographic_entities,true,dam,2 -geographic_entities > built_feature > dam > weir,weir,Weir,3,geographic_entities,false,dam,2 -geographic_entities > built_feature > dock,dock,Dock,2,geographic_entities,true,dock, -geographic_entities > built_feature > garden,garden,Garden,2,geographic_entities,true,garden, -geographic_entities > built_feature > garden > botanical_garden,botanical_garden,Botanical Garden,3,geographic_entities,false,garden,10433 -geographic_entities > built_feature > garden > community_garden,community_garden,Community Garden,3,geographic_entities,false,garden,205 -geographic_entities > built_feature > lookout,lookout,Lookout,2,geographic_entities,false,built_feature,19 -geographic_entities > built_feature > marina,marina,Marina,2,geographic_entities,true,marina,19183 -geographic_entities > built_feature > pier,pier,Pier,2,geographic_entities,true,pier,4793 -geographic_entities > built_feature > quay,quay,Quay,2,geographic_entities,false,built_feature,531 -geographic_entities > land_feature,land_feature,Land Feature,1,geographic_entities,true,land_feature, -geographic_entities > land_feature > beach,beach,Beach,2,geographic_entities,true,beach,177958 -geographic_entities > land_feature > beach > beach_combing_area,beach_combing_area,Beach Combing Area,3,geographic_entities,false,beach, -geographic_entities > land_feature > canyon,canyon,Canyon,2,geographic_entities,true,canyon,12 -geographic_entities > land_feature > cave,cave,Cave,2,geographic_entities,false,land_feature,4432 -geographic_entities > land_feature > crater,crater,Crater,2,geographic_entities,false,land_feature, -geographic_entities > land_feature > desert,desert,Desert,2,geographic_entities,false,land_feature,47 -geographic_entities > land_feature > forest,forest,Forest,2,geographic_entities,true,forest,7854 -geographic_entities > land_feature > geologic_formation,geologic_formation,Geologic Formation,2,geographic_entities,false,land_feature,1 -geographic_entities > land_feature > hill,hill,Hill,2,geographic_entities,true,hill, -geographic_entities > land_feature > island,island,Island,2,geographic_entities,true,island,2613 -geographic_entities > land_feature > mountain,mountain,Mountain,2,geographic_entities,true,mountain,131189 -geographic_entities > land_feature > nature_reserve,nature_reserve,Nature Reserve,2,geographic_entities,true,nature_reserve,24277 -geographic_entities > land_feature > sand_dune,sand_dune,Sand Dune,2,geographic_entities,false,land_feature,10 -geographic_entities > land_feature > valley,valley,Valley,2,geographic_entities,true,valley, -geographic_entities > scenic_viewpoint,scenic_viewpoint,Scenic Viewpoint,1,geographic_entities,true,scenic_viewpoint, -geographic_entities > scenic_viewpoint > skyline,skyline,Skyline,2,geographic_entities,false,scenic_viewpoint,2 -geographic_entities > scenic_viewpoint > stargazing_area,stargazing_area,Stargazing Area,2,geographic_entities,false,scenic_viewpoint, -geographic_entities > water_feature,water_feature,Water Feature,1,geographic_entities,true,water_feature, -geographic_entities > water_feature > canal,canal,Canal,2,geographic_entities,true,canal,2621 -geographic_entities > water_feature > hot_springs,hot_springs,Hot Springs,2,geographic_entities,true,hot_springs,5642 -geographic_entities > water_feature > lake,lake,Lake,2,geographic_entities,true,lake,215556 -geographic_entities > water_feature > ocean,ocean,Ocean,2,geographic_entities,true,ocean, -geographic_entities > water_feature > river,river,River,2,geographic_entities,true,river,134916 -geographic_entities > water_feature > sea,sea,Sea,2,geographic_entities,true,sea, -geographic_entities > water_feature > waterfall,waterfall,Waterfall,2,geographic_entities,true,waterfall,8069 -health_care,health_care,Health Care,0,health_care,true,health_care,601038 -health_care > emergency_or_urgent_care_facility,emergency_or_urgent_care_facility,Emergency or Urgent Care Facility,1,health_care,true,emergency_or_urgent_care_facility,3986 -health_care > emergency_or_urgent_care_facility > ambulance_or_ems_service,ambulance_or_ems_service,Ambulance or EMS Service,2,health_care,false,emergency_or_urgent_care_facility,24238 -health_care > emergency_or_urgent_care_facility > emergency_department,emergency_department,Emergency Department,2,health_care,true,emergency_department,13985 -health_care > emergency_or_urgent_care_facility > urgent_care_clinic,urgent_care_clinic,Urgent Care Clinic,2,health_care,true,urgent_care_clinic,5530 -health_care > emergency_or_urgent_care_facility > walk_in_clinic,walk_in_clinic,Walk-In Clinic,2,health_care,true,walk_in_clinic,8395 -health_care > hospital,hospital,Hospital,1,health_care,true,hospital,483089 -health_care > hospital > general_hospital,general_hospital,General Hospital,2,health_care,true,general_hospital, -health_care > hospital > specialty_hospital,specialty_hospital,Specialty Hospital,2,health_care,true,specialty_hospital, -health_care > hospital > specialty_hospital > childrens_hospital,childrens_hospital,Children's Hospital,3,health_care,false,specialty_hospital,1175 -health_care > hospital > specialty_hospital > long_term_care_hospital,long_term_care_hospital,Long Term Care Hospital,3,health_care,false,specialty_hospital, -health_care > hospital > specialty_hospital > psychiatric_hospital,psychiatric_hospital,Psychiatric Hospital,3,health_care,false,specialty_hospital, -health_care > hospital > specialty_hospital > rehabilitation_hospital,rehabilitation_hospital,Rehabilitation Hospital,3,health_care,false,specialty_hospital, -health_care > hospital > specialty_hospital > veterans_hospital,veterans_hospital,Veterans Hospital,3,health_care,false,specialty_hospital, -health_care > medical_service,medical_service,Medical Service,1,health_care,true,medical_service, -health_care > medical_service > blood_and_plasma_donation_center,blood_and_plasma_donation_center,Blood and Plasma Donation Center,2,health_care,false,medical_service,8151 -health_care > medical_service > ems_training,ems_training,EMS Training,2,health_care,false,medical_service,394 -health_care > medical_service > health_insurance_office,health_insurance_office,Health Insurance Office,2,health_care,false,medical_service,10637 -health_care > medical_service > home_health_care,home_health_care,Home Health Care,2,health_care,false,medical_service,81007 -health_care > medical_service > hospice,hospice,Hospice,2,health_care,false,medical_service,10856 -health_care > medical_service > medical_billing,medical_billing,Medical Billing,2,health_care,false,medical_service,2550 -health_care > medical_service > medical_cannabis,medical_cannabis,Medical Cannabis,2,health_care,false,medical_service, -health_care > medical_service > medical_cannabis > cannabis_clinic,cannabis_clinic,Cannabis Clinic,3,health_care,false,medical_service,10589 -health_care > medical_service > medical_cannabis > cannabis_collective,cannabis_collective,Cannabis Collective,3,health_care,false,medical_service,16 -health_care > medical_service > medical_cannabis > medical_cannabis_referral,medical_cannabis_referral,Medical Cannabis Referral,3,health_care,false,medical_service,169 -health_care > medical_service > medical_service_organization,medical_service_organization,Medical Service Organization,2,health_care,false,medical_service,56259 -health_care > medical_service > medical_transportation,medical_transportation,Medical Transportation,2,health_care,false,medical_service,2932 -health_care > medical_service > sperm_clinic,sperm_clinic,Sperm Clinic,2,health_care,false,medical_service,37 -health_care > outpatient_care_facility,outpatient_care_facility,Outpatient Care Facility,1,health_care,true,outpatient_care_facility,210956 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic,behavioral_or_mental_health_clinic,Behavioral or Mental Health Clinic,2,health_care,true,behavioral_or_mental_health_clinic,32418 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service,behavioral_or_crisis_service,Behavioral or Crisis Service,3,health_care,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,health_care,false,behavioral_or_mental_health_clinic,459 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > crisis_intervention_service,crisis_intervention_service,Crisis Intervention Service,4,health_care,false,behavioral_or_mental_health_clinic,1111 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > stress_management_service,stress_management_service,Stress Management Service,4,health_care,false,behavioral_or_mental_health_clinic,28 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > behavioral_or_crisis_service > suicide_prevention_service,suicide_prevention_service,Suicide Prevention Service,4,health_care,false,behavioral_or_mental_health_clinic,2 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling,counseling,Counseling,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > family_counseling,family_counseling,Family Counseling,4,health_care,false,behavioral_or_mental_health_clinic,6168 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > marriage_or_relationship_counseling,marriage_or_relationship_counseling,Marriage or Relationship Counseling,4,health_care,false,behavioral_or_mental_health_clinic,7079 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > counseling > sex_therapy,sex_therapy,Sex Therapy,4,health_care,false,behavioral_or_mental_health_clinic,1720 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service,psychiatry_or_psychology_service,Psychiatry or Psychology Service,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry,psychiatry,Psychiatry,4,health_care,false,behavioral_or_mental_health_clinic,23040 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > child_psychiatry,child_psychiatry,Child Psychiatry,5,health_care,false,behavioral_or_mental_health_clinic,1568 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychiatry > geriatric_psychiatry,geriatric_psychiatry,Geriatric Psychiatry,5,health_care,false,behavioral_or_mental_health_clinic,48 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychoanalysis,psychoanalysis,Psychoanalysis,4,health_care,false,behavioral_or_mental_health_clinic,114 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology,psychology,Psychology,4,health_care,false,behavioral_or_mental_health_clinic,106517 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychology > sports_psychology,sports_psychology,Sports Psychology,5,health_care,false,behavioral_or_mental_health_clinic,306 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy,psychotherapy,Psychotherapy,4,health_care,false,behavioral_or_mental_health_clinic,50832 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > psychiatry_or_psychology_service > psychotherapy > art_therapy,art_therapy,Art Therapy,5,health_care,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,health_care,false,behavioral_or_mental_health_clinic,3178 -health_care > outpatient_care_facility > behavioral_or_mental_health_clinic > sophrology,sophrology,Sophrology,3,health_care,false,behavioral_or_mental_health_clinic, -health_care > outpatient_care_facility > complementary_and_alternative_medicine,complementary_and_alternative_medicine,Complementary and Alternative Medicine,2,health_care,true,complementary_and_alternative_medicine,19458 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > acupuncture,acupuncture,Acupuncture,3,health_care,false,complementary_and_alternative_medicine,44440 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > aromatherapy,aromatherapy,Aromatherapy,3,health_care,false,complementary_and_alternative_medicine,5367 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > ayurveda,ayurveda,Ayurveda,3,health_care,false,complementary_and_alternative_medicine,294 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > chiropractic,chiropractic,Chiropractic,3,health_care,false,complementary_and_alternative_medicine,112958 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > homeopathy,homeopathy,Homeopathy,3,health_care,false,complementary_and_alternative_medicine,1197 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > naturopathic_medicine,naturopathic_medicine,Naturopathic Medicine,3,health_care,false,complementary_and_alternative_medicine,145746 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > reflexology,reflexology,Reflexology,3,health_care,false,complementary_and_alternative_medicine,7363 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > reiki,reiki,Reiki,3,health_care,false,complementary_and_alternative_medicine,1473 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine,traditional_chinese_medicine,Traditional Chinese Medicine,3,health_care,false,complementary_and_alternative_medicine,145 -health_care > outpatient_care_facility > complementary_and_alternative_medicine > traditional_chinese_medicine > tui_na,tui_na,Tui Na,4,health_care,false,complementary_and_alternative_medicine,48 -health_care > outpatient_care_facility > dental_clinic,dental_clinic,Dental Clinic,2,health_care,true,dental_clinic,505874 -health_care > outpatient_care_facility > dental_clinic > cosmetic_dentistry,cosmetic_dentistry,Cosmetic Dentistry,3,health_care,false,dental_clinic,26945 -health_care > outpatient_care_facility > dental_clinic > dental_hygiene,dental_hygiene,Dental Hygiene,3,health_care,false,dental_clinic,189 -health_care > outpatient_care_facility > dental_clinic > endodontics,endodontics,Endodontics,3,health_care,false,dental_clinic,6970 -health_care > outpatient_care_facility > dental_clinic > general_dentistry,general_dentistry,General Dentistry,3,health_care,false,dental_clinic,114479 -health_care > outpatient_care_facility > dental_clinic > orthodontics,orthodontics,Orthodontics,3,health_care,false,dental_clinic,36749 -health_care > outpatient_care_facility > dental_clinic > pediatric_dentistry,pediatric_dentistry,Pediatric Dentistry,3,health_care,false,dental_clinic,17614 -health_care > outpatient_care_facility > dental_clinic > periodontics,periodontics,Periodontics,3,health_care,false,dental_clinic,5308 -health_care > outpatient_care_facility > dental_clinic > prosthodontics,prosthodontics,Prosthodontics,3,health_care,false,dental_clinic,3166 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service,diagnostics_imaging_or_lab_service,Diagnostics Imaging or Lab Service,2,health_care,true,diagnostics_imaging_or_lab_service, -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging,diagnostic_imaging,Diagnostic Imaging,3,health_care,false,diagnostics_imaging_or_lab_service,24563 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > diagnostic_imaging > ultrasound_imaging,ultrasound_imaging,Ultrasound Imaging,4,health_care,false,diagnostics_imaging_or_lab_service,113 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > doctors_office,doctors_office,Doctors Office,3,health_care,false,diagnostics_imaging_or_lab_service,356733 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing,laboratory_testing,Laboratory Testing,3,health_care,false,diagnostics_imaging_or_lab_service,83843 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > laboratory_testing > paternity_testing,paternity_testing,Paternity Testing,4,health_care,false,diagnostics_imaging_or_lab_service,221 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > pathology,pathology,Pathology,3,health_care,false,diagnostics_imaging_or_lab_service,6003 -health_care > outpatient_care_facility > diagnostics_imaging_or_lab_service > radiology,radiology,Radiology,3,health_care,false,diagnostics_imaging_or_lab_service,13900 -health_care > outpatient_care_facility > pediatric_clinic,pediatric_clinic,Pediatric Clinic,2,health_care,true,pediatric_clinic,58503 -health_care > outpatient_care_facility > pediatric_clinic > general_pediatrics,general_pediatrics,General Pediatrics,3,health_care,false,pediatric_clinic, -health_care > outpatient_care_facility > pediatric_clinic > pediatric_anesthesiology,pediatric_anesthesiology,Pediatric Anesthesiology,3,health_care,false,pediatric_clinic,111 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_cardiology,pediatric_cardiology,Pediatric Cardiology,3,health_care,false,pediatric_clinic,2010 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_endocrinology,pediatric_endocrinology,Pediatric Endocrinology,3,health_care,false,pediatric_clinic,602 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_gastroenterology,pediatric_gastroenterology,Pediatric Gastroenterology,3,health_care,false,pediatric_clinic,695 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_infectious_disease,pediatric_infectious_disease,Pediatric Infectious Disease,3,health_care,false,pediatric_clinic,20 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_nephrology,pediatric_nephrology,Pediatric Nephrology,3,health_care,false,pediatric_clinic,232 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_neurology,pediatric_neurology,Pediatric Neurology,3,health_care,false,pediatric_clinic,561 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_oncology,pediatric_oncology,Pediatric Oncology,3,health_care,false,pediatric_clinic,465 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_pulmonology,pediatric_pulmonology,Pediatric Pulmonology,3,health_care,false,pediatric_clinic,676 -health_care > outpatient_care_facility > pediatric_clinic > pediatric_radiology,pediatric_radiology,Pediatric Radiology,3,health_care,false,pediatric_clinic,69 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation,physical_medicine_and_rehabilitation,Physical Medicine and Rehabilitation,2,health_care,true,physical_medicine_and_rehabilitation, -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > animal_assisted_therapy,animal_assisted_therapy,Animal Assisted Therapy,3,health_care,false,physical_medicine_and_rehabilitation,12 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > occupational_therapy,occupational_therapy,Occupational Therapy,3,health_care,false,physical_medicine_and_rehabilitation,13083 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > orthotics,orthotics,Orthotics,3,health_care,false,physical_medicine_and_rehabilitation,1210 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > physical_therapy,physical_therapy,Physical Therapy,3,health_care,false,physical_medicine_and_rehabilitation,209566 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > prosthetics,prosthetics,Prosthetics,3,health_care,false,physical_medicine_and_rehabilitation,7755 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > psychomotor_therapy,psychomotor_therapy,Psychomotor Therapy,3,health_care,false,physical_medicine_and_rehabilitation,3 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center,rehabilitation_center,Rehabilitation Center,3,health_care,false,physical_medicine_and_rehabilitation,6536 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > rehabilitation_center > addiction_rehabilitation_center,addiction_rehabilitation_center,Addiction Rehabilitation Center,4,health_care,false,physical_medicine_and_rehabilitation,5326 -health_care > outpatient_care_facility > physical_medicine_and_rehabilitation > speech_therapy,speech_therapy,Speech Therapy,3,health_care,false,physical_medicine_and_rehabilitation,18793 -health_care > outpatient_care_facility > primary_care_or_general_clinic,primary_care_or_general_clinic,Primary Care or General Clinic,2,health_care,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,health_care,false,primary_care_or_general_clinic,1068 -health_care > outpatient_care_facility > primary_care_or_general_clinic > concierge_medicine,concierge_medicine,Concierge Medicine,3,health_care,false,primary_care_or_general_clinic,80 -health_care > outpatient_care_facility > primary_care_or_general_clinic > family_practice,family_practice,Family Practice,3,health_care,false,primary_care_or_general_clinic,61513 -health_care > outpatient_care_facility > primary_care_or_general_clinic > mobile_clinic,mobile_clinic,Mobile Clinic,3,health_care,false,primary_care_or_general_clinic,307 -health_care > outpatient_care_facility > primary_care_or_general_clinic > public_health_clinic,public_health_clinic,Public Health Clinic,3,health_care,false,primary_care_or_general_clinic,42136 -health_care > outpatient_care_facility > primary_care_or_general_clinic > storefront_clinic,storefront_clinic,Storefront Clinic,3,health_care,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,health_care,true,reproductive_perinatal_and_womens_care,12735 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > doula_service,doula_service,Doula Service,3,health_care,false,reproductive_perinatal_and_womens_care,330 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > lactation_service,lactation_service,Lactation Service,3,health_care,false,reproductive_perinatal_and_womens_care,159 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > maternity_center,maternity_center,Maternity Center,3,health_care,false,reproductive_perinatal_and_womens_care,7257 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > midwifery,midwifery,Midwifery,3,health_care,false,reproductive_perinatal_and_womens_care,2161 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > obstetrics_and_gynecology,obstetrics_and_gynecology,Obstetrics and Gynecology,3,health_care,false,reproductive_perinatal_and_womens_care,66963 -health_care > outpatient_care_facility > reproductive_perinatal_and_womens_care > prenatal_and_perinatal_care,prenatal_and_perinatal_care,Prenatal and Perinatal Care,3,health_care,false,reproductive_perinatal_and_womens_care,9421 -health_care > outpatient_care_facility > specialized_health_care,specialized_health_care,Specialized Health Care,2,health_care,true,specialized_health_care,9268 -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine,cardiovascular_and_vascular_medicine,Cardiovascular and Vascular Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > cardiology,cardiology,Cardiology,4,health_care,false,specialized_health_care,34058 -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > phlebology,phlebology,Phlebology,4,health_care,false,specialized_health_care,43 -health_care > outpatient_care_facility > specialized_health_care > cardiovascular_and_vascular_medicine > vascular_medicine,vascular_medicine,Vascular Medicine,4,health_care,false,specialized_health_care,369 -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat,ear_nose_and_throat,Ear Nose and Throat,3,health_care,false,specialized_health_care,19067 -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > audiology,audiology,Audiology,4,health_care,false,specialized_health_care,18087 -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology,otolaryngology,Otolaryngology,4,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > neurotology,neurotology,Neurotology,5,health_care,false,specialized_health_care,12 -health_care > outpatient_care_facility > specialized_health_care > ear_nose_and_throat > otolaryngology > otology,otology,Otology,5,health_care,false,specialized_health_care,274 -health_care > outpatient_care_facility > specialized_health_care > endocrinology,endocrinology,Endocrinology,3,health_care,false,specialized_health_care,8422 -health_care > outpatient_care_facility > specialized_health_care > gastroenterology,gastroenterology,Gastroenterology,3,health_care,false,specialized_health_care,17532 -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > endoscopy,endoscopy,Endoscopy,4,health_care,false,specialized_health_care,38 -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > hepatology,hepatology,Hepatology,4,health_care,false,specialized_health_care,192 -health_care > outpatient_care_facility > specialized_health_care > gastroenterology > proctology,proctology,Proctology,4,health_care,false,specialized_health_care,2113 -health_care > outpatient_care_facility > specialized_health_care > genetics,genetics,Genetics,3,health_care,false,specialized_health_care,106 -health_care > outpatient_care_facility > specialized_health_care > genetics > gerontology,gerontology,Gerontology,4,health_care,false,specialized_health_care,835 -health_care > outpatient_care_facility > specialized_health_care > geriatric_medicine,geriatric_medicine,Geriatric Medicine,3,health_care,false,specialized_health_care,1561 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine,internal_medicine,Internal Medicine,3,health_care,false,specialized_health_care,34727 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > allergy_and_immunology,allergy_and_immunology,Allergy and Immunology,4,health_care,false,specialized_health_care,6978 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease,infectious_disease,Infectious Disease,4,health_care,false,specialized_health_care,4177 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > infectious_disease > tropical_medicine,tropical_medicine,Tropical Medicine,5,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology,oncology,Oncology,4,health_care,false,specialized_health_care,16799 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > oncology > hematology,hematology,Hematology,5,health_care,false,specialized_health_care,4399 -health_care > outpatient_care_facility > specialized_health_care > internal_medicine > rheumatology,rheumatology,Rheumatology,4,health_care,false,specialized_health_care,5307 -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care,medical_skin_care,Medical Skin Care,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > aesthetic_medicine,aesthetic_medicine,Aesthetic Medicine,4,health_care,false,specialized_health_care,290 -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > body_contouring,body_contouring,Body Contouring,4,health_care,false,specialized_health_care,455 -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology,dermatology,Dermatology,4,health_care,false,specialized_health_care,46464 -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > dermatology > immunodermatology,immunodermatology,Immunodermatology,5,health_care,false,specialized_health_care,30 -health_care > outpatient_care_facility > specialized_health_care > medical_skin_care > tattoo_removal,tattoo_removal,Tattoo Removal,4,health_care,false,specialized_health_care,530 -health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine,musculoskeletal_medicine,Musculoskeletal Medicine,3,health_care,false,specialized_health_care, -health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > orthopedics,orthopedics,Orthopedics,4,health_care,false,specialized_health_care,42337 -health_care > outpatient_care_facility > specialized_health_care > musculoskeletal_medicine > podiatry,podiatry,Podiatry,4,health_care,false,specialized_health_care,43472 -health_care > outpatient_care_facility > specialized_health_care > nephrology,nephrology,Nephrology,3,health_care,false,specialized_health_care,6341 -health_care > outpatient_care_facility > specialized_health_care > neurology,neurology,Neurology,3,health_care,false,specialized_health_care,21495 -health_care > outpatient_care_facility > specialized_health_care > neurology > neuropathology,neuropathology,Neuropathology,4,health_care,false,specialized_health_care,2262 -health_care > outpatient_care_facility > specialized_health_care > nursing,nursing,Nursing,3,health_care,false,specialized_health_care,40849 -health_care > outpatient_care_facility > specialized_health_care > osteopathic_medicine,osteopathic_medicine,Osteopathic Medicine,3,health_care,false,specialized_health_care,22494 -health_care > outpatient_care_facility > specialized_health_care > pain_management,pain_management,Pain Management,3,health_care,false,specialized_health_care,7748 -health_care > outpatient_care_facility > specialized_health_care > pain_management > anesthesiology,anesthesiology,Anesthesiology,4,health_care,false,specialized_health_care,7715 -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine,preventive_medicine,Preventive Medicine,3,health_care,false,specialized_health_care,89 -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > environmental_medicine,environmental_medicine,Environmental Medicine,4,health_care,false,specialized_health_care,5 -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > hyperbaric_medicine,hyperbaric_medicine,Hyperbaric Medicine,4,health_care,false,specialized_health_care,183 -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > occupational_medicine,occupational_medicine,Occupational Medicine,4,health_care,false,specialized_health_care,2036 -health_care > outpatient_care_facility > specialized_health_care > preventive_medicine > toxicology,toxicology,Toxicology,4,health_care,false,specialized_health_care,35 -health_care > outpatient_care_facility > specialized_health_care > pulmonology,pulmonology,Pulmonology,3,health_care,false,specialized_health_care,7869 -health_care > outpatient_care_facility > specialized_health_care > pulmonology > sleep_medicine,sleep_medicine,Sleep Medicine,4,health_care,false,specialized_health_care,2315 -health_care > outpatient_care_facility > specialized_health_care > sports_medicine,sports_medicine,Sports Medicine,3,health_care,false,specialized_health_care,6605 -health_care > outpatient_care_facility > specialized_health_care > urology,urology,Urology,3,health_care,false,specialized_health_care,18014 -health_care > outpatient_care_facility > vision_or_eye_care_clinic,vision_or_eye_care_clinic,Vision or Eye Care Clinic,2,health_care,true,vision_or_eye_care_clinic,33767 -health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology,ophthalmology,Ophthalmology,3,health_care,false,vision_or_eye_care_clinic,14478 -health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > refractive_surgery_or_lasik,refractive_surgery_or_lasik,Refractive Surgery or Lasik,4,health_care,false,vision_or_eye_care_clinic,1800 -health_care > outpatient_care_facility > vision_or_eye_care_clinic > ophthalmology > retina_services,retina_services,Retina Services,4,health_care,false,vision_or_eye_care_clinic,233 -health_care > outpatient_care_facility > vision_or_eye_care_clinic > optometry,optometry,Optometry,3,health_care,false,vision_or_eye_care_clinic,78658 -health_care > specialized_medical_facility,specialized_medical_facility,Specialized Medical Facility,1,health_care,true,specialized_medical_facility, -health_care > specialized_medical_facility > abortion_clinic,abortion_clinic,Abortion Clinic,2,health_care,false,specialized_medical_facility,453 -health_care > specialized_medical_facility > abuse_and_addiction_treatment_center,abuse_and_addiction_treatment_center,Abuse and Addiction Treatment Center,2,health_care,false,specialized_medical_facility,19606 -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,health_care,false,specialized_medical_facility,4955 -health_care > specialized_medical_facility > cancer_treatment_center,cancer_treatment_center,Cancer Treatment Center,2,health_care,false,specialized_medical_facility,1946 -health_care > specialized_medical_facility > dialysis_clinic,dialysis_clinic,Dialysis Clinic,2,health_care,false,specialized_medical_facility,12922 -health_care > specialized_medical_facility > eating_disorder_treatment_center,eating_disorder_treatment_center,Eating Disorder Treatment Center,2,health_care,false,specialized_medical_facility,215 -health_care > specialized_medical_facility > fertility_clinic,fertility_clinic,Fertility Clinic,2,health_care,false,specialized_medical_facility,6919 -health_care > specialized_medical_facility > organ_and_tissue_donor_service,organ_and_tissue_donor_service,Organ and Tissue Donor Service,2,health_care,false,specialized_medical_facility,40 -health_care > specialized_medical_facility > surgery,surgery,Surgery,2,health_care,true,surgery,34095 -health_care > specialized_medical_facility > surgery > cardiothoracic_surgery,cardiothoracic_surgery,Cardiothoracic Surgery,3,health_care,false,surgery,2528 -health_care > specialized_medical_facility > surgery > oral_and_maxillofacial_surgery,oral_and_maxillofacial_surgery,Oral and Maxillofacial Surgery,3,health_care,false,surgery,13467 -health_care > specialized_medical_facility > surgery > orthopedic_surgery,orthopedic_surgery,Orthopedic Surgery,3,health_care,false,surgery, -health_care > specialized_medical_facility > surgery > orthopedic_surgery > pediatric_orthopedic_surgery,pediatric_orthopedic_surgery,Pediatric Orthopedic Surgery,4,health_care,false,surgery,504 -health_care > specialized_medical_facility > surgery > orthopedic_surgery > spine_surgery,spine_surgery,Spine Surgery,4,health_care,false,surgery,194 -health_care > specialized_medical_facility > surgery > pediatric_surgery,pediatric_surgery,Pediatric Surgery,3,health_care,false,surgery,480 -health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery,plastic_and_reconstructive_surgery,Plastic and Reconstructive Surgery,3,health_care,false,surgery,33857 -health_care > specialized_medical_facility > surgery > plastic_and_reconstructive_surgery > cosmetic_surgery,cosmetic_surgery,Cosmetic Surgery,4,health_care,false,surgery,2580 -health_care > specialized_medical_facility > surgery > surgery_center,surgery_center,Surgery Center,3,health_care,false,surgery,10399 -lifestyle_services,lifestyle_services,Lifestyle Services,0,lifestyle_services,true,lifestyle_services, -lifestyle_services > animal_or_pet_service,animal_or_pet_service,Animal or Pet Service,1,lifestyle_services,true,animal_or_pet_service,80894 -lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue,animal_adoption_or_rescue,Animal Adoption or Rescue,2,lifestyle_services,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,lifestyle_services,false,animal_or_pet_service,5740 -lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > animal_shelter,animal_shelter,Animal Shelter,3,lifestyle_services,false,animal_or_pet_service,27738 -lifestyle_services > animal_or_pet_service > animal_adoption_or_rescue > pet_adoption,pet_adoption,Pet Adoption,3,lifestyle_services,false,animal_or_pet_service,1408 -lifestyle_services > animal_or_pet_service > equine_service,equine_service,Equine Service,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > equine_service > farrier_service,farrier_service,Farrier Service,3,lifestyle_services,false,animal_or_pet_service,30 -lifestyle_services > animal_or_pet_service > equine_service > horse_boarding,horse_boarding,Horse Boarding,3,lifestyle_services,false,animal_or_pet_service,16133 -lifestyle_services > animal_or_pet_service > equine_service > horse_trainer,horse_trainer,Horse Trainer,3,lifestyle_services,false,animal_or_pet_service,5769 -lifestyle_services > animal_or_pet_service > pet_breeder,pet_breeder,Pet Breeder,2,lifestyle_services,false,animal_or_pet_service,27294 -lifestyle_services > animal_or_pet_service > pet_care_service,pet_care_service,Pet Care Service,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > pet_care_service > aquarium_service,aquarium_service,Aquarium Service,3,lifestyle_services,false,animal_or_pet_service,158 -lifestyle_services > animal_or_pet_service > pet_care_service > dog_walker,dog_walker,Dog Walker,3,lifestyle_services,false,animal_or_pet_service,5740 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_boarding,pet_boarding,Pet Boarding,3,lifestyle_services,false,animal_or_pet_service,18459 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_groomer,pet_groomer,Pet Groomer,3,lifestyle_services,false,animal_or_pet_service,97813 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_sitting,pet_sitting,Pet Sitting,3,lifestyle_services,false,animal_or_pet_service,12840 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_training,pet_training,Pet Training,3,lifestyle_services,false,animal_or_pet_service,1211 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_training > dog_trainer,dog_trainer,Dog Trainer,4,lifestyle_services,false,animal_or_pet_service,24722 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_transportation,pet_transportation,Pet Transportation,3,lifestyle_services,false,animal_or_pet_service,58 -lifestyle_services > animal_or_pet_service > pet_care_service > pet_waste_removal,pet_waste_removal,Pet Waste Removal,3,lifestyle_services,false,animal_or_pet_service,54 -lifestyle_services > animal_or_pet_service > pet_cemetery_and_crematorium_service,pet_cemetery_and_crematorium_service,Pet Cemetery and Crematorium Service,2,lifestyle_services,false,animal_or_pet_service,370 -lifestyle_services > animal_or_pet_service > pet_insurance,pet_insurance,Pet Insurance,2,lifestyle_services,false,animal_or_pet_service,27 -lifestyle_services > animal_or_pet_service > pet_photography,pet_photography,Pet Photography,2,lifestyle_services,false,animal_or_pet_service,71 -lifestyle_services > animal_or_pet_service > veterinary_care,veterinary_care,Veterinary Care,2,lifestyle_services,false,animal_or_pet_service, -lifestyle_services > animal_or_pet_service > veterinary_care > animal_hospital,animal_hospital,Animal Hospital,3,lifestyle_services,false,animal_or_pet_service,1966 -lifestyle_services > animal_or_pet_service > veterinary_care > animal_physical_therapy,animal_physical_therapy,Animal Physical Therapy,3,lifestyle_services,false,animal_or_pet_service,17 -lifestyle_services > animal_or_pet_service > veterinary_care > emergency_pet_hospital,emergency_pet_hospital,Emergency Pet Hospital,3,lifestyle_services,false,animal_or_pet_service,579 -lifestyle_services > animal_or_pet_service > veterinary_care > holistic_animal_care,holistic_animal_care,Holistic Animal Care,3,lifestyle_services,false,animal_or_pet_service,77 -lifestyle_services > animal_or_pet_service > veterinary_care > pet_hospice,pet_hospice,Pet Hospice,3,lifestyle_services,false,animal_or_pet_service,1114 -lifestyle_services > animal_or_pet_service > veterinary_care > veterinarian,veterinarian,Veterinarian,3,lifestyle_services,false,animal_or_pet_service,193950 -lifestyle_services > food_service,food_service,Food Service,1,lifestyle_services,true,food_service, -lifestyle_services > food_service > food_consultant,food_consultant,Food Consultant,2,lifestyle_services,false,food_service,2837 -lifestyle_services > food_service > food_delivery_service,food_delivery_service,Food Delivery Service,2,lifestyle_services,false,food_service,56168 -lifestyle_services > food_service > food_delivery_service > pizza_delivery_service,pizza_delivery_service,Pizza Delivery Service,3,lifestyle_services,false,food_service,7738 -lifestyle_services > personal_or_beauty_service,personal_or_beauty_service,Personal or Beauty Service,1,lifestyle_services,true,personal_or_beauty_service,34051 -lifestyle_services > personal_or_beauty_service > acne_treatment,acne_treatment,Acne Treatment,2,lifestyle_services,false,personal_or_beauty_service,79 -lifestyle_services > personal_or_beauty_service > barber,barber,Barber,2,lifestyle_services,false,personal_or_beauty_service,385973 -lifestyle_services > personal_or_beauty_service > barber > mens_grooming_salon,mens_grooming_salon,Men's Grooming Salon,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > beauty_salon,beauty_salon,Beauty Salon,2,lifestyle_services,false,personal_or_beauty_service,1238909 -lifestyle_services > personal_or_beauty_service > beauty_salon > teeth_jewelry_service,teeth_jewelry_service,Teeth Jewelry Service,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification,body_modification,Body Modification,2,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > body_art,body_art,Body Art,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > mehndi_henna,mehndi_henna,Mehndi Henna,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > scalp_micropigmentation,scalp_micropigmentation,Scalp Micropigmentation,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing,tattoo_and_piercing,Tattoo and Piercing,3,lifestyle_services,false,personal_or_beauty_service,176733 -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > piercing,piercing,Piercing,4,lifestyle_services,false,personal_or_beauty_service,1931 -lifestyle_services > personal_or_beauty_service > body_modification > tattoo_and_piercing > tattoo,tattoo,Tattoo,4,lifestyle_services,false,personal_or_beauty_service,8672 -lifestyle_services > personal_or_beauty_service > eyebrow_service,eyebrow_service,Eyebrow Service,2,lifestyle_services,false,personal_or_beauty_service,828 -lifestyle_services > personal_or_beauty_service > eyelash_service,eyelash_service,Eyelash Service,2,lifestyle_services,false,personal_or_beauty_service,4531 -lifestyle_services > personal_or_beauty_service > foot_care,foot_care,Foot Care,2,lifestyle_services,false,personal_or_beauty_service,541 -lifestyle_services > personal_or_beauty_service > hair_removal,hair_removal,Hair Removal,2,lifestyle_services,false,personal_or_beauty_service,12425 -lifestyle_services > personal_or_beauty_service > hair_removal > laser_hair_removal,laser_hair_removal,Laser Hair Removal,3,lifestyle_services,false,personal_or_beauty_service,19491 -lifestyle_services > personal_or_beauty_service > hair_removal > sugaring,sugaring,Sugaring,3,lifestyle_services,false,personal_or_beauty_service,1417 -lifestyle_services > personal_or_beauty_service > hair_removal > threading_service,threading_service,Threading Service,3,lifestyle_services,false,personal_or_beauty_service,3425 -lifestyle_services > personal_or_beauty_service > hair_removal > waxing,waxing,Waxing,3,lifestyle_services,false,personal_or_beauty_service,15196 -lifestyle_services > personal_or_beauty_service > hair_replacement,hair_replacement,Hair Replacement,2,lifestyle_services,false,personal_or_beauty_service,6940 -lifestyle_services > personal_or_beauty_service > hair_replacement > hair_extensions,hair_extensions,Hair Extensions,3,lifestyle_services,false,personal_or_beauty_service,9275 -lifestyle_services > personal_or_beauty_service > hair_replacement > hair_loss_center,hair_loss_center,Hair Loss Center,3,lifestyle_services,false,personal_or_beauty_service,943 -lifestyle_services > personal_or_beauty_service > hair_replacement > wig_hairpiece_service,wig_hairpiece_service,Wig Hairpiece Service,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_salon,hair_salon,Hair Salon,2,lifestyle_services,false,personal_or_beauty_service,619934 -lifestyle_services > personal_or_beauty_service > hair_salon > blow_dry_blow_out_service,blow_dry_blow_out_service,Blow Dry Blow Out Service,3,lifestyle_services,false,personal_or_beauty_service,413 -lifestyle_services > personal_or_beauty_service > hair_salon > hair_color_bar,hair_color_bar,Hair Color Bar,3,lifestyle_services,false,personal_or_beauty_service, -lifestyle_services > personal_or_beauty_service > hair_salon > hair_stylist,hair_stylist,Hair Stylist,3,lifestyle_services,false,personal_or_beauty_service,12601 -lifestyle_services > personal_or_beauty_service > hair_salon > kids_hair_salon,kids_hair_salon,Kids Hair Salon,3,lifestyle_services,false,personal_or_beauty_service,2069 -lifestyle_services > personal_or_beauty_service > image_consultant,image_consultant,Image Consultant,2,lifestyle_services,false,personal_or_beauty_service,3462 -lifestyle_services > personal_or_beauty_service > life_coach,life_coach,Life Coach,2,lifestyle_services,false,personal_or_beauty_service,30912 -lifestyle_services > personal_or_beauty_service > matchmaker,matchmaker,Matchmaker,2,lifestyle_services,false,personal_or_beauty_service,403 -lifestyle_services > personal_or_beauty_service > nail_salon,nail_salon,Nail Salon,2,lifestyle_services,false,personal_or_beauty_service,240060 -lifestyle_services > personal_or_beauty_service > shoe_repair,shoe_repair,Shoe Repair,2,lifestyle_services,false,personal_or_beauty_service,15752 -lifestyle_services > personal_or_beauty_service > shoe_shining_service,shoe_shining_service,Shoe Shining Service,2,lifestyle_services,false,personal_or_beauty_service,60 -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup,skin_care_and_makeup,Skin Care and Makeup,2,lifestyle_services,false,personal_or_beauty_service,78561 -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > esthetician,esthetician,Esthetician,3,lifestyle_services,false,personal_or_beauty_service,381 -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > makeup_artist,makeup_artist,Makeup Artist,3,lifestyle_services,false,personal_or_beauty_service,37505 -lifestyle_services > personal_or_beauty_service > skin_care_and_makeup > permanent_makeup,permanent_makeup,Permanent Makeup,3,lifestyle_services,false,personal_or_beauty_service,1844 -lifestyle_services > personal_or_beauty_service > tanning_salon,tanning_salon,Tanning Salon,2,lifestyle_services,false,personal_or_beauty_service,34112 -lifestyle_services > personal_or_beauty_service > tanning_salon > spray_tanning,spray_tanning,Spray Tanning,3,lifestyle_services,false,personal_or_beauty_service,881 -lifestyle_services > personal_or_beauty_service > tanning_salon > tanning_bed,tanning_bed,Tanning Bed,3,lifestyle_services,false,personal_or_beauty_service,155 -lifestyle_services > personal_or_beauty_service > teeth_whitening,teeth_whitening,Teeth Whitening,2,lifestyle_services,false,personal_or_beauty_service,2748 -lifestyle_services > wellness_service,wellness_service,Wellness Service,1,lifestyle_services,true,wellness_service,6714 -lifestyle_services > wellness_service > colonic_hydrotherapy,colonic_hydrotherapy,Colonic Hydrotherapy,2,lifestyle_services,false,wellness_service,75 -lifestyle_services > wellness_service > cryotherapy,cryotherapy,Cryotherapy,2,lifestyle_services,false,wellness_service,244 -lifestyle_services > wellness_service > halotherapy,halotherapy,Halotherapy,2,lifestyle_services,false,wellness_service,35 -lifestyle_services > wellness_service > health_and_wellness_club,health_and_wellness_club,Health and Wellness Club,2,lifestyle_services,false,wellness_service,12729 -lifestyle_services > wellness_service > health_coaching,health_coaching,Health Coaching,2,lifestyle_services,false,wellness_service,7956 -lifestyle_services > wellness_service > hydrotherapy,hydrotherapy,Hydrotherapy,2,lifestyle_services,false,wellness_service,22 -lifestyle_services > wellness_service > iv_hydration,iv_hydration,IV Hydration,2,lifestyle_services,false,wellness_service,304 -lifestyle_services > wellness_service > massage_therapy,massage_therapy,Massage Therapy,2,lifestyle_services,false,wellness_service,184871 -lifestyle_services > wellness_service > meditation_center,meditation_center,Meditation Center,2,lifestyle_services,false,wellness_service,10080 -lifestyle_services > wellness_service > nutrition_service,nutrition_service,Nutrition Service,2,lifestyle_services,false,wellness_service,62884 -lifestyle_services > wellness_service > oxygen_bar,oxygen_bar,Oxygen Bar,2,lifestyle_services,false,wellness_service,14 -lifestyle_services > wellness_service > public_bath_house,public_bath_house,Public Bath House,2,lifestyle_services,false,wellness_service,639 -lifestyle_services > wellness_service > public_bath_house > onsen,onsen,Onsen,3,lifestyle_services,false,wellness_service,4698 -lifestyle_services > wellness_service > public_bath_house > turkish_bath,turkish_bath,Turkish Bath,3,lifestyle_services,false,wellness_service, -lifestyle_services > wellness_service > sauna,sauna,Sauna,2,lifestyle_services,false,wellness_service,758 -lifestyle_services > wellness_service > snuggle_service,snuggle_service,Snuggle Service,2,lifestyle_services,false,wellness_service,4 -lifestyle_services > wellness_service > spa,spa,Spa,2,lifestyle_services,false,wellness_service,614847 -lifestyle_services > wellness_service > spa > day_spa,day_spa,Day Spa,3,lifestyle_services,false,wellness_service,31000 -lifestyle_services > wellness_service > spa > float_spa,float_spa,Float Spa,3,lifestyle_services,false,wellness_service,57 -lifestyle_services > wellness_service > spa > health_spa,health_spa,Health Spa,3,lifestyle_services,false,wellness_service,18157 -lifestyle_services > wellness_service > spa > medical_spa,medical_spa,Medical Spa,3,lifestyle_services,false,wellness_service,51755 -lifestyle_services > wellness_service > weight_loss_center,weight_loss_center,Weight Loss Center,2,lifestyle_services,false,wellness_service,22720 -lodging,lodging,Lodging,0,lodging,true,lodging,430223 -lodging > bed_and_breakfast,bed_and_breakfast,Bed and Breakfast,1,lodging,true,bed_and_breakfast,155160 -lodging > cabin,cabin,Cabin,1,lodging,false,lodging,38975 -lodging > campground,campground,Campground,1,lodging,true,campground,104128 -lodging > cottage,cottage,Cottage,1,lodging,false,lodging,39784 -lodging > country_house,country_house,Country House,1,lodging,false,lodging,41 -lodging > holiday_park,holiday_park,Holiday Park,1,lodging,false,lodging,75 -lodging > hostel,hostel,Hostel,1,lodging,false,lodging,58920 -lodging > hotel,hotel,Hotel,1,lodging,true,hotel,1172978 -lodging > hotel > motel,motel,Motel,2,lodging,false,hotel,31137 -lodging > houseboat,houseboat,Houseboat,1,lodging,false,lodging,15 -lodging > inn,inn,Inn,1,lodging,true,inn,25854 -lodging > lodge,lodge,Lodge,1,lodging,false,lodging,68594 -lodging > mountain_hut,mountain_hut,Mountain Hut,1,lodging,false,lodging,144 -lodging > private_lodging,private_lodging,Private Lodging,1,lodging,true,private_lodging, -lodging > private_lodging > guest_house,guest_house,Guest House,2,lodging,false,private_lodging,4329 -lodging > private_lodging > holiday_rental_home,holiday_rental_home,Holiday Rental Home,2,lodging,false,private_lodging,205296 -lodging > resort,resort,Resort,1,lodging,true,resort,102837 -lodging > resort > beach_resort,beach_resort,Beach Resort,2,lodging,false,resort,7942 -lodging > resort > ski_resort,ski_resort,Ski Resort,2,lodging,false,resort,14707 -lodging > retreat,retreat,Retreat,1,lodging,false,lodging, -lodging > retreat > health_retreat,health_retreat,Health Retreat,2,lodging,false,lodging,115 -lodging > rv_park,rv_park,RV Park,1,lodging,true,rv_park,23854 -lodging > ryokan,ryokan,Ryokan,1,lodging,false,lodging,3 -lodging > self_catering_accommodation,self_catering_accommodation,Self Catering Accommodation,1,lodging,false,lodging,698 -lodging > service_apartment,service_apartment,Service Apartment,1,lodging,false,lodging,18634 -services_and_business,services_and_business,Services and Business,0,services_and_business,true,services_and_business, -services_and_business > agricultural_service,agricultural_service,Agricultural Service,1,services_and_business,true,agricultural_service,89225 -services_and_business > agricultural_service > agriculture_association,agriculture_association,Agriculture Association,2,services_and_business,false,agricultural_service,652 -services_and_business > agricultural_service > farm,farm,Farm,2,services_and_business,true,farm,254727 -services_and_business > agricultural_service > farm > dairy_farm,dairy_farm,Dairy Farm,3,services_and_business,false,farm,12379 -services_and_business > agricultural_service > farm > orchard,orchard,Orchard,3,services_and_business,false,farm,73 -services_and_business > agricultural_service > farm > pig_farm,pig_farm,Pig Farm,3,services_and_business,false,farm,81 -services_and_business > agricultural_service > farm > poultry_farm,poultry_farm,Poultry Farm,3,services_and_business,false,farm,6138 -services_and_business > agricultural_service > farm > ranch,ranch,Ranch,3,services_and_business,false,farm,447 -services_and_business > agricultural_service > farm > urban_farm,urban_farm,Urban Farm,3,services_and_business,false,farm,6945 -services_and_business > agricultural_service > farm_equipment_repair_service,farm_equipment_repair_service,Farm Equipment Repair Service,2,services_and_business,false,agricultural_service,234 -services_and_business > b2b_service,b2b_service,B2B Service,1,services_and_business,true,b2b_service,50289 -services_and_business > b2b_service > b2b_agriculture_service,b2b_agriculture_service,B2B Agriculture Service,2,services_and_business,false,b2b_service,84 -services_and_business > b2b_service > b2b_agriculture_service > agricultural_cooperative,agricultural_cooperative,Agricultural Cooperative,3,services_and_business,false,b2b_service,27508 -services_and_business > b2b_service > b2b_agriculture_service > agriculture,agriculture,Agriculture,3,services_and_business,false,b2b_service,64916 -services_and_business > b2b_service > b2b_agriculture_service > apiary_beekeeper,apiary_beekeeper,Apiary Beekeeper,3,services_and_business,false,b2b_service,33 -services_and_business > b2b_service > b2b_agriculture_service > b2b_dairy,b2b_dairy,B2B Dairy,3,services_and_business,false,b2b_service,70 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming,b2b_farming,B2B Farming,3,services_and_business,false,b2b_service,12 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > b2b_farm,b2b_farm,B2B Farm,4,services_and_business,false,b2b_service,80 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply,farm_equipment_and_supply,Farm Equipment and Supply,4,services_and_business,false,b2b_service,6185 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > fertilizer_store,fertilizer_store,Fertilizer Store,5,services_and_business,false,b2b_service,546 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > grain_elevator,grain_elevator,Grain Elevator,5,services_and_business,false,b2b_service,1106 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farm_equipment_and_supply > greenhouse,greenhouse,Greenhouse,5,services_and_business,false,b2b_service,216 -services_and_business > b2b_service > b2b_agriculture_service > b2b_farming > farming_service,farming_service,Farming Service,4,services_and_business,false,b2b_service,5617 -services_and_business > b2b_service > b2b_agriculture_service > b2b_food_products,b2b_food_products,B2B Food Products,3,services_and_business,false,b2b_service,1357 -services_and_business > b2b_service > b2b_agriculture_service > crops_production,crops_production,Crops Production,3,services_and_business,false,b2b_service,824 -services_and_business > b2b_service > b2b_agriculture_service > crops_production > grain_production,grain_production,Grain Production,4,services_and_business,false,b2b_service,1045 -services_and_business > b2b_service > b2b_agriculture_service > crops_production > orchards_production,orchards_production,Orchards Production,4,services_and_business,false,b2b_service,5 -services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery,fish_farm_hatchery,Fish Farm Hatchery,3,services_and_business,false,b2b_service,152 -services_and_business > b2b_service > b2b_agriculture_service > fish_farm_hatchery > fish_farm,fish_farm,Fish Farm,4,services_and_business,false,b2b_service,6685 -services_and_business > b2b_service > b2b_agriculture_service > livestock_breeder,livestock_breeder,Livestock Breeder,3,services_and_business,false,b2b_service,19821 -services_and_business > b2b_service > b2b_agriculture_service > livestock_dealer,livestock_dealer,Livestock Dealer,3,services_and_business,false,b2b_service,79 -services_and_business > b2b_service > b2b_agriculture_service > poultry_farming,poultry_farming,Poultry Farming,3,services_and_business,false,b2b_service,110 -services_and_business > b2b_service > b2b_energy_and_utility_service,b2b_energy_and_utility_service,B2B Energy and Utility Service,2,services_and_business,true,b2b_energy_and_utility_service,35130 -services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining,b2b_mining,B2B Mining,3,services_and_business,false,b2b_energy_and_utility_service,10389 -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,services_and_business,false,b2b_energy_and_utility_service,581 -services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_mining > b2b_quarry,b2b_quarry,B2B Quarry,4,services_and_business,false,b2b_energy_and_utility_service,760 -services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas,b2b_oil_and_gas,B2B Oil and Gas,3,services_and_business,false,b2b_energy_and_utility_service,6542 -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,services_and_business,false,b2b_energy_and_utility_service,1833 -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,services_and_business,false,b2b_energy_and_utility_service,145 -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,services_and_business,false,b2b_energy_and_utility_service,1360 -services_and_business > b2b_service > b2b_energy_and_utility_service > b2b_oil_and_gas > b2b_oil_refinery,b2b_oil_refinery,B2B Oil Refinery,4,services_and_business,false,b2b_energy_and_utility_service,1365 -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,services_and_business,false,b2b_energy_and_utility_service,823 -services_and_business > b2b_service > b2b_energy_and_utility_service > energy_management_service,energy_management_service,Energy Management Service,3,services_and_business,false,b2b_energy_and_utility_service,697 -services_and_business > b2b_service > b2b_environmental_service,b2b_environmental_service,B2B Environmental Service,2,services_and_business,false,b2b_service,7347 -services_and_business > b2b_service > b2b_environmental_service > b2b_cleaning_and_waste_management,b2b_cleaning_and_waste_management,B2B Cleaning and Waste Management,3,services_and_business,false,b2b_service,6428 -services_and_business > b2b_service > b2b_environmental_service > b2b_water_treatment_service,b2b_water_treatment_service,B2B Water Treatment Service,3,services_and_business,false,b2b_service,29205 -services_and_business > b2b_service > b2b_environmental_service > geological_service,geological_service,Geological Service,3,services_and_business,false,b2b_service,3986 -services_and_business > b2b_service > b2b_environmental_service > logging_contractor,logging_contractor,Logging Contractor,3,services_and_business,false,b2b_service,2307 -services_and_business > b2b_service > b2b_environmental_service > logging_equipment_and_supplies,logging_equipment_and_supplies,Logging Equipment and Supplies,3,services_and_business,false,b2b_service,396 -services_and_business > b2b_service > b2b_environmental_service > logging_service,logging_service,Logging Service,3,services_and_business,false,b2b_service,12490 -services_and_business > b2b_service > b2b_industrial_and_machine_service,b2b_industrial_and_machine_service,B2B Industrial and Machine Service,2,services_and_business,true,b2b_industrial_and_machine_service,3478 -services_and_business > b2b_service > b2b_industrial_and_machine_service > automation_service,automation_service,Automation Service,3,services_and_business,false,b2b_industrial_and_machine_service,21056 -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,services_and_business,false,b2b_industrial_and_machine_service,626 -services_and_business > b2b_service > b2b_industrial_and_machine_service > casting_molding_service,casting_molding_service,Casting Molding Service,3,services_and_business,false,b2b_industrial_and_machine_service,137 -services_and_business > b2b_service > b2b_industrial_and_machine_service > chemical_plant,chemical_plant,Chemical Plant,3,services_and_business,false,b2b_industrial_and_machine_service,54309 -services_and_business > b2b_service > b2b_industrial_and_machine_service > inventory_control_service,inventory_control_service,Inventory Control Service,3,services_and_business,false,b2b_industrial_and_machine_service,1060 -services_and_business > b2b_service > b2b_industrial_and_machine_service > laser_cutting_service,laser_cutting_service,Laser Cutting Service,3,services_and_business,false,b2b_industrial_and_machine_service,203 -services_and_business > b2b_service > b2b_industrial_and_machine_service > manufacturing_and_industrial_consultant,manufacturing_and_industrial_consultant,Manufacturing and Industrial Consultant,3,services_and_business,false,b2b_industrial_and_machine_service,233 -services_and_business > b2b_service > b2b_industrial_and_machine_service > metal_plating_service,metal_plating_service,Metal Plating Service,3,services_and_business,false,b2b_industrial_and_machine_service,2939 -services_and_business > b2b_service > b2b_industrial_and_machine_service > occupational_safety,occupational_safety,Occupational Safety,3,services_and_business,false,b2b_industrial_and_machine_service,14486 -services_and_business > b2b_service > b2b_industrial_and_machine_service > plastic_injection_molding_service,plastic_injection_molding_service,Plastic Injection Molding Service,3,services_and_business,false,b2b_industrial_and_machine_service,239 -services_and_business > b2b_service > b2b_industrial_and_machine_service > turnery,turnery,Turnery,3,services_and_business,false,b2b_industrial_and_machine_service,60 -services_and_business > b2b_service > b2b_media_service,b2b_media_service,B2B Media Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_media_service > b2b_audio_visual_production,b2b_audio_visual_production,B2B Audio Visual Production,3,services_and_business,false,b2b_service,2682 -services_and_business > b2b_service > b2b_medical_support_service,b2b_medical_support_service,B2B Medical Support Service,2,services_and_business,false,b2b_service,210 -services_and_business > b2b_service > b2b_medical_support_service > b2b_clinical_lab,b2b_clinical_lab,B2B Clinical Lab,3,services_and_business,false,b2b_service,5983 -services_and_business > b2b_service > b2b_medical_support_service > b2b_dental_lab,b2b_dental_lab,B2B Dental Lab,3,services_and_business,false,b2b_service,1151 -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,services_and_business,false,b2b_service,1563 -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,services_and_business,false,b2b_service,24280 -services_and_business > b2b_service > b2b_office_and_professional_service,b2b_office_and_professional_service,B2B Office and Professional Service,2,services_and_business,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,services_and_business,false,b2b_office_and_professional_service,48779 -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,services_and_business,false,b2b_office_and_professional_service,196 -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,services_and_business,false,b2b_office_and_professional_service,24298 -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,services_and_business,false,b2b_office_and_professional_service,627 -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,services_and_business,false,b2b_office_and_professional_service,177 -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,services_and_business,false,b2b_office_and_professional_service,2029 -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,services_and_business,false,b2b_office_and_professional_service,690 -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,services_and_business,false,b2b_office_and_professional_service,1201 -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,services_and_business,false,b2b_office_and_professional_service,1341 -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,services_and_business,false,b2b_office_and_professional_service,2637 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_background_check_service,b2b_background_check_service,B2B Background Check Service,3,services_and_business,false,b2b_office_and_professional_service,36 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service,b2b_business_management_service,B2B Business Management Service,3,services_and_business,false,b2b_office_and_professional_service,81576 -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,services_and_business,false,b2b_office_and_professional_service,700 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_business_management_service > b2b_secretarial_service,b2b_secretarial_service,B2B Secretarial Service,4,services_and_business,false,b2b_office_and_professional_service,1692 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_domestic_trade_service,b2b_domestic_trade_service,B2B Domestic Trade Service,3,services_and_business,false,b2b_office_and_professional_service,1154 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_human_resource_service,b2b_human_resource_service,B2B Human Resource Service,3,services_and_business,false,b2b_office_and_professional_service,4727 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_international_trade_service,b2b_international_trade_service,B2B International Trade Service,3,services_and_business,false,b2b_office_and_professional_service,8400 -services_and_business > b2b_service > b2b_office_and_professional_service > b2b_records_storage_service,b2b_records_storage_service,B2B Records Storage Service,3,services_and_business,false,b2b_office_and_professional_service,1211 -services_and_business > b2b_service > b2b_office_and_professional_service > restaurant_management,restaurant_management,Restaurant Management,3,services_and_business,false,b2b_office_and_professional_service,13 -services_and_business > b2b_service > b2b_office_and_professional_service > transcription_service,transcription_service,Transcription Service,3,services_and_business,false,b2b_office_and_professional_service,212 -services_and_business > b2b_service > b2b_office_and_professional_service > translating_and_interpreting_service,translating_and_interpreting_service,Translating and Interpreting Service,3,services_and_business,false,b2b_office_and_professional_service,11071 -services_and_business > b2b_service > b2b_science_and_technology_service,b2b_science_and_technology_service,B2B Science and Technology Service,2,services_and_business,true,b2b_science_and_technology_service,14826 -services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_equipment,b2b_scientific_equipment,B2B Scientific Equipment,3,services_and_business,false,b2b_science_and_technology_service,507 -services_and_business > b2b_service > b2b_science_and_technology_service > b2b_scientific_lab,b2b_scientific_lab,B2B Scientific Lab,3,services_and_business,false,b2b_science_and_technology_service,165 -services_and_business > b2b_service > b2b_telecommunications_service,b2b_telecommunications_service,B2B Telecommunications Service,2,services_and_business,false,b2b_service, -services_and_business > b2b_service > b2b_telecommunications_service > tower_communication_service,tower_communication_service,Tower Communication Service,3,services_and_business,false,b2b_service,20 -services_and_business > b2b_service > b2b_transportation_and_storage_service,b2b_transportation_and_storage_service,B2B Transportation and Storage Service,2,services_and_business,true,b2b_transportation_and_storage_service,1110 -services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage,b2b_storage,B2B Storage,3,services_and_business,false,b2b_transportation_and_storage_service,106 -services_and_business > b2b_service > b2b_transportation_and_storage_service > b2b_storage > warehouse,warehouse,Warehouse,4,services_and_business,false,b2b_transportation_and_storage_service,9999 -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,services_and_business,false,b2b_transportation_and_storage_service,69 -services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service,freight_and_cargo_service,Freight and Cargo Service,3,services_and_business,false,b2b_transportation_and_storage_service,173480 -services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > distribution_service,distribution_service,Distribution Service,4,services_and_business,false,b2b_transportation_and_storage_service,6159 -services_and_business > b2b_service > b2b_transportation_and_storage_service > freight_and_cargo_service > freight_forwarding_agency,freight_forwarding_agency,Freight Forwarding Agency,4,services_and_business,false,b2b_transportation_and_storage_service,3521 -services_and_business > b2b_service > b2b_transportation_and_storage_service > motor_freight_trucking,motor_freight_trucking,Motor Freight Trucking,3,services_and_business,false,b2b_transportation_and_storage_service,1701 -services_and_business > b2b_service > b2b_transportation_and_storage_service > pipeline_transportation,pipeline_transportation,Pipeline Transportation,3,services_and_business,false,b2b_transportation_and_storage_service,630 -services_and_business > b2b_service > b2b_transportation_and_storage_service > railroad_freight,railroad_freight,Railroad Freight,3,services_and_business,false,b2b_transportation_and_storage_service,4867 -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,services_and_business,false,b2b_transportation_and_storage_service,335 -services_and_business > b2b_service > b2b_transportation_and_storage_service > truck_and_industrial_vehicle_services > tractor_dealer,tractor_dealer,Tractor Dealer,4,services_and_business,false,b2b_transportation_and_storage_service,1681 -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,services_and_business,false,b2b_transportation_and_storage_service,1152 -services_and_business > b2b_service > commercial_industrial,commercial_industrial,Commercial Industrial,2,services_and_business,false,b2b_service,102336 -services_and_business > b2b_service > manufacturer,manufacturer,Manufacturer,2,services_and_business,true,manufacturer,258533 -services_and_business > b2b_service > manufacturer > apparel_manufacturer,apparel_manufacturer,Apparel Manufacturer,3,services_and_business,false,manufacturer,7834 -services_and_business > b2b_service > manufacturer > apparel_manufacturer > shoe_factory_manufacturer,shoe_factory_manufacturer,Shoe Factory Manufacturer,4,services_and_business,false,manufacturer,39 -services_and_business > b2b_service > manufacturer > appliance_manufacturer,appliance_manufacturer,Appliance Manufacturer,3,services_and_business,false,manufacturer,9347 -services_and_business > b2b_service > manufacturer > cosmetic_products_manufacturer,cosmetic_products_manufacturer,Cosmetic Products Manufacturer,3,services_and_business,false,manufacturer,204 -services_and_business > b2b_service > manufacturer > furniture_manufacturer,furniture_manufacturer,Furniture Manufacturer,3,services_and_business,false,manufacturer,12423 -services_and_business > b2b_service > manufacturer > glass_manufacturer,glass_manufacturer,Glass Manufacturer,3,services_and_business,false,manufacturer,6808 -services_and_business > b2b_service > manufacturer > hardware_and_fastener_manufacturer,hardware_and_fastener_manufacturer,Hardware and Fastener Manufacturer,3,services_and_business,false,manufacturer,146 -services_and_business > b2b_service > manufacturer > jewelry_and_watches_manufacturer,jewelry_and_watches_manufacturer,Jewelry and Watches Manufacturer,3,services_and_business,false,manufacturer,39778 -services_and_business > b2b_service > manufacturer > jewelry_manufacturer,jewelry_manufacturer,Jewelry Manufacturer,3,services_and_business,false,manufacturer,75 -services_and_business > b2b_service > manufacturer > leather_products_manufacturer,leather_products_manufacturer,Leather Products Manufacturer,3,services_and_business,false,manufacturer,592 -services_and_business > b2b_service > manufacturer > lighting_fixture_manufacturer,lighting_fixture_manufacturer,Lighting Fixture Manufacturer,3,services_and_business,false,manufacturer,249 -services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer,machinery_and_tool_manufacturer,Machinery and Tool Manufacturer,3,services_and_business,false,manufacturer,1579 -services_and_business > b2b_service > manufacturer > machinery_and_tool_manufacturer > industrial_equipment_manufacturer,industrial_equipment_manufacturer,Industrial Equipment Manufacturer,4,services_and_business,false,manufacturer,217105 -services_and_business > b2b_service > manufacturer > mattress_manufacturing,mattress_manufacturing,Mattress Manufacturing,3,services_and_business,false,manufacturer,3048 -services_and_business > b2b_service > manufacturer > metal_fabricator,metal_fabricator,Metal Fabricator,3,services_and_business,false,manufacturer,124092 -services_and_business > b2b_service > manufacturer > metal_fabricator > iron_fabricator,iron_fabricator,Iron Fabricator,4,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > metal_fabricator > sheet_metal_fabricator,sheet_metal_fabricator,Sheet Metal Fabricator,4,services_and_business,false,manufacturer,322 -services_and_business > b2b_service > manufacturer > metal_fabricator > steel_fabricator,steel_fabricator,Steel Fabricator,4,services_and_business,false,manufacturer,2104 -services_and_business > b2b_service > manufacturer > mill,mill,Mill,3,services_and_business,false,manufacturer,226 -services_and_business > b2b_service > manufacturer > mill > cotton_mill,cotton_mill,Cotton Mill,4,services_and_business,false,manufacturer,193 -services_and_business > b2b_service > manufacturer > mill > flour_mill,flour_mill,Flour Mill,4,services_and_business,false,manufacturer,97 -services_and_business > b2b_service > manufacturer > mill > paper_mill,paper_mill,Paper Mill,4,services_and_business,false,manufacturer,901 -services_and_business > b2b_service > manufacturer > mill > rice_mill,rice_mill,Rice Mill,4,services_and_business,false,manufacturer,76 -services_and_business > b2b_service > manufacturer > mill > sawmill,sawmill,Sawmill,4,services_and_business,false,manufacturer,1108 -services_and_business > b2b_service > manufacturer > mill > textile_mill,textile_mill,Textile Mill,4,services_and_business,false,manufacturer,2573 -services_and_business > b2b_service > manufacturer > mill > weaving_mill,weaving_mill,Weaving Mill,4,services_and_business,false,manufacturer,25 -services_and_business > b2b_service > manufacturer > plastic_manufacturer,plastic_manufacturer,Plastic Manufacturer,3,services_and_business,false,manufacturer,16962 -services_and_business > b2b_service > manufacturer > rubber_and_plastics_manufacturer,rubber_and_plastics_manufacturer,Rubber and Plastics Manufacturer,3,services_and_business,false,manufacturer,2062 -services_and_business > b2b_service > manufacturer > sporting_goods_manufacturer,sporting_goods_manufacturer,Sporting Goods Manufacturer,3,services_and_business,false,manufacturer,340 -services_and_business > b2b_service > manufacturer > textile_manufacturer,textile_manufacturer,Textile Manufacturer,3,services_and_business,false,manufacturer,34762 -services_and_business > b2b_service > manufacturer > vehicle_manufacturer,vehicle_manufacturer,Vehicle Manufacturer,3,services_and_business,false,manufacturer,170 -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > aircraft_manufacturer,aircraft_manufacturer,Aircraft Manufacturer,4,services_and_business,false,manufacturer,784 -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > auto_manufacturer,auto_manufacturer,Auto Manufacturer,4,services_and_business,false,manufacturer,12742 -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > boat_and_ship_manufacturer,boat_and_ship_manufacturer,Boat and Ship Manufacturer,4,services_and_business,false,manufacturer,196 -services_and_business > b2b_service > manufacturer > vehicle_manufacturer > motorcycle_manufacturer,motorcycle_manufacturer,Motorcycle Manufacturer,4,services_and_business,false,manufacturer,2385 -services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer,vehicle_parts_manufacturer,Vehicle Parts Manufacturer,3,services_and_business,false,manufacturer, -services_and_business > b2b_service > manufacturer > vehicle_parts_manufacturer > tires_manufacturer,tires_manufacturer,Tires Manufacturer,4,services_and_business,false,manufacturer,82 -services_and_business > b2b_service > supplier_or_distributor,supplier_or_distributor,Supplier or Distributor,2,services_and_business,true,supplier_or_distributor,5376 -services_and_business > b2b_service > supplier_or_distributor > abrasives_supplier,abrasives_supplier,Abrasives Supplier,3,services_and_business,false,supplier_or_distributor,110 -services_and_business > b2b_service > supplier_or_distributor > aggregate_supplier,aggregate_supplier,Aggregate Supplier,3,services_and_business,false,supplier_or_distributor,178 -services_and_business > b2b_service > supplier_or_distributor > aluminum_supplier,aluminum_supplier,Aluminum Supplier,3,services_and_business,false,supplier_or_distributor,393 -services_and_business > b2b_service > supplier_or_distributor > awning_supplier,awning_supplier,Awning Supplier,3,services_and_business,false,supplier_or_distributor,955 -services_and_business > b2b_service > supplier_or_distributor > battery_inverter_supplier,battery_inverter_supplier,Battery Inverter Supplier,3,services_and_business,false,supplier_or_distributor,1 -services_and_business > b2b_service > supplier_or_distributor > bearing_supplier,bearing_supplier,Bearing Supplier,3,services_and_business,false,supplier_or_distributor,353 -services_and_business > b2b_service > supplier_or_distributor > beauty_product_supplier,beauty_product_supplier,Beauty Product Supplier,3,services_and_business,false,supplier_or_distributor,25937 -services_and_business > b2b_service > supplier_or_distributor > beverage_supplier,beverage_supplier,Beverage Supplier,3,services_and_business,false,supplier_or_distributor,5209 -services_and_business > b2b_service > supplier_or_distributor > box_lunch_supplier,box_lunch_supplier,Box Lunch Supplier,3,services_and_business,false,supplier_or_distributor,80 -services_and_business > b2b_service > supplier_or_distributor > business_office_supplies_and_stationery,business_office_supplies_and_stationery,Business Office Supplies and Stationery,3,services_and_business,false,supplier_or_distributor,4097 -services_and_business > b2b_service > supplier_or_distributor > cement_supplier,cement_supplier,Cement Supplier,3,services_and_business,false,supplier_or_distributor,1169 -services_and_business > b2b_service > supplier_or_distributor > cleaning_products_supplier,cleaning_products_supplier,Cleaning Products Supplier,3,services_and_business,false,supplier_or_distributor,1846 -services_and_business > b2b_service > supplier_or_distributor > corporate_gift_supplier,corporate_gift_supplier,Corporate Gift Supplier,3,services_and_business,false,supplier_or_distributor,92 -services_and_business > b2b_service > supplier_or_distributor > electronic_equipment_supplier,electronic_equipment_supplier,Electronic Equipment Supplier,3,services_and_business,false,supplier_or_distributor,24617 -services_and_business > b2b_service > supplier_or_distributor > electronic_parts_supplier,electronic_parts_supplier,Electronic Parts Supplier,3,services_and_business,false,supplier_or_distributor,4525 -services_and_business > b2b_service > supplier_or_distributor > fastener_supplier,fastener_supplier,Fastener Supplier,3,services_and_business,false,supplier_or_distributor,762 -services_and_business > b2b_service > supplier_or_distributor > food_beverage_distributor,food_beverage_distributor,Food Beverage Distributor,3,services_and_business,false,supplier_or_distributor,50030 -services_and_business > b2b_service > supplier_or_distributor > granite_supplier,granite_supplier,Granite Supplier,3,services_and_business,false,supplier_or_distributor,15913 -services_and_business > b2b_service > supplier_or_distributor > hotel_supply_service,hotel_supply_service,Hotel Supply Service,3,services_and_business,false,supplier_or_distributor,2548 -services_and_business > b2b_service > supplier_or_distributor > hvac_supplier,hvac_supplier,HVAC Supplier,3,services_and_business,false,supplier_or_distributor,10080 -services_and_business > b2b_service > supplier_or_distributor > hydraulic_equipment_supplier,hydraulic_equipment_supplier,Hydraulic Equipment Supplier,3,services_and_business,false,supplier_or_distributor,3503 -services_and_business > b2b_service > supplier_or_distributor > ice_supplier,ice_supplier,Ice Supplier,3,services_and_business,false,supplier_or_distributor,891 -services_and_business > b2b_service > supplier_or_distributor > import_export_service,import_export_service,Import Export Service,3,services_and_business,false,supplier_or_distributor,3782 -services_and_business > b2b_service > supplier_or_distributor > import_export_service > exporter,exporter,Exporter,4,services_and_business,false,supplier_or_distributor,947 -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,services_and_business,false,supplier_or_distributor,813 -services_and_business > b2b_service > supplier_or_distributor > import_export_service > importer,importer,Importer,4,services_and_business,false,supplier_or_distributor,669 -services_and_business > b2b_service > supplier_or_distributor > laboratory_equipment_supplier,laboratory_equipment_supplier,Laboratory Equipment Supplier,3,services_and_business,false,supplier_or_distributor,776 -services_and_business > b2b_service > supplier_or_distributor > metal_supplier,metal_supplier,Metal Supplier,3,services_and_business,false,supplier_or_distributor,49043 -services_and_business > b2b_service > supplier_or_distributor > pipe_supplier,pipe_supplier,Pipe Supplier,3,services_and_business,false,supplier_or_distributor,664 -services_and_business > b2b_service > supplier_or_distributor > playground_equipment_supplier,playground_equipment_supplier,Playground Equipment Supplier,3,services_and_business,false,supplier_or_distributor,6 -services_and_business > b2b_service > supplier_or_distributor > printing_equipment_supplier,printing_equipment_supplier,Printing Equipment Supplier,3,services_and_business,false,supplier_or_distributor,1887 -services_and_business > b2b_service > supplier_or_distributor > propane_supplier,propane_supplier,Propane Supplier,3,services_and_business,false,supplier_or_distributor,47004 -services_and_business > b2b_service > supplier_or_distributor > restaurant_equipment_and_supply,restaurant_equipment_and_supply,Restaurant Equipment and Supply,3,services_and_business,false,supplier_or_distributor,12496 -services_and_business > b2b_service > supplier_or_distributor > retaining_wall_supplier,retaining_wall_supplier,Retaining Wall Supplier,3,services_and_business,false,supplier_or_distributor,43 -services_and_business > b2b_service > supplier_or_distributor > sand_and_gravel_supplier,sand_and_gravel_supplier,Sand and Gravel Supplier,3,services_and_business,false,supplier_or_distributor,859 -services_and_business > b2b_service > supplier_or_distributor > scale_supplier,scale_supplier,Scale Supplier,3,services_and_business,false,supplier_or_distributor,214 -services_and_business > b2b_service > supplier_or_distributor > seal_and_hanko_supplier,seal_and_hanko_supplier,Seal and Hanko Supplier,3,services_and_business,false,supplier_or_distributor, -services_and_business > b2b_service > supplier_or_distributor > spring_supplier,spring_supplier,Spring Supplier,3,services_and_business,false,supplier_or_distributor,100 -services_and_business > b2b_service > supplier_or_distributor > stone_supplier,stone_supplier,Stone Supplier,3,services_and_business,false,supplier_or_distributor,972 -services_and_business > b2b_service > supplier_or_distributor > tableware_supplier,tableware_supplier,Tableware Supplier,3,services_and_business,false,supplier_or_distributor,261 -services_and_business > b2b_service > supplier_or_distributor > tent_house_supplier,tent_house_supplier,Tent House Supplier,3,services_and_business,false,supplier_or_distributor,11 -services_and_business > b2b_service > supplier_or_distributor > thread_supplier,thread_supplier,Thread Supplier,3,services_and_business,false,supplier_or_distributor,4 -services_and_business > b2b_service > supplier_or_distributor > vending_machine_supplier,vending_machine_supplier,Vending Machine Supplier,3,services_and_business,false,supplier_or_distributor,6248 -services_and_business > b2b_service > supplier_or_distributor > water_softening_equipment_supplier,water_softening_equipment_supplier,Water Softening Equipment Supplier,3,services_and_business,false,supplier_or_distributor,567 -services_and_business > b2b_service > supplier_or_distributor > window_supplier,window_supplier,Window Supplier,3,services_and_business,false,supplier_or_distributor,5847 -services_and_business > b2b_service > wholesaler,wholesaler,Wholesaler,2,services_and_business,true,wholesaler,15756 -services_and_business > b2b_service > wholesaler > computer_wholesaler,computer_wholesaler,Computer Wholesaler,3,services_and_business,false,wholesaler,8605 -services_and_business > b2b_service > wholesaler > electrical_wholesaler,electrical_wholesaler,Electrical Wholesaler,3,services_and_business,false,wholesaler,1012 -services_and_business > b2b_service > wholesaler > fabric_wholesaler,fabric_wholesaler,Fabric Wholesaler,3,services_and_business,false,wholesaler,322 -services_and_business > b2b_service > wholesaler > fitness_equipment_wholesaler,fitness_equipment_wholesaler,Fitness Equipment Wholesaler,3,services_and_business,false,wholesaler,413 -services_and_business > b2b_service > wholesaler > fmcg_wholesaler,fmcg_wholesaler,Fmcg Wholesaler,3,services_and_business,false,wholesaler,157 -services_and_business > b2b_service > wholesaler > footwear_wholesaler,footwear_wholesaler,Footwear Wholesaler,3,services_and_business,false,wholesaler,72 -services_and_business > b2b_service > wholesaler > furniture_wholesaler,furniture_wholesaler,Furniture Wholesaler,3,services_and_business,false,wholesaler,973 -services_and_business > b2b_service > wholesaler > greengrocer,greengrocer,Greengrocer,3,services_and_business,false,wholesaler,179 -services_and_business > b2b_service > wholesaler > industrial_spares_and_products_wholesaler,industrial_spares_and_products_wholesaler,Industrial Spares and Products Wholesaler,3,services_and_business,false,wholesaler,319 -services_and_business > b2b_service > wholesaler > iron_and_steel_store,iron_and_steel_store,Iron and Steel Store,3,services_and_business,false,wholesaler,138 -services_and_business > b2b_service > wholesaler > lingerie_wholesaler,lingerie_wholesaler,Lingerie Wholesaler,3,services_and_business,false,wholesaler,7 -services_and_business > b2b_service > wholesaler > meat_wholesaler,meat_wholesaler,Meat Wholesaler,3,services_and_business,false,wholesaler,12567 -services_and_business > b2b_service > wholesaler > optical_wholesaler,optical_wholesaler,Optical Wholesaler,3,services_and_business,false,wholesaler,577 -services_and_business > b2b_service > wholesaler > pharmaceutical_products_wholesaler,pharmaceutical_products_wholesaler,Pharmaceutical Products Wholesaler,3,services_and_business,false,wholesaler,6503 -services_and_business > b2b_service > wholesaler > produce_wholesaler,produce_wholesaler,Produce Wholesaler,3,services_and_business,false,wholesaler,1197 -services_and_business > b2b_service > wholesaler > restaurant_wholesale,restaurant_wholesale,Restaurant Wholesale,3,services_and_business,false,wholesaler,2740 -services_and_business > b2b_service > wholesaler > seafood_wholesaler,seafood_wholesaler,Seafood Wholesaler,3,services_and_business,false,wholesaler,261 -services_and_business > b2b_service > wholesaler > spices_wholesaler,spices_wholesaler,Spices Wholesaler,3,services_and_business,false,wholesaler,39 -services_and_business > b2b_service > wholesaler > tea_wholesaler,tea_wholesaler,Tea Wholesaler,3,services_and_business,false,wholesaler,34 -services_and_business > b2b_service > wholesaler > threads_and_yarns_wholesaler,threads_and_yarns_wholesaler,Threads and Yarns Wholesaler,3,services_and_business,false,wholesaler,280 -services_and_business > b2b_service > wholesaler > tools_wholesaler,tools_wholesaler,Tools Wholesaler,3,services_and_business,false,wholesaler,376 -services_and_business > b2b_service > wholesaler > wholesale_florist,wholesale_florist,Wholesale Florist,3,services_and_business,false,wholesaler,388 -services_and_business > b2b_service > wholesaler > wholesale_grocer,wholesale_grocer,Wholesale Grocer,3,services_and_business,false,wholesaler,8379 -services_and_business > b2b_service > wholesaler > wine_wholesaler,wine_wholesaler,Wine Wholesaler,3,services_and_business,false,wholesaler,1184 -services_and_business > building_or_construction_service,building_or_construction_service,Building or Construction Service,1,services_and_business,true,building_or_construction_service,343319 -services_and_business > building_or_construction_service > blacksmith,blacksmith,Blacksmith,2,services_and_business,false,building_or_construction_service,311 -services_and_business > building_or_construction_service > blueprinter,blueprinter,Blueprinter,2,services_and_business,false,building_or_construction_service,97 -services_and_business > building_or_construction_service > civil_engineer,civil_engineer,Civil Engineer,2,services_and_business,false,building_or_construction_service,3673 -services_and_business > building_or_construction_service > construction_management,construction_management,Construction Management,2,services_and_business,false,building_or_construction_service,1023 -services_and_business > building_or_construction_service > crane_service,crane_service,Crane Service,2,services_and_business,false,building_or_construction_service,1722 -services_and_business > building_or_construction_service > engineering_service,engineering_service,Engineering Service,2,services_and_business,false,building_or_construction_service,161545 -services_and_business > building_or_construction_service > gravel_professional,gravel_professional,Gravel Professional,2,services_and_business,false,building_or_construction_service,54 -services_and_business > building_or_construction_service > inspection_service,inspection_service,Inspection Service,2,services_and_business,false,building_or_construction_service,2216 -services_and_business > building_or_construction_service > instrumentation_engineer,instrumentation_engineer,Instrumentation Engineer,2,services_and_business,false,building_or_construction_service,78 -services_and_business > building_or_construction_service > ironworker,ironworker,Ironworker,2,services_and_business,false,building_or_construction_service,33 -services_and_business > building_or_construction_service > lime_professional,lime_professional,Lime Professional,2,services_and_business,false,building_or_construction_service,49 -services_and_business > building_or_construction_service > marble_and_granite_professional,marble_and_granite_professional,Marble and Granite Professional,2,services_and_business,false,building_or_construction_service,906 -services_and_business > building_or_construction_service > masonry_contractor,masonry_contractor,Masonry Contractor,2,services_and_business,false,building_or_construction_service,4488 -services_and_business > building_or_construction_service > mechanical_engineer,mechanical_engineer,Mechanical Engineer,2,services_and_business,false,building_or_construction_service,1739 -services_and_business > building_or_construction_service > metal_material_expert,metal_material_expert,Metal Material Expert,2,services_and_business,false,building_or_construction_service,711 -services_and_business > building_or_construction_service > road_contractor,road_contractor,Road Contractor,2,services_and_business,false,building_or_construction_service,1111 -services_and_business > building_or_construction_service > stone_and_masonry,stone_and_masonry,Stone and Masonry,2,services_and_business,false,building_or_construction_service,1096 -services_and_business > building_or_construction_service > welder,welder,Welder,2,services_and_business,false,building_or_construction_service,2586 -services_and_business > corporate_or_business_office,corporate_or_business_office,Corporate or Business Office,1,services_and_business,true,corporate_or_business_office,164478 -services_and_business > corporate_or_business_office > auto_company,auto_company,Auto Company,2,services_and_business,false,corporate_or_business_office,51595 -services_and_business > corporate_or_business_office > bags_luggage_company,bags_luggage_company,Bags Luggage Company,2,services_and_business,false,corporate_or_business_office,3202 -services_and_business > corporate_or_business_office > biotechnology_company,biotechnology_company,Biotechnology Company,2,services_and_business,false,corporate_or_business_office,9059 -services_and_business > corporate_or_business_office > bottled_water_company,bottled_water_company,Bottled Water Company,2,services_and_business,false,corporate_or_business_office,18748 -services_and_business > corporate_or_business_office > clothing_company,clothing_company,Clothing Company,2,services_and_business,false,corporate_or_business_office,19317 -services_and_business > corporate_or_business_office > energy_company,energy_company,Energy Company,2,services_and_business,false,corporate_or_business_office,31777 -services_and_business > corporate_or_business_office > ferry_boat_company,ferry_boat_company,Ferry Boat Company,2,services_and_business,false,corporate_or_business_office,8015 -services_and_business > corporate_or_business_office > industrial_company,industrial_company,Industrial Company,2,services_and_business,false,corporate_or_business_office,79208 -services_and_business > corporate_or_business_office > information_technology_company,information_technology_company,Information Technology Company,2,services_and_business,false,corporate_or_business_office,133627 -services_and_business > corporate_or_business_office > pharmaceutical_company,pharmaceutical_company,Pharmaceutical Company,2,services_and_business,false,corporate_or_business_office,20971 -services_and_business > corporate_or_business_office > plastics_company,plastics_company,Plastics Company,2,services_and_business,false,corporate_or_business_office,21136 -services_and_business > corporate_or_business_office > private_association,private_association,Private Association,2,services_and_business,false,corporate_or_business_office,14242 -services_and_business > corporate_or_business_office > telecommunications_company,telecommunications_company,Telecommunications Company,2,services_and_business,false,corporate_or_business_office,77931 -services_and_business > corporate_or_business_office > tobacco_company,tobacco_company,Tobacco Company,2,services_and_business,false,corporate_or_business_office,656 -services_and_business > corporate_or_business_office > travel_company,travel_company,Travel Company,2,services_and_business,false,corporate_or_business_office,29844 -services_and_business > design_service,design_service,Design Service,1,services_and_business,true,design_service, -services_and_business > design_service > architect,architect,Architect,2,services_and_business,false,design_service,32082 -services_and_business > design_service > architectural_designer,architectural_designer,Architectural Designer,2,services_and_business,false,design_service,100199 -services_and_business > design_service > graphic_designer,graphic_designer,Graphic Designer,2,services_and_business,false,design_service,68540 -services_and_business > design_service > product_design,product_design,Product Design,2,services_and_business,false,design_service,5268 -services_and_business > design_service > sign_making,sign_making,Sign Making,2,services_and_business,false,design_service,38412 -services_and_business > design_service > web_designer,web_designer,Web Designer,2,services_and_business,false,design_service,73207 -services_and_business > environmental_or_ecological_service,environmental_or_ecological_service,Environmental or Ecological Service,1,services_and_business,true,environmental_or_ecological_service,11061 -services_and_business > environmental_or_ecological_service > environmental_abatement_service,environmental_abatement_service,Environmental Abatement Service,2,services_and_business,false,environmental_or_ecological_service,247 -services_and_business > environmental_or_ecological_service > environmental_conservation_organization,environmental_conservation_organization,Environmental Conservation Organization,2,services_and_business,false,environmental_or_ecological_service,29506 -services_and_business > environmental_or_ecological_service > environmental_testing_service,environmental_testing_service,Environmental Testing Service,2,services_and_business,false,environmental_or_ecological_service,2943 -services_and_business > environmental_or_ecological_service > forestry_service,forestry_service,Forestry Service,2,services_and_business,false,environmental_or_ecological_service,13645 -services_and_business > environmental_or_ecological_service > wildlife_control,wildlife_control,Wildlife Control,2,services_and_business,false,environmental_or_ecological_service,255 -services_and_business > event_or_party_service,event_or_party_service,Event or Party Service,1,services_and_business,true,event_or_party_service,1 -services_and_business > event_or_party_service > audiovisual_equipment_rental,audiovisual_equipment_rental,Audiovisual Equipment Rental,2,services_and_business,false,event_or_party_service,5510 -services_and_business > event_or_party_service > balloon_service,balloon_service,Balloon Service,2,services_and_business,false,event_or_party_service,462 -services_and_business > event_or_party_service > bartender,bartender,Bartender,2,services_and_business,false,event_or_party_service,3122 -services_and_business > event_or_party_service > boat_charter,boat_charter,Boat Charter,2,services_and_business,false,event_or_party_service,712 -services_and_business > event_or_party_service > bounce_house_rental,bounce_house_rental,Bounce House Rental,2,services_and_business,false,event_or_party_service,432 -services_and_business > event_or_party_service > caricature,caricature,Caricature,2,services_and_business,false,event_or_party_service,19 -services_and_business > event_or_party_service > caterer,caterer,Caterer,2,services_and_business,false,event_or_party_service,88970 -services_and_business > event_or_party_service > clown,clown,Clown,2,services_and_business,false,event_or_party_service,38 -services_and_business > event_or_party_service > dj_service,dj_service,DJ Service,2,services_and_business,false,event_or_party_service,5727 -services_and_business > event_or_party_service > event_technology_service,event_technology_service,Event Technology Service,2,services_and_business,false,event_or_party_service,10345 -services_and_business > event_or_party_service > face_painting,face_painting,Face Painting,2,services_and_business,false,event_or_party_service,47 -services_and_business > event_or_party_service > floral_designer,floral_designer,Floral Designer,2,services_and_business,false,event_or_party_service,111 -services_and_business > event_or_party_service > game_truck_rental,game_truck_rental,Game Truck Rental,2,services_and_business,false,event_or_party_service,11 -services_and_business > event_or_party_service > golf_cart_rental,golf_cart_rental,Golf Cart Rental,2,services_and_business,false,event_or_party_service,66 -services_and_business > event_or_party_service > henna_artist,henna_artist,Henna Artist,2,services_and_business,false,event_or_party_service,57 -services_and_business > event_or_party_service > karaoke_rental,karaoke_rental,Karaoke Rental,2,services_and_business,false,event_or_party_service,32 -services_and_business > event_or_party_service > kids_recreation_and_party,kids_recreation_and_party,Kids Recreation and Party,2,services_and_business,false,event_or_party_service,14759 -services_and_business > event_or_party_service > magician,magician,Magician,2,services_and_business,false,event_or_party_service,883 -services_and_business > event_or_party_service > mohel,mohel,Mohel,2,services_and_business,false,event_or_party_service,5 -services_and_business > event_or_party_service > musician,musician,Musician,2,services_and_business,false,event_or_party_service,1465 -services_and_business > event_or_party_service > officiating_service,officiating_service,Officiating Service,2,services_and_business,false,event_or_party_service,248 -services_and_business > event_or_party_service > party_and_event_planning,party_and_event_planning,Party and Event Planning,2,services_and_business,false,event_or_party_service,771950 -services_and_business > event_or_party_service > party_bike_rental,party_bike_rental,Party Bike Rental,2,services_and_business,false,event_or_party_service,3 -services_and_business > event_or_party_service > party_bus_rental,party_bus_rental,Party Bus Rental,2,services_and_business,false,event_or_party_service,261 -services_and_business > event_or_party_service > party_character,party_character,Party Character,2,services_and_business,false,event_or_party_service,20 -services_and_business > event_or_party_service > party_equipment_rental,party_equipment_rental,Party Equipment Rental,2,services_and_business,false,event_or_party_service,3413 -services_and_business > event_or_party_service > personal_chef,personal_chef,Personal Chef,2,services_and_business,false,event_or_party_service,1307 -services_and_business > event_or_party_service > photo_booth_rental,photo_booth_rental,Photo Booth Rental,2,services_and_business,false,event_or_party_service,4391 -services_and_business > event_or_party_service > silent_disco,silent_disco,Silent Disco,2,services_and_business,false,event_or_party_service,3 -services_and_business > event_or_party_service > sommelier_service,sommelier_service,Sommelier Service,2,services_and_business,false,event_or_party_service,1 -services_and_business > event_or_party_service > team_building_activity,team_building_activity,Team Building Activity,2,services_and_business,false,event_or_party_service,136 -services_and_business > event_or_party_service > trivia_host,trivia_host,Trivia Host,2,services_and_business,false,event_or_party_service,3 -services_and_business > event_or_party_service > valet_service,valet_service,Valet Service,2,services_and_business,false,event_or_party_service,434 -services_and_business > event_or_party_service > videographer,videographer,Videographer,2,services_and_business,false,event_or_party_service,4466 -services_and_business > event_or_party_service > wedding_chapel,wedding_chapel,Wedding Chapel,2,services_and_business,false,event_or_party_service,854 -services_and_business > event_or_party_service > wedding_planning,wedding_planning,Wedding Planning,2,services_and_business,false,event_or_party_service,39755 -services_and_business > family_service,family_service,Family Service,1,services_and_business,true,family_service, -services_and_business > family_service > adoption_service,adoption_service,Adoption Service,2,services_and_business,false,family_service,1137 -services_and_business > family_service > child_care_and_day_care,child_care_and_day_care,Child Care and Day Care,2,services_and_business,false,family_service,23193 -services_and_business > family_service > child_care_and_day_care > day_care_preschool,day_care_preschool,Day Care Preschool,3,services_and_business,false,family_service,96833 -services_and_business > family_service > elder_care_planning,elder_care_planning,Elder Care Planning,2,services_and_business,false,family_service,30 -services_and_business > family_service > family_service_center,family_service_center,Family Service Center,2,services_and_business,false,family_service,450 -services_and_business > family_service > funeral_service,funeral_service,Funeral Service,2,services_and_business,false,family_service,106769 -services_and_business > family_service > funeral_service > cremation_service,cremation_service,Cremation Service,3,services_and_business,false,family_service,5363 -services_and_business > family_service > funeral_service > mortuary_service,mortuary_service,Mortuary Service,3,services_and_business,false,family_service,213 -services_and_business > family_service > genealogist,genealogist,Genealogist,2,services_and_business,false,family_service,757 -services_and_business > family_service > mobility_equipment_service,mobility_equipment_service,Mobility Equipment Service,2,services_and_business,false,family_service,2089 -services_and_business > family_service > nanny_service,nanny_service,Nanny Service,2,services_and_business,false,family_service,1024 -services_and_business > financial_service,financial_service,Financial Service,1,services_and_business,true,financial_service,313147 -services_and_business > financial_service > accountant,accountant,Accountant,2,services_and_business,false,financial_service,176951 -services_and_business > financial_service > appraisal_service,appraisal_service,Appraisal Service,2,services_and_business,false,financial_service,23411 -services_and_business > financial_service > atm,atm,ATM,2,services_and_business,true,atm,342719 -services_and_business > financial_service > bank_or_credit_union,bank_or_credit_union,Bank or Credit Union,2,services_and_business,true,bank_or_credit_union,358594 -services_and_business > financial_service > bank_or_credit_union > bank,bank,Bank,3,services_and_business,false,bank_or_credit_union,234566 -services_and_business > financial_service > bank_or_credit_union > credit_union,credit_union,Credit Union,3,services_and_business,false,bank_or_credit_union,69423 -services_and_business > financial_service > broker,broker,Broker,2,services_and_business,false,financial_service,8156 -services_and_business > financial_service > broker > business_broker,business_broker,Business Broker,3,services_and_business,false,financial_service,2391 -services_and_business > financial_service > broker > stock_and_bond_broker,stock_and_bond_broker,Stock and Bond Broker,3,services_and_business,false,financial_service,10730 -services_and_business > financial_service > business_banking_service,business_banking_service,Business Banking Service,2,services_and_business,false,financial_service,345 -services_and_business > financial_service > business_financing,business_financing,Business Financing,2,services_and_business,false,financial_service,282 -services_and_business > financial_service > check_cashing_payday_loans,check_cashing_payday_loans,Check Cashing Payday Loans,2,services_and_business,false,financial_service,11241 -services_and_business > financial_service > coin_dealer,coin_dealer,Coin Dealer,2,services_and_business,false,financial_service,191 -services_and_business > financial_service > collection_agency,collection_agency,Collection Agency,2,services_and_business,false,financial_service,3868 -services_and_business > financial_service > credit_and_debt_counseling,credit_and_debt_counseling,Credit and Debt Counseling,2,services_and_business,false,financial_service,7867 -services_and_business > financial_service > currency_exchange,currency_exchange,Currency Exchange,2,services_and_business,false,financial_service,17552 -services_and_business > financial_service > customs_broker,customs_broker,Customs Broker,2,services_and_business,false,financial_service,413 -services_and_business > financial_service > debt_relief_service,debt_relief_service,Debt Relief Service,2,services_and_business,false,financial_service,786 -services_and_business > financial_service > financial_advising,financial_advising,Financial Advising,2,services_and_business,false,financial_service,65596 -services_and_business > financial_service > gold_buyer,gold_buyer,Gold Buyer,2,services_and_business,false,financial_service,1893 -services_and_business > financial_service > holding_company,holding_company,Holding Company,2,services_and_business,false,financial_service,1015 -services_and_business > financial_service > installment_loans,installment_loans,Installment Loans,2,services_and_business,false,financial_service,35157 -services_and_business > financial_service > installment_loans > auto_loan_provider,auto_loan_provider,Auto Loan Provider,3,services_and_business,false,financial_service,1301 -services_and_business > financial_service > installment_loans > mortgage_lender,mortgage_lender,Mortgage Lender,3,services_and_business,false,financial_service,23663 -services_and_business > financial_service > insurance_agency,insurance_agency,Insurance Agency,2,services_and_business,false,financial_service,303702 -services_and_business > financial_service > insurance_agency > auto_insurance,auto_insurance,Auto Insurance,3,services_and_business,false,financial_service,37594 -services_and_business > financial_service > insurance_agency > farm_insurance,farm_insurance,Farm Insurance,3,services_and_business,false,financial_service,34 -services_and_business > financial_service > insurance_agency > fidelity_and_surety_bonds,fidelity_and_surety_bonds,Fidelity and Surety Bonds,3,services_and_business,false,financial_service,34 -services_and_business > financial_service > insurance_agency > home_and_rental_insurance,home_and_rental_insurance,Home and Rental Insurance,3,services_and_business,false,financial_service,577 -services_and_business > financial_service > insurance_agency > life_insurance,life_insurance,Life Insurance,3,services_and_business,false,financial_service,11234 -services_and_business > financial_service > investing,investing,Investing,2,services_and_business,false,financial_service,24554 -services_and_business > financial_service > investment_management_company,investment_management_company,Investment Management Company,2,services_and_business,false,financial_service,103 -services_and_business > financial_service > money_transfer_service,money_transfer_service,Money Transfer Service,2,services_and_business,false,financial_service,151147 -services_and_business > financial_service > mortgage_broker,mortgage_broker,Mortgage Broker,2,services_and_business,false,financial_service,55452 -services_and_business > financial_service > private_equity_firm,private_equity_firm,Private Equity Firm,2,services_and_business,false,financial_service,299 -services_and_business > financial_service > public_adjuster,public_adjuster,Public Adjuster,2,services_and_business,false,financial_service,254 -services_and_business > financial_service > real_estate_investment,real_estate_investment,Real Estate Investment,2,services_and_business,false,financial_service,11519 -services_and_business > financial_service > tax_service,tax_service,Tax Service,2,services_and_business,false,financial_service,37965 -services_and_business > financial_service > trusts,trusts,Trusts,2,services_and_business,false,financial_service,71415 -services_and_business > home_service,home_service,Home Service,1,services_and_business,true,home_service,151878 -services_and_business > home_service > air_duct_cleaning_service,air_duct_cleaning_service,Air Duct Cleaning Service,2,services_and_business,false,home_service,1307 -services_and_business > home_service > antenna_service,antenna_service,Antenna Service,2,services_and_business,false,home_service,125 -services_and_business > home_service > appliance_repair_service,appliance_repair_service,Appliance Repair Service,2,services_and_business,false,home_service,44541 -services_and_business > home_service > artificial_turf,artificial_turf,Artificial Turf,2,services_and_business,false,home_service,204 -services_and_business > home_service > bathroom_remodeling,bathroom_remodeling,Bathroom Remodeling,2,services_and_business,false,home_service,6249 -services_and_business > home_service > bathtub_and_sink_repair,bathtub_and_sink_repair,Bathtub and Sink Repair,2,services_and_business,false,home_service,330 -services_and_business > home_service > cabinet_sales_service,cabinet_sales_service,Cabinet Sales Service,2,services_and_business,false,home_service,7706 -services_and_business > home_service > carpenter,carpenter,Carpenter,2,services_and_business,false,home_service,86482 -services_and_business > home_service > carpet_cleaning,carpet_cleaning,Carpet Cleaning,2,services_and_business,false,home_service,18689 -services_and_business > home_service > carpet_dyeing,carpet_dyeing,Carpet Dyeing,2,services_and_business,false,home_service, -services_and_business > home_service > carpet_installation,carpet_installation,Carpet Installation,2,services_and_business,false,home_service,794 -services_and_business > home_service > ceiling_and_roofing_repair_and_service,ceiling_and_roofing_repair_and_service,Ceiling and Roofing Repair and Service,2,services_and_business,false,home_service,187 -services_and_business > home_service > ceiling_and_roofing_repair_and_service > ceiling_service,ceiling_service,Ceiling Service,3,services_and_business,false,home_service,1142 -services_and_business > home_service > ceiling_and_roofing_repair_and_service > roofing,roofing,Roofing,3,services_and_business,false,home_service,88749 -services_and_business > home_service > childproofing,childproofing,Childproofing,2,services_and_business,false,home_service,21 -services_and_business > home_service > chimney_service,chimney_service,Chimney Service,2,services_and_business,false,home_service,221 -services_and_business > home_service > chimney_service > chimney_sweep,chimney_sweep,Chimney Sweep,3,services_and_business,false,home_service,7074 -services_and_business > home_service > clock_repair_service,clock_repair_service,Clock Repair Service,2,services_and_business,false,home_service,179 -services_and_business > home_service > closet_remodeling,closet_remodeling,Closet Remodeling,2,services_and_business,false,home_service,39 -services_and_business > home_service > community_book_box,community_book_box,Community Book Box,2,services_and_business,false,home_service, -services_and_business > home_service > contractor,contractor,Contractor,2,services_and_business,false,home_service,328751 -services_and_business > home_service > contractor > altering_and_remodeling_contractor,altering_and_remodeling_contractor,Altering and Remodeling Contractor,3,services_and_business,false,home_service,4819 -services_and_business > home_service > contractor > building_contractor,building_contractor,Building Contractor,3,services_and_business,false,home_service,10895 -services_and_business > home_service > contractor > flooring_contractor,flooring_contractor,Flooring Contractor,3,services_and_business,false,home_service,17930 -services_and_business > home_service > contractor > paving_contractor,paving_contractor,Paving Contractor,3,services_and_business,false,home_service,10770 -services_and_business > home_service > countertop_installation,countertop_installation,Countertop Installation,2,services_and_business,false,home_service,27141 -services_and_business > home_service > damage_restoration,damage_restoration,Damage Restoration,2,services_and_business,false,home_service,12798 -services_and_business > home_service > damage_restoration > fire_and_water_damage_restoration,fire_and_water_damage_restoration,Fire and Water Damage Restoration,3,services_and_business,false,home_service,7829 -services_and_business > home_service > deck_and_railing_sales_service,deck_and_railing_sales_service,Deck and Railing Sales Service,2,services_and_business,false,home_service,1764 -services_and_business > home_service > demolition_service,demolition_service,Demolition Service,2,services_and_business,false,home_service,2240 -services_and_business > home_service > donation_center,donation_center,Donation Center,2,services_and_business,false,home_service,396 -services_and_business > home_service > door_sales_service,door_sales_service,Door Sales Service,2,services_and_business,false,home_service,3508 -services_and_business > home_service > drywall_service,drywall_service,Drywall Service,2,services_and_business,false,home_service,4120 -services_and_business > home_service > electrician,electrician,Electrician,2,services_and_business,false,home_service,120027 -services_and_business > home_service > excavation_service,excavation_service,Excavation Service,2,services_and_business,false,home_service,17406 -services_and_business > home_service > exterior_design,exterior_design,Exterior Design,2,services_and_business,false,home_service,102 -services_and_business > home_service > fence_and_gate_sales_service,fence_and_gate_sales_service,Fence and Gate Sales Service,2,services_and_business,false,home_service,18025 -services_and_business > home_service > feng_shui,feng_shui,Feng Shui,2,services_and_business,false,home_service,49 -services_and_business > home_service > fire_protection_service,fire_protection_service,Fire Protection Service,2,services_and_business,false,home_service,25857 -services_and_business > home_service > fireplace_service,fireplace_service,Fireplace Service,2,services_and_business,false,home_service,7937 -services_and_business > home_service > firewood,firewood,Firewood,2,services_and_business,false,home_service,456 -services_and_business > home_service > foundation_repair,foundation_repair,Foundation Repair,2,services_and_business,false,home_service,615 -services_and_business > home_service > furniture_assembly,furniture_assembly,Furniture Assembly,2,services_and_business,false,home_service,31407 -services_and_business > home_service > furniture_rental_service,furniture_rental_service,Furniture Rental Service,2,services_and_business,false,home_service,600 -services_and_business > home_service > furniture_repair,furniture_repair,Furniture Repair,2,services_and_business,false,home_service,703 -services_and_business > home_service > furniture_reupholstery,furniture_reupholstery,Furniture Reupholstery,2,services_and_business,false,home_service,1970 -services_and_business > home_service > garage_door_service,garage_door_service,Garage Door Service,2,services_and_business,false,home_service,20276 -services_and_business > home_service > glass_and_mirror_sales_service,glass_and_mirror_sales_service,Glass and Mirror Sales Service,2,services_and_business,false,home_service,38290 -services_and_business > home_service > grout_service,grout_service,Grout Service,2,services_and_business,false,home_service,288 -services_and_business > home_service > gutter_service,gutter_service,Gutter Service,2,services_and_business,false,home_service,7060 -services_and_business > home_service > handyman,handyman,Handyman,2,services_and_business,false,home_service,14458 -services_and_business > home_service > holiday_decorating_service,holiday_decorating_service,Holiday Decorating Service,2,services_and_business,false,home_service,33 -services_and_business > home_service > home_automation,home_automation,Home Automation,2,services_and_business,false,home_service,1097 -services_and_business > home_service > home_cleaning,home_cleaning,Home Cleaning,2,services_and_business,false,home_service,123054 -services_and_business > home_service > home_energy_auditor,home_energy_auditor,Home Energy Auditor,2,services_and_business,false,home_service,120 -services_and_business > home_service > home_inspector,home_inspector,Home Inspector,2,services_and_business,false,home_service,11733 -services_and_business > home_service > home_network_installation,home_network_installation,Home Network Installation,2,services_and_business,false,home_service,113 -services_and_business > home_service > home_security,home_security,Home Security,2,services_and_business,false,home_service,29716 -services_and_business > home_service > home_window_tinting,home_window_tinting,Home Window Tinting,2,services_and_business,false,home_service,617 -services_and_business > home_service > house_sitting,house_sitting,House Sitting,2,services_and_business,false,home_service,512 -services_and_business > home_service > hvac_service,hvac_service,HVAC Service,2,services_and_business,false,home_service,132266 -services_and_business > home_service > hydro_jetting,hydro_jetting,Hydro Jetting,2,services_and_business,false,home_service,35 -services_and_business > home_service > indoor_landscaping,indoor_landscaping,Indoor Landscaping,2,services_and_business,false,home_service,117 -services_and_business > home_service > insulation_installation,insulation_installation,Insulation Installation,2,services_and_business,false,home_service,2606 -services_and_business > home_service > interior_design,interior_design,Interior Design,2,services_and_business,false,home_service,129816 -services_and_business > home_service > irrigation_service,irrigation_service,Irrigation Service,2,services_and_business,false,home_service,2200 -services_and_business > home_service > junk_removal_and_hauling,junk_removal_and_hauling,Junk Removal and Hauling,2,services_and_business,false,home_service,3031 -services_and_business > home_service > key_and_locksmith,key_and_locksmith,Key and Locksmith,2,services_and_business,false,home_service,71344 -services_and_business > home_service > kitchen_remodeling,kitchen_remodeling,Kitchen Remodeling,2,services_and_business,false,home_service,5002 -services_and_business > home_service > knife_sharpening,knife_sharpening,Knife Sharpening,2,services_and_business,false,home_service,293 -services_and_business > home_service > landscaping,landscaping,Landscaping,2,services_and_business,false,home_service,85973 -services_and_business > home_service > landscaping > gardener,gardener,Gardener,3,services_and_business,false,home_service,40551 -services_and_business > home_service > landscaping > landscape_architect,landscape_architect,Landscape Architect,3,services_and_business,false,home_service,8996 -services_and_business > home_service > landscaping > lawn_service,lawn_service,Lawn Service,3,services_and_business,false,home_service,5355 -services_and_business > home_service > landscaping > tree_service,tree_service,Tree Service,3,services_and_business,false,home_service,26175 -services_and_business > home_service > lawn_mower_repair_service,lawn_mower_repair_service,Lawn Mower Repair Service,2,services_and_business,false,home_service,136 -services_and_business > home_service > lighting_fixtures_and_equipment,lighting_fixtures_and_equipment,Lighting Fixtures and Equipment,2,services_and_business,false,home_service,419 -services_and_business > home_service > masonry_concrete,masonry_concrete,Masonry Concrete,2,services_and_business,false,home_service,26076 -services_and_business > home_service > misting_system_service,misting_system_service,Misting System Service,2,services_and_business,false,home_service,4 -services_and_business > home_service > mobile_home_repair,mobile_home_repair,Mobile Home Repair,2,services_and_business,false,home_service,75 -services_and_business > home_service > mover,mover,Mover,2,services_and_business,false,home_service,14144 -services_and_business > home_service > packing_service,packing_service,Packing Service,2,services_and_business,false,home_service,2332 -services_and_business > home_service > painting,painting,Painting,2,services_and_business,false,home_service,58586 -services_and_business > home_service > patio_covers,patio_covers,Patio Covers,2,services_and_business,false,home_service,4993 -services_and_business > home_service > personal_assistant,personal_assistant,Personal Assistant,2,services_and_business,false,home_service,834 -services_and_business > home_service > pest_control_service,pest_control_service,Pest Control Service,2,services_and_business,false,home_service,42345 -services_and_business > home_service > plasterer,plasterer,Plasterer,2,services_and_business,false,home_service,575 -services_and_business > home_service > plumbing,plumbing,Plumbing,2,services_and_business,false,home_service,97862 -services_and_business > home_service > plumbing > backflow_service,backflow_service,Backflow Service,3,services_and_business,false,home_service,96 -services_and_business > home_service > pool_and_hot_tub_service,pool_and_hot_tub_service,Pool and Hot Tub Service,2,services_and_business,false,home_service,3364 -services_and_business > home_service > pool_cleaning,pool_cleaning,Pool Cleaning,2,services_and_business,false,home_service,26936 -services_and_business > home_service > pressure_washing,pressure_washing,Pressure Washing,2,services_and_business,false,home_service,2766 -services_and_business > home_service > recycling_center,recycling_center,Recycling Center,2,services_and_business,false,home_service,28911 -services_and_business > home_service > refinishing_service,refinishing_service,Refinishing Service,2,services_and_business,false,home_service,523 -services_and_business > home_service > security_systems,security_systems,Security Systems,2,services_and_business,false,home_service,7332 -services_and_business > home_service > sewing_and_alterations,sewing_and_alterations,Sewing and Alterations,2,services_and_business,false,home_service,49857 -services_and_business > home_service > sewing_and_alterations > tailor,tailor,Tailor,3,services_and_business,false,home_service,3713 -services_and_business > home_service > shades_and_blinds,shades_and_blinds,Shades and Blinds,2,services_and_business,false,home_service,2507 -services_and_business > home_service > shutters,shutters,Shutters,2,services_and_business,false,home_service,221 -services_and_business > home_service > siding,siding,Siding,2,services_and_business,false,home_service,946 -services_and_business > home_service > snow_removal_service,snow_removal_service,Snow Removal Service,2,services_and_business,false,home_service,330 -services_and_business > home_service > solar_installation,solar_installation,Solar Installation,2,services_and_business,false,home_service,20853 -services_and_business > home_service > solar_panel_cleaning,solar_panel_cleaning,Solar Panel Cleaning,2,services_and_business,false,home_service,17 -services_and_business > home_service > structural_engineer,structural_engineer,Structural Engineer,2,services_and_business,false,home_service,5640 -services_and_business > home_service > stucco_service,stucco_service,Stucco Service,2,services_and_business,false,home_service,465 -services_and_business > home_service > television_service_provider,television_service_provider,Television Service Provider,2,services_and_business,false,home_service,11322 -services_and_business > home_service > tiling,tiling,Tiling,2,services_and_business,false,home_service,8412 -services_and_business > home_service > tv_mounting,tv_mounting,TV Mounting,2,services_and_business,false,home_service,2446 -services_and_business > home_service > wallpaper_installer,wallpaper_installer,Wallpaper Installer,2,services_and_business,false,home_service,32 -services_and_business > home_service > washer_and_dryer_repair_service,washer_and_dryer_repair_service,Washer and Dryer Repair Service,2,services_and_business,false,home_service,96 -services_and_business > home_service > water_delivery,water_delivery,Water Delivery,2,services_and_business,false,home_service,61 -services_and_business > home_service > water_heater_installation_repair,water_heater_installation_repair,Water Heater Installation Repair,2,services_and_business,false,home_service,1753 -services_and_business > home_service > water_purification_service,water_purification_service,Water Purification Service,2,services_and_business,false,home_service,1207 -services_and_business > home_service > waterproofing,waterproofing,Waterproofing,2,services_and_business,false,home_service,1288 -services_and_business > home_service > well_drilling,well_drilling,Well Drilling,2,services_and_business,false,home_service,7766 -services_and_business > home_service > window_washing,window_washing,Window Washing,2,services_and_business,false,home_service,2097 -services_and_business > home_service > windows_installation,windows_installation,Windows Installation,2,services_and_business,false,home_service,32290 -services_and_business > home_service > windows_installation > skylight_installation,skylight_installation,Skylight Installation,3,services_and_business,false,home_service,176 -services_and_business > housing_or_property_service,housing_or_property_service,Housing or Property Service,1,services_and_business,true,housing_or_property_service, -services_and_business > housing_or_property_service > apartment,apartment,Apartment,2,services_and_business,true,apartment,28150 -services_and_business > housing_or_property_service > condominium,condominium,Condominium,2,services_and_business,true,condominium,13157 -services_and_business > housing_or_property_service > halfway_house,halfway_house,Halfway House,2,services_and_business,false,housing_or_property_service,1902 -services_and_business > housing_or_property_service > low_income_housing,low_income_housing,Low Income Housing,2,services_and_business,false,housing_or_property_service,125 -services_and_business > housing_or_property_service > mobile_home_park,mobile_home_park,Mobile Home Park,2,services_and_business,false,housing_or_property_service,12068 -services_and_business > housing_or_property_service > senior_living_facility,senior_living_facility,Senior Living Facility,2,services_and_business,true,senior_living_facility, -services_and_business > housing_or_property_service > senior_living_facility > assisted_living_facility,assisted_living_facility,Assisted Living Facility,3,services_and_business,false,senior_living_facility,27634 -services_and_business > housing_or_property_service > senior_living_facility > memory_care_facility,memory_care_facility,Memory Care Facility,3,services_and_business,false,senior_living_facility,15 -services_and_business > housing_or_property_service > senior_living_facility > retirement_home,retirement_home,Retirement Home,3,services_and_business,false,senior_living_facility,145353 -services_and_business > housing_or_property_service > university_housing,university_housing,University Housing,2,services_and_business,false,housing_or_property_service,974 -services_and_business > industrial_facility_or_service,industrial_facility_or_service,Industrial Facility or Service,1,services_and_business,true,industrial_facility_or_service, -services_and_business > industrial_facility_or_service > hazardous_waste_disposal,hazardous_waste_disposal,Hazardous Waste Disposal,2,services_and_business,false,industrial_facility_or_service,167 -services_and_business > industrial_facility_or_service > powder_coating_service,powder_coating_service,Powder Coating Service,2,services_and_business,false,industrial_facility_or_service,6021 -services_and_business > industrial_facility_or_service > sandblasting_service,sandblasting_service,Sandblasting Service,2,services_and_business,false,industrial_facility_or_service,3216 -services_and_business > laundry_service,laundry_service,Laundry Service,1,services_and_business,true,laundry_service,16277 -services_and_business > laundry_service > dry_cleaning,dry_cleaning,Dry Cleaning,2,services_and_business,false,laundry_service,50734 -services_and_business > laundry_service > laundromat,laundromat,Laundromat,2,services_and_business,false,laundry_service,103129 -services_and_business > legal_service,legal_service,Legal Service,1,services_and_business,true,legal_service,67183 -services_and_business > legal_service > attorney_or_law_firm,attorney_or_law_firm,Attorney or Law Firm,2,services_and_business,true,attorney_or_law_firm,316077 -services_and_business > legal_service > attorney_or_law_firm > appellate_practice_lawyer,appellate_practice_lawyer,Appellate Practice Lawyer,3,services_and_business,false,attorney_or_law_firm,2885 -services_and_business > legal_service > attorney_or_law_firm > bankruptcy_law,bankruptcy_law,Bankruptcy Law,3,services_and_business,false,attorney_or_law_firm,7873 -services_and_business > legal_service > attorney_or_law_firm > business_law,business_law,Business Law,3,services_and_business,false,attorney_or_law_firm,3250 -services_and_business > legal_service > attorney_or_law_firm > civil_rights_lawyer,civil_rights_lawyer,Civil Rights Lawyer,3,services_and_business,false,attorney_or_law_firm,231 -services_and_business > legal_service > attorney_or_law_firm > contract_law,contract_law,Contract Law,3,services_and_business,false,attorney_or_law_firm,349 -services_and_business > legal_service > attorney_or_law_firm > criminal_defense_law,criminal_defense_law,Criminal Defense Law,3,services_and_business,false,attorney_or_law_firm,19239 -services_and_business > legal_service > attorney_or_law_firm > disability_law,disability_law,Disability Law,3,services_and_business,false,attorney_or_law_firm,2121 -services_and_business > legal_service > attorney_or_law_firm > divorce_and_family_law,divorce_and_family_law,Divorce and Family Law,3,services_and_business,false,attorney_or_law_firm,22793 -services_and_business > legal_service > attorney_or_law_firm > dui_law,dui_law,DUI Law,3,services_and_business,false,attorney_or_law_firm,622 -services_and_business > legal_service > attorney_or_law_firm > employment_law,employment_law,Employment Law,3,services_and_business,false,attorney_or_law_firm,8928 -services_and_business > legal_service > attorney_or_law_firm > entertainment_law,entertainment_law,Entertainment Law,3,services_and_business,false,attorney_or_law_firm,243 -services_and_business > legal_service > attorney_or_law_firm > estate_planning_law,estate_planning_law,Estate Planning Law,3,services_and_business,false,attorney_or_law_firm,3111 -services_and_business > legal_service > attorney_or_law_firm > general_litigation,general_litigation,General Litigation,3,services_and_business,false,attorney_or_law_firm,1292 -services_and_business > legal_service > attorney_or_law_firm > immigration_law,immigration_law,Immigration Law,3,services_and_business,false,attorney_or_law_firm,13742 -services_and_business > legal_service > attorney_or_law_firm > ip_and_internet_law,ip_and_internet_law,Ip and Internet Law,3,services_and_business,false,attorney_or_law_firm,2227 -services_and_business > legal_service > attorney_or_law_firm > medical_law,medical_law,Medical Law,3,services_and_business,false,attorney_or_law_firm,1326 -services_and_business > legal_service > attorney_or_law_firm > paralegal_service,paralegal_service,Paralegal Service,3,services_and_business,false,attorney_or_law_firm,551 -services_and_business > legal_service > attorney_or_law_firm > personal_injury_law,personal_injury_law,Personal Injury Law,3,services_and_business,false,attorney_or_law_firm,21505 -services_and_business > legal_service > attorney_or_law_firm > real_estate_law,real_estate_law,Real Estate Law,3,services_and_business,false,attorney_or_law_firm,3697 -services_and_business > legal_service > attorney_or_law_firm > social_security_law,social_security_law,Social Security Law,3,services_and_business,false,attorney_or_law_firm,641 -services_and_business > legal_service > attorney_or_law_firm > tax_law,tax_law,Tax Law,3,services_and_business,false,attorney_or_law_firm,2818 -services_and_business > legal_service > attorney_or_law_firm > traffic_ticketing_law,traffic_ticketing_law,Traffic Ticketing Law,3,services_and_business,false,attorney_or_law_firm,32 -services_and_business > legal_service > attorney_or_law_firm > wills_trusts_and_probate,wills_trusts_and_probate,Wills Trusts and Probate,3,services_and_business,false,attorney_or_law_firm,5986 -services_and_business > legal_service > attorney_or_law_firm > workers_compensation_law,workers_compensation_law,Workers Compensation Law,3,services_and_business,false,attorney_or_law_firm,144 -services_and_business > legal_service > bail_bonds_service,bail_bonds_service,Bail Bonds Service,2,services_and_business,false,legal_service,6067 -services_and_business > legal_service > court_reporter,court_reporter,Court Reporter,2,services_and_business,false,legal_service,522 -services_and_business > legal_service > mediator,mediator,Mediator,2,services_and_business,false,legal_service,728 -services_and_business > legal_service > notary_public,notary_public,Notary Public,2,services_and_business,false,legal_service,31228 -services_and_business > legal_service > patent_law,patent_law,Patent Law,2,services_and_business,false,legal_service,963 -services_and_business > legal_service > private_investigation,private_investigation,Private Investigation,2,services_and_business,false,legal_service,7257 -services_and_business > legal_service > process_server,process_server,Process Server,2,services_and_business,false,legal_service,4678 -services_and_business > legal_service > tenant_and_eviction_law,tenant_and_eviction_law,Tenant and Eviction Law,2,services_and_business,false,legal_service,75 -services_and_business > media_service,media_service,Media Service,1,services_and_business,true,media_service,13702 -services_and_business > media_service > art_restoration_service,art_restoration_service,Art Restoration Service,2,services_and_business,false,media_service,3868 -services_and_business > media_service > bookbinding,bookbinding,Bookbinding,2,services_and_business,false,media_service,1353 -services_and_business > media_service > calligraphy,calligraphy,Calligraphy,2,services_and_business,false,media_service,27 -services_and_business > media_service > commissioned_artist,commissioned_artist,Commissioned Artist,2,services_and_business,false,media_service,593 -services_and_business > media_service > corporate_entertainment_service,corporate_entertainment_service,Corporate Entertainment Service,2,services_and_business,false,media_service,241 -services_and_business > media_service > digitizing_service,digitizing_service,Digitizing Service,2,services_and_business,false,media_service,592 -services_and_business > media_service > engraving,engraving,Engraving,2,services_and_business,false,media_service,461 -services_and_business > media_service > media_critic,media_critic,Media Critic,2,services_and_business,false,media_service,65 -services_and_business > media_service > media_critic > movie_critic,movie_critic,Movie Critic,3,services_and_business,false,media_service,9 -services_and_business > media_service > media_critic > music_critic,music_critic,Music Critic,3,services_and_business,false,media_service,10 -services_and_business > media_service > media_critic > video_game_critic,video_game_critic,Video Game Critic,3,services_and_business,false,media_service,22 -services_and_business > media_service > media_news_company,media_news_company,Media News Company,2,services_and_business,false,media_service,23214 -services_and_business > media_service > media_news_company > animation_studio,animation_studio,Animation Studio,3,services_and_business,false,media_service,2787 -services_and_business > media_service > media_news_company > book_magazine_distribution,book_magazine_distribution,Book Magazine Distribution,3,services_and_business,false,media_service,2767 -services_and_business > media_service > media_news_company > broadcasting_media_production,broadcasting_media_production,Broadcasting Media Production,3,services_and_business,false,media_service,49938 -services_and_business > media_service > media_news_company > game_publisher,game_publisher,Game Publisher,3,services_and_business,false,media_service,4588 -services_and_business > media_service > media_news_company > media_agency,media_agency,Media Agency,3,services_and_business,false,media_service,24427 -services_and_business > media_service > media_news_company > movie_television_studio,movie_television_studio,Movie Television Studio,3,services_and_business,false,media_service,15306 -services_and_business > media_service > media_news_company > music_production,music_production,Music Production,3,services_and_business,false,media_service,52884 -services_and_business > media_service > media_news_company > publisher,publisher,Publisher,3,services_and_business,false,media_service,44126 -services_and_business > media_service > media_news_company > radio_station,radio_station,Radio Station,3,services_and_business,true,radio_station,24573 -services_and_business > media_service > media_news_company > social_media_company,social_media_company,Social Media Company,3,services_and_business,false,media_service,1738 -services_and_business > media_service > media_news_company > television_station,television_station,Television Station,3,services_and_business,true,television_station,1073 -services_and_business > media_service > media_news_company > weather_forecast_service,weather_forecast_service,Weather Forecast Service,3,services_and_business,false,media_service,22 -services_and_business > media_service > media_news_website,media_news_website,Media News Website,2,services_and_business,false,media_service,6598 -services_and_business > media_service > media_restoration_service,media_restoration_service,Media Restoration Service,2,services_and_business,false,media_service,900 -services_and_business > media_service > music_production_service,music_production_service,Music Production Service,2,services_and_business,false,media_service,452 -services_and_business > media_service > musical_instrument_service,musical_instrument_service,Musical Instrument Service,2,services_and_business,false,media_service,338 -services_and_business > media_service > musical_instrument_service > piano_service,piano_service,Piano Service,3,services_and_business,false,media_service,979 -services_and_business > media_service > musical_instrument_service > vocal_coach,vocal_coach,Vocal Coach,3,services_and_business,false,media_service,149 -services_and_business > media_service > photography_service,photography_service,Photography Service,2,services_and_business,false,media_service,10838 -services_and_business > media_service > photography_service > boudoir_photography_service,boudoir_photography_service,Boudoir Photography Service,3,services_and_business,false,media_service,90 -services_and_business > media_service > photography_service > event_photography_service,event_photography_service,Event Photography Service,3,services_and_business,false,media_service,90581 -services_and_business > media_service > photography_service > session_photography_service,session_photography_service,Session Photography Service,3,services_and_business,false,media_service,5664 -services_and_business > media_service > print_media,print_media,Print Media,2,services_and_business,false,media_service,21014 -services_and_business > media_service > record_label,record_label,Record Label,2,services_and_business,false,media_service,6956 -services_and_business > media_service > recording_and_rehearsal_studio,recording_and_rehearsal_studio,Recording and Rehearsal Studio,2,services_and_business,false,media_service,2634 -services_and_business > media_service > studio_taping,studio_taping,Studio Taping,2,services_and_business,false,media_service,90 -services_and_business > media_service > theatrical_production,theatrical_production,Theatrical Production,2,services_and_business,false,media_service,15179 -services_and_business > media_service > video_film_production,video_film_production,Video Film Production,2,services_and_business,false,media_service,3807 -services_and_business > media_service > weather_station,weather_station,Weather Station,2,services_and_business,false,media_service,313 -services_and_business > printing_service,printing_service,Printing Service,1,services_and_business,true,printing_service,298475 -services_and_business > printing_service > 3d_printing_service,3d_printing_service,3d Printing Service,2,services_and_business,false,printing_service,822 -services_and_business > printing_service > commercial_printer,commercial_printer,Commercial Printer,2,services_and_business,false,printing_service,1341 -services_and_business > printing_service > duplication_service,duplication_service,Duplication Service,2,services_and_business,false,printing_service,115 -services_and_business > printing_service > screen_printing_service,screen_printing_service,Screen Printing Service,2,services_and_business,false,printing_service, -services_and_business > printing_service > screen_printing_service > t_shirt_printing_service,t_shirt_printing_service,T-shirt Printing Service,3,services_and_business,false,printing_service,43046 -services_and_business > professional_service,professional_service,Professional Service,1,services_and_business,true,professional_service,1267482 -services_and_business > professional_service > advertising_agency,advertising_agency,Advertising Agency,2,services_and_business,false,professional_service,231973 -services_and_business > professional_service > bank_equipment_service,bank_equipment_service,Bank Equipment Service,2,services_and_business,false,professional_service,729 -services_and_business > professional_service > billing_service,billing_service,Billing Service,2,services_and_business,false,professional_service,676 -services_and_business > professional_service > bookkeeper,bookkeeper,Bookkeeper,2,services_and_business,false,professional_service,2159 -services_and_business > professional_service > business_consulting,business_consulting,Business Consulting,2,services_and_business,false,professional_service,33463 -services_and_business > professional_service > career_counseling,career_counseling,Career Counseling,2,services_and_business,false,professional_service,7160 -services_and_business > professional_service > certification_agency,certification_agency,Certification Agency,2,services_and_business,false,professional_service,151 -services_and_business > professional_service > cleaning_service,cleaning_service,Cleaning Service,2,services_and_business,false,professional_service,20553 -services_and_business > professional_service > cleaning_service > industrial_cleaning_service,industrial_cleaning_service,Industrial Cleaning Service,3,services_and_business,false,professional_service,285 -services_and_business > professional_service > cleaning_service > janitorial_service,janitorial_service,Janitorial Service,3,services_and_business,false,professional_service,23518 -services_and_business > professional_service > cleaning_service > office_cleaning,office_cleaning,Office Cleaning,3,services_and_business,false,professional_service,5232 -services_and_business > professional_service > copywriting_service,copywriting_service,Copywriting Service,2,services_and_business,false,professional_service,846 -services_and_business > professional_service > coworking_space,coworking_space,Coworking Space,2,services_and_business,false,professional_service,10905 -services_and_business > professional_service > e_commerce_service,e_commerce_service,E-commerce Service,2,services_and_business,false,professional_service,7957 -services_and_business > professional_service > editorial_service,editorial_service,Editorial Service,2,services_and_business,false,professional_service,107 -services_and_business > professional_service > employment_agency,employment_agency,Employment Agency,2,services_and_business,false,professional_service,102515 -services_and_business > professional_service > employment_agency > temp_agency,temp_agency,Temp Agency,3,services_and_business,false,professional_service,5007 -services_and_business > professional_service > food_and_beverage_consultant,food_and_beverage_consultant,Food and Beverage Consultant,2,services_and_business,false,professional_service,503 -services_and_business > professional_service > immigration_assistance_service,immigration_assistance_service,Immigration Assistance Service,2,services_and_business,false,professional_service,109 -services_and_business > professional_service > internet_marketing_service,internet_marketing_service,Internet Marketing Service,2,services_and_business,false,professional_service,32808 -services_and_business > professional_service > marketing_agency,marketing_agency,Marketing Agency,2,services_and_business,false,professional_service,124986 -services_and_business > professional_service > merchandising_service,merchandising_service,Merchandising Service,2,services_and_business,false,professional_service,7753 -services_and_business > professional_service > payroll_service,payroll_service,Payroll Service,2,services_and_business,false,professional_service,688 -services_and_business > professional_service > public_relations,public_relations,Public Relations,2,services_and_business,false,professional_service,10979 -services_and_business > professional_service > shredding_service,shredding_service,Shredding Service,2,services_and_business,false,professional_service,2102 -services_and_business > professional_service > social_media_agency,social_media_agency,Social Media Agency,2,services_and_business,false,professional_service,10293 -services_and_business > professional_service > talent_agency,talent_agency,Talent Agency,2,services_and_business,false,professional_service,1307 -services_and_business > professional_service > translation_service,translation_service,Translation Service,2,services_and_business,false,professional_service,3539 -services_and_business > professional_service > typing_service,typing_service,Typing Service,2,services_and_business,false,professional_service,108 -services_and_business > professional_service > writing_service,writing_service,Writing Service,2,services_and_business,false,professional_service,3003 -services_and_business > real_estate_service,real_estate_service,Real Estate Service,1,services_and_business,true,real_estate_service,740534 -services_and_business > real_estate_service > builder,builder,Builder,2,services_and_business,false,real_estate_service,15120 -services_and_business > real_estate_service > builder > home_developer,home_developer,Home Developer,3,services_and_business,false,real_estate_service,124408 -services_and_business > real_estate_service > commercial_real_estate,commercial_real_estate,Commercial Real Estate,2,services_and_business,false,real_estate_service,33119 -services_and_business > real_estate_service > display_home_center,display_home_center,Display Home Center,2,services_and_business,false,real_estate_service,448 -services_and_business > real_estate_service > escrow_service,escrow_service,Escrow Service,2,services_and_business,false,real_estate_service,3770 -services_and_business > real_estate_service > estate_liquidation,estate_liquidation,Estate Liquidation,2,services_and_business,false,real_estate_service,296 -services_and_business > real_estate_service > home_organization,home_organization,Home Organization,2,services_and_business,false,real_estate_service,1812 -services_and_business > real_estate_service > home_staging,home_staging,Home Staging,2,services_and_business,false,real_estate_service,4264 -services_and_business > real_estate_service > homeowner_association,homeowner_association,Homeowner Association,2,services_and_business,false,real_estate_service,289 -services_and_business > real_estate_service > housing_cooperative,housing_cooperative,Housing Cooperative,2,services_and_business,false,real_estate_service,1033 -services_and_business > real_estate_service > kitchen_incubator,kitchen_incubator,Kitchen Incubator,2,services_and_business,false,real_estate_service,4 -services_and_business > real_estate_service > land_surveying,land_surveying,Land Surveying,2,services_and_business,false,real_estate_service,24388 -services_and_business > real_estate_service > mobile_home_dealer,mobile_home_dealer,Mobile Home Dealer,2,services_and_business,false,real_estate_service,7163 -services_and_business > real_estate_service > property_management,property_management,Property Management,2,services_and_business,false,real_estate_service,115520 -services_and_business > real_estate_service > real_estate_agent,real_estate_agent,Real Estate Agent,2,services_and_business,false,real_estate_service,614266 -services_and_business > real_estate_service > real_estate_agent > apartment_agent,apartment_agent,Apartment Agent,3,services_and_business,false,real_estate_service,1316 -services_and_business > real_estate_service > real_estate_photography,real_estate_photography,Real Estate Photography,2,services_and_business,false,real_estate_service,187 -services_and_business > real_estate_service > shared_office_space,shared_office_space,Shared Office Space,2,services_and_business,false,real_estate_service,319 -services_and_business > rental_service,rental_service,Rental Service,1,services_and_business,true,rental_service,69201 -services_and_business > rental_service > art_space_rental,art_space_rental,Art Space Rental,2,services_and_business,false,rental_service,1 -services_and_business > rental_service > bus_rental,bus_rental,Bus Rental,2,services_and_business,false,rental_service,1345 -services_and_business > rental_service > clothing_rental,clothing_rental,Clothing Rental,2,services_and_business,false,rental_service,4920 -services_and_business > rental_service > dumpster_rental,dumpster_rental,Dumpster Rental,2,services_and_business,false,rental_service,1825 -services_and_business > rental_service > machine_and_tool_rental,machine_and_tool_rental,Machine and Tool Rental,2,services_and_business,false,rental_service,8393 -services_and_business > rental_service > rental_kiosk,rental_kiosk,Rental Kiosk,2,services_and_business,false,rental_service,199664 -services_and_business > rental_service > vehicle_rental_service,vehicle_rental_service,Vehicle Rental Service,2,services_and_business,false,rental_service, -services_and_business > rental_service > vehicle_rental_service > car_rental_service,car_rental_service,Car Rental Service,3,services_and_business,false,rental_service,100731 -services_and_business > rental_service > vehicle_rental_service > motorcycle_rental_service,motorcycle_rental_service,Motorcycle Rental Service,3,services_and_business,false,rental_service,2391 -services_and_business > rental_service > vehicle_rental_service > rv_rental_service,rv_rental_service,RV Rental Service,3,services_and_business,false,rental_service,4016 -services_and_business > rental_service > vehicle_rental_service > trailer_rental_service,trailer_rental_service,Trailer Rental Service,3,services_and_business,false,rental_service,6215 -services_and_business > rental_service > vehicle_rental_service > truck_rental_service,truck_rental_service,Truck Rental Service,3,services_and_business,false,rental_service,45453 -services_and_business > security_service,security_service,Security Service,1,services_and_business,true,security_service,7724 -services_and_business > security_service > fingerprinting_service,fingerprinting_service,Fingerprinting Service,2,services_and_business,false,security_service,411 -services_and_business > shipping_or_delivery_service,shipping_or_delivery_service,Shipping or Delivery Service,1,services_and_business,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,services_and_business,false,shipping_or_delivery_service,54895 -services_and_business > shipping_or_delivery_service > mailbox_center,mailbox_center,Mailbox Center,2,services_and_business,false,shipping_or_delivery_service,437 -services_and_business > shipping_or_delivery_service > packaging_contractors_and_service,packaging_contractors_and_service,Packaging Contractors and Service,2,services_and_business,false,shipping_or_delivery_service,452 -services_and_business > shipping_or_delivery_service > post_office,post_office,Post Office,2,services_and_business,false,shipping_or_delivery_service,233650 -services_and_business > shipping_or_delivery_service > shipping_center,shipping_center,Shipping Center,2,services_and_business,false,shipping_or_delivery_service,87524 -services_and_business > shipping_or_delivery_service > shipping_collection_service,shipping_collection_service,Shipping Collection Service,2,services_and_business,false,shipping_or_delivery_service,1061 -services_and_business > shipping_or_delivery_service > vehicle_shipping,vehicle_shipping,Vehicle Shipping,2,services_and_business,false,shipping_or_delivery_service,3612 -services_and_business > storage_facility,storage_facility,Storage Facility,1,services_and_business,true,storage_facility,80256 -services_and_business > storage_facility > automotive_storage_facility,automotive_storage_facility,Automotive Storage Facility,2,services_and_business,false,storage_facility,2232 -services_and_business > storage_facility > boat_storage_facility,boat_storage_facility,Boat Storage Facility,2,services_and_business,false,storage_facility,462 -services_and_business > storage_facility > package_locker,package_locker,Package Locker,2,services_and_business,false,storage_facility,121868 -services_and_business > storage_facility > rv_storage_facility,rv_storage_facility,RV Storage Facility,2,services_and_business,false,storage_facility,674 -services_and_business > storage_facility > self_storage_facility,self_storage_facility,Self Storage Facility,2,services_and_business,false,storage_facility,64145 -services_and_business > technical_service,technical_service,Technical Service,1,services_and_business,true,technical_service, -services_and_business > technical_service > acoustical_consultant,acoustical_consultant,Acoustical Consultant,2,services_and_business,false,technical_service,218 -services_and_business > technical_service > bike_repair_maintenance,bike_repair_maintenance,Bike Repair Maintenance,2,services_and_business,false,technical_service,13744 -services_and_business > technical_service > commercial_refrigeration,commercial_refrigeration,Commercial Refrigeration,2,services_and_business,false,technical_service,8396 -services_and_business > technical_service > computer_hardware_company,computer_hardware_company,Computer Hardware Company,2,services_and_business,false,technical_service,30718 -services_and_business > technical_service > electronics_repair_shop,electronics_repair_shop,Electronics Repair Shop,2,services_and_business,false,technical_service,1938 -services_and_business > technical_service > elevator_service,elevator_service,Elevator Service,2,services_and_business,false,technical_service,8423 -services_and_business > technical_service > generator_installation_repair,generator_installation_repair,Generator Installation Repair,2,services_and_business,false,technical_service,67 -services_and_business > technical_service > hydraulic_repair_service,hydraulic_repair_service,Hydraulic Repair Service,2,services_and_business,false,technical_service,514 -services_and_business > technical_service > internet_service_provider,internet_service_provider,Internet Service Provider,2,services_and_business,false,technical_service,41419 -services_and_business > technical_service > internet_service_provider > web_hosting_service,web_hosting_service,Web Hosting Service,3,services_and_business,false,technical_service,1274 -services_and_business > technical_service > it_service_and_computer_repair,it_service_and_computer_repair,IT Service and Computer Repair,2,services_and_business,false,technical_service,175655 -services_and_business > technical_service > it_service_and_computer_repair > it_consultant,it_consultant,IT Consultant,3,services_and_business,false,technical_service,2072 -services_and_business > technical_service > it_service_and_computer_repair > mobile_phone_repair,mobile_phone_repair,Mobile Phone Repair,3,services_and_business,false,technical_service,8599 -services_and_business > technical_service > jewelry_repair_service,jewelry_repair_service,Jewelry Repair Service,2,services_and_business,false,technical_service,49 -services_and_business > technical_service > laboratory,laboratory,Laboratory,2,services_and_business,false,technical_service,14241 -services_and_business > technical_service > machine_shop,machine_shop,Machine Shop,2,services_and_business,false,technical_service,55723 -services_and_business > technical_service > metal_detector_service,metal_detector_service,Metal Detector Service,2,services_and_business,false,technical_service,8 -services_and_business > technical_service > software_development,software_development,Software Development,2,services_and_business,false,technical_service,148533 -services_and_business > technical_service > taxidermist,taxidermist,Taxidermist,2,services_and_business,false,technical_service,5351 -services_and_business > technical_service > telephone_service,telephone_service,Telephone Service,2,services_and_business,false,technical_service,678 -services_and_business > technical_service > watch_repair_service,watch_repair_service,Watch Repair Service,2,services_and_business,false,technical_service,119 -services_and_business > telecommunications_service,telecommunications_service,Telecommunications Service,1,services_and_business,true,telecommunications_service,35375 -services_and_business > utility_energy_infrastructure,utility_energy_infrastructure,Utility Energy Infrastructure,1,services_and_business,true,utility_energy_infrastructure, -services_and_business > utility_energy_infrastructure > wind_energy,wind_energy,Wind Energy,2,services_and_business,false,utility_energy_infrastructure,69 -shopping,shopping,Shopping,0,shopping,true,shopping,1225096 -shopping > convenience_store,convenience_store,Convenience Store,1,shopping,true,convenience_store,469802 -shopping > department_store,department_store,Department Store,1,shopping,true,department_store,86591 -shopping > discount_store,discount_store,Discount Store,1,shopping,true,discount_store,124970 -shopping > fashion_and_apparel_store,fashion_and_apparel_store,Fashion and Apparel Store,1,shopping,true,fashion_and_apparel_store,97108 -shopping > fashion_and_apparel_store > baby_gear_and_nursery_store,baby_gear_and_nursery_store,Baby Gear and Nursery Store,2,shopping,false,fashion_and_apparel_store,5475 -shopping > fashion_and_apparel_store > clothing_store,clothing_store,Clothing Store,2,shopping,false,fashion_and_apparel_store,897039 -shopping > fashion_and_apparel_store > clothing_store > bridal_shop,bridal_shop,Bridal Shop,3,shopping,false,fashion_and_apparel_store,55741 -shopping > fashion_and_apparel_store > clothing_store > childrens_clothing_store,childrens_clothing_store,Children's Clothing Store,3,shopping,false,fashion_and_apparel_store,119892 -shopping > fashion_and_apparel_store > clothing_store > custom_clothing_store,custom_clothing_store,Custom Clothing Store,3,shopping,false,fashion_and_apparel_store,1266 -shopping > fashion_and_apparel_store > clothing_store > denim_wear_store,denim_wear_store,Denim Wear Store,3,shopping,false,fashion_and_apparel_store,233 -shopping > fashion_and_apparel_store > clothing_store > designer_clothing,designer_clothing,Designer Clothing,3,shopping,false,fashion_and_apparel_store,6818 -shopping > fashion_and_apparel_store > clothing_store > formal_wear_store,formal_wear_store,Formal Wear Store,3,shopping,false,fashion_and_apparel_store,1310 -shopping > fashion_and_apparel_store > clothing_store > fur_clothing,fur_clothing,Fur Clothing,3,shopping,false,fashion_and_apparel_store,572 -shopping > fashion_and_apparel_store > clothing_store > lingerie_store,lingerie_store,Lingerie Store,3,shopping,false,fashion_and_apparel_store,49278 -shopping > fashion_and_apparel_store > clothing_store > maternity_wear,maternity_wear,Maternity Wear,3,shopping,false,fashion_and_apparel_store,2582 -shopping > fashion_and_apparel_store > clothing_store > mens_clothing_store,mens_clothing_store,Men's Clothing Store,3,shopping,false,fashion_and_apparel_store,98311 -shopping > fashion_and_apparel_store > clothing_store > plus_size_clothing_store,plus_size_clothing_store,Plus Size Clothing Store,3,shopping,false,fashion_and_apparel_store,371 -shopping > fashion_and_apparel_store > clothing_store > sleepwear,sleepwear,Sleepwear,3,shopping,false,fashion_and_apparel_store,2 -shopping > fashion_and_apparel_store > clothing_store > t_shirt_store,t_shirt_store,T-shirt Store,3,shopping,false,fashion_and_apparel_store,5198 -shopping > fashion_and_apparel_store > clothing_store > t_shirt_store > custom_t_shirt_store,custom_t_shirt_store,Custom T-shirt Store,4,shopping,false,fashion_and_apparel_store,2290 -shopping > fashion_and_apparel_store > clothing_store > traditional_clothing,traditional_clothing,Traditional Clothing,3,shopping,false,fashion_and_apparel_store,1809 -shopping > fashion_and_apparel_store > clothing_store > traditional_clothing > saree_shop,saree_shop,Saree Shop,4,shopping,false,fashion_and_apparel_store,48 -shopping > fashion_and_apparel_store > clothing_store > uniform_store,uniform_store,Uniform Store,3,shopping,false,fashion_and_apparel_store,22370 -shopping > fashion_and_apparel_store > clothing_store > womens_clothing_store,womens_clothing_store,Women's Clothing Store,3,shopping,false,fashion_and_apparel_store,301400 -shopping > fashion_and_apparel_store > eyewear_store,eyewear_store,Eyewear Store,2,shopping,false,fashion_and_apparel_store,181002 -shopping > fashion_and_apparel_store > eyewear_store > sunglasses_store,sunglasses_store,Sunglasses Store,3,shopping,false,fashion_and_apparel_store,5463 -shopping > fashion_and_apparel_store > fashion_accessories_store,fashion_accessories_store,Fashion Accessories Store,2,shopping,false,fashion_and_apparel_store,93907 -shopping > fashion_and_apparel_store > fashion_accessories_store > handbag_store,handbag_store,Handbag Store,3,shopping,false,fashion_and_apparel_store,1407 -shopping > fashion_and_apparel_store > fashion_accessories_store > hat_store,hat_store,Hat Store,3,shopping,false,fashion_and_apparel_store,6541 -shopping > fashion_and_apparel_store > fashion_boutique,fashion_boutique,Fashion Boutique,2,shopping,false,fashion_and_apparel_store,113370 -shopping > fashion_and_apparel_store > jewelry_store,jewelry_store,Jewelry Store,2,shopping,false,fashion_and_apparel_store,279379 -shopping > fashion_and_apparel_store > jewelry_store > diamond_dealer,diamond_dealer,Diamond Dealer,3,shopping,false,fashion_and_apparel_store,544 -shopping > fashion_and_apparel_store > jewelry_store > goldsmith,goldsmith,Goldsmith,3,shopping,false,fashion_and_apparel_store,109 -shopping > fashion_and_apparel_store > jewelry_store > watch_store,watch_store,Watch Store,3,shopping,false,fashion_and_apparel_store,4377 -shopping > fashion_and_apparel_store > leather_goods_store,leather_goods_store,Leather Goods Store,2,shopping,false,fashion_and_apparel_store,3745 -shopping > fashion_and_apparel_store > luggage_store,luggage_store,Luggage Store,2,shopping,false,fashion_and_apparel_store,25835 -shopping > fashion_and_apparel_store > shoe_store,shoe_store,Shoe Store,2,shopping,false,fashion_and_apparel_store,244075 -shopping > fashion_and_apparel_store > shoe_store > orthopedic_shoe_store,orthopedic_shoe_store,Orthopedic Shoe Store,3,shopping,false,fashion_and_apparel_store,981 -shopping > food_and_beverage_store,food_and_beverage_store,Food and Beverage Store,1,shopping,true,food_and_beverage_store,65762 -shopping > food_and_beverage_store > beer_wine_spirits_store,beer_wine_spirits_store,Beer Wine Spirits Store,2,shopping,false,food_and_beverage_store,17709 -shopping > food_and_beverage_store > brewing_supply_store,brewing_supply_store,Brewing Supply Store,2,shopping,false,food_and_beverage_store,445 -shopping > food_and_beverage_store > butcher_shop,butcher_shop,Butcher Shop,2,shopping,false,food_and_beverage_store,138455 -shopping > food_and_beverage_store > cheese_shop,cheese_shop,Cheese Shop,2,shopping,false,food_and_beverage_store,13765 -shopping > food_and_beverage_store > coffee_and_tea_supplies,coffee_and_tea_supplies,Coffee and Tea Supplies,2,shopping,false,food_and_beverage_store,642 -shopping > food_and_beverage_store > csa_farm,csa_farm,Csa Farm,2,shopping,false,food_and_beverage_store,18 -shopping > food_and_beverage_store > fishmonger,fishmonger,Fishmonger,2,shopping,false,food_and_beverage_store,29577 -shopping > food_and_beverage_store > grocery_store,grocery_store,Grocery Store,2,shopping,false,food_and_beverage_store,928726 -shopping > food_and_beverage_store > grocery_store > asian_grocery_store,asian_grocery_store,Asian Grocery Store,3,shopping,false,food_and_beverage_store,821 -shopping > food_and_beverage_store > grocery_store > ethical_grocery_store,ethical_grocery_store,Ethical Grocery Store,3,shopping,false,food_and_beverage_store,2394 -shopping > food_and_beverage_store > grocery_store > indian_grocery_store,indian_grocery_store,Indian Grocery Store,3,shopping,false,food_and_beverage_store,5884 -shopping > food_and_beverage_store > grocery_store > international_grocery_store,international_grocery_store,International Grocery Store,3,shopping,false,food_and_beverage_store,2006 -shopping > food_and_beverage_store > grocery_store > japanese_grocery_store,japanese_grocery_store,Japanese Grocery Store,3,shopping,false,food_and_beverage_store,36 -shopping > food_and_beverage_store > grocery_store > korean_grocery_store,korean_grocery_store,Korean Grocery Store,3,shopping,false,food_and_beverage_store,10588 -shopping > food_and_beverage_store > grocery_store > kosher_grocery_store,kosher_grocery_store,Kosher Grocery Store,3,shopping,false,food_and_beverage_store,50 -shopping > food_and_beverage_store > grocery_store > mexican_grocery_store,mexican_grocery_store,Mexican Grocery Store,3,shopping,false,food_and_beverage_store,482 -shopping > food_and_beverage_store > grocery_store > organic_grocery_store,organic_grocery_store,Organic Grocery Store,3,shopping,false,food_and_beverage_store,20512 -shopping > food_and_beverage_store > grocery_store > russian_grocery_store,russian_grocery_store,Russian Grocery Store,3,shopping,false,food_and_beverage_store,11 -shopping > food_and_beverage_store > health_food_store,health_food_store,Health Food Store,2,shopping,false,food_and_beverage_store,76534 -shopping > food_and_beverage_store > herb_and_spice_store,herb_and_spice_store,Herb and Spice Store,2,shopping,false,food_and_beverage_store,3236 -shopping > food_and_beverage_store > honey_farm_shop,honey_farm_shop,Honey Farm Shop,2,shopping,false,food_and_beverage_store,410 -shopping > food_and_beverage_store > imported_food_store,imported_food_store,Imported Food Store,2,shopping,false,food_and_beverage_store,650 -shopping > food_and_beverage_store > liquor_store,liquor_store,Liquor Store,2,shopping,false,food_and_beverage_store,145040 -shopping > food_and_beverage_store > olive_oil_store,olive_oil_store,Olive Oil Store,2,shopping,false,food_and_beverage_store,189 -shopping > food_and_beverage_store > patisserie_cake_shop,patisserie_cake_shop,Patisserie Cake Shop,2,shopping,false,food_and_beverage_store,3844 -shopping > food_and_beverage_store > patisserie_cake_shop > custom_cakes_shop,custom_cakes_shop,Custom Cakes Shop,3,shopping,false,food_and_beverage_store,668 -shopping > food_and_beverage_store > pick_your_own_farm,pick_your_own_farm,Pick Your Own Farm,2,shopping,false,food_and_beverage_store,56 -shopping > food_and_beverage_store > seafood_market,seafood_market,Seafood Market,2,shopping,false,food_and_beverage_store,2480 -shopping > food_and_beverage_store > smokehouse,smokehouse,Smokehouse,2,shopping,false,food_and_beverage_store,121 -shopping > food_and_beverage_store > specialty_foods_store,specialty_foods_store,Specialty Foods Store,2,shopping,false,food_and_beverage_store,32027 -shopping > food_and_beverage_store > specialty_foods_store > dairy_store,dairy_store,Dairy Store,3,shopping,false,food_and_beverage_store,1840 -shopping > food_and_beverage_store > specialty_foods_store > frozen_foods_store,frozen_foods_store,Frozen Foods Store,3,shopping,false,food_and_beverage_store,1793 -shopping > food_and_beverage_store > specialty_foods_store > pasta_store,pasta_store,Pasta Store,3,shopping,false,food_and_beverage_store,495 -shopping > food_and_beverage_store > specialty_foods_store > produce_store,produce_store,Produce Store,3,shopping,false,food_and_beverage_store,69238 -shopping > food_and_beverage_store > specialty_foods_store > rice_store,rice_store,Rice Store,3,shopping,false,food_and_beverage_store,43 -shopping > food_and_beverage_store > tobacco_shop,tobacco_shop,Tobacco Shop,2,shopping,false,food_and_beverage_store,63044 -shopping > food_and_beverage_store > vitamin_and_supplement_store,vitamin_and_supplement_store,Vitamin and Supplement Store,2,shopping,false,food_and_beverage_store,45198 -shopping > food_and_beverage_store > water_store,water_store,Water Store,2,shopping,false,food_and_beverage_store,221 -shopping > kiosk,kiosk,Kiosk,1,shopping,true,kiosk,1865 -shopping > market,market,Market,1,shopping,true,market, -shopping > market > bazaar,bazaar,Bazaar,2,shopping,false,market,11 -shopping > market > farmers_market,farmers_market,Farmers Market,2,shopping,true,farmers_market,60196 -shopping > market > health_market,health_market,Health Market,2,shopping,false,market,2549 -shopping > market > holiday_market,holiday_market,Holiday Market,2,shopping,false,market,25 -shopping > market > market_stall,market_stall,Market Stall,2,shopping,false,market,2 -shopping > market > night_market,night_market,Night Market,2,shopping,false,market,4497 -shopping > market > public_market,public_market,Public Market,2,shopping,false,market,722 -shopping > market > shopping_passage,shopping_passage,Shopping Passage,2,shopping,false,market,3 -shopping > market > street_vendor,street_vendor,Street Vendor,2,shopping,false,market,253 -shopping > second_hand_store,second_hand_store,Second Hand Store,1,shopping,true,second_hand_store,84231 -shopping > second_hand_store > antique_store,antique_store,Antique Store,2,shopping,false,second_hand_store,57939 -shopping > second_hand_store > flea_market,flea_market,Flea Market,2,shopping,false,second_hand_store,26044 -shopping > second_hand_store > junkyard,junkyard,Junkyard,2,shopping,false,second_hand_store,8362 -shopping > second_hand_store > pawn_shop,pawn_shop,Pawn Shop,2,shopping,false,second_hand_store,29797 -shopping > second_hand_store > second_hand_clothing_store,second_hand_clothing_store,Second Hand Clothing Store,2,shopping,false,second_hand_store,21717 -shopping > shopping_mall,shopping_mall,Shopping Mall,1,shopping,true,shopping_mall,186795 -shopping > shopping_service,shopping_service,Shopping Service,1,shopping,true,shopping_service, -shopping > shopping_service > personal_shopper,personal_shopper,Personal Shopper,2,shopping,false,shopping_service,303 -shopping > specialty_store,specialty_store,Specialty Store,1,shopping,true,specialty_store,53 -shopping > specialty_store > adult_store,adult_store,Adult Store,2,shopping,false,specialty_store,1645 -shopping > specialty_store > animal_and_pet_store,animal_and_pet_store,Animal and Pet Store,2,shopping,true,animal_and_pet_store, -shopping > specialty_store > animal_and_pet_store > horse_equipment_shop,horse_equipment_shop,Horse Equipment Shop,3,shopping,false,animal_and_pet_store,570 -shopping > specialty_store > animal_and_pet_store > livestock_feed_and_supply_store,livestock_feed_and_supply_store,Livestock Feed and Supply Store,3,shopping,false,animal_and_pet_store,1323 -shopping > specialty_store > animal_and_pet_store > pet_store,pet_store,Pet Store,3,shopping,false,animal_and_pet_store,163852 -shopping > specialty_store > animal_and_pet_store > pet_store > aquatic_pet_store,aquatic_pet_store,Aquatic Pet Store,4,shopping,false,animal_and_pet_store,12151 -shopping > specialty_store > animal_and_pet_store > pet_store > bird_store,bird_store,Bird Store,4,shopping,false,animal_and_pet_store,187 -shopping > specialty_store > animal_and_pet_store > pet_store > reptile_store,reptile_store,Reptile Store,4,shopping,false,animal_and_pet_store,2325 -shopping > specialty_store > arts_crafts_and_hobby_store,arts_crafts_and_hobby_store,Arts Crafts and Hobby Store,2,shopping,true,arts_crafts_and_hobby_store,142261 -shopping > specialty_store > arts_crafts_and_hobby_store > art_supply_store,art_supply_store,Art Supply Store,3,shopping,false,arts_crafts_and_hobby_store,1852 -shopping > specialty_store > arts_crafts_and_hobby_store > atelier,atelier,Atelier,3,shopping,false,arts_crafts_and_hobby_store,44 -shopping > specialty_store > arts_crafts_and_hobby_store > cooking_classes,cooking_classes,Cooking Classes,3,shopping,false,arts_crafts_and_hobby_store,540 -shopping > specialty_store > arts_crafts_and_hobby_store > costume_store,costume_store,Costume Store,3,shopping,false,arts_crafts_and_hobby_store,18243 -shopping > specialty_store > arts_crafts_and_hobby_store > craft_store,craft_store,Craft Store,3,shopping,false,arts_crafts_and_hobby_store,4064 -shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > embroidery_and_crochet_store,embroidery_and_crochet_store,Embroidery and Crochet Store,4,shopping,false,arts_crafts_and_hobby_store,3876 -shopping > specialty_store > arts_crafts_and_hobby_store > craft_store > knitting_supply_store,knitting_supply_store,Knitting Supply Store,4,shopping,false,arts_crafts_and_hobby_store,1259 -shopping > specialty_store > arts_crafts_and_hobby_store > fabric_store,fabric_store,Fabric Store,3,shopping,false,arts_crafts_and_hobby_store,54423 -shopping > specialty_store > arts_crafts_and_hobby_store > framing_store,framing_store,Framing Store,3,shopping,false,arts_crafts_and_hobby_store,5524 -shopping > specialty_store > arts_crafts_and_hobby_store > hobby_shop,hobby_shop,Hobby Shop,3,shopping,false,arts_crafts_and_hobby_store,29009 -shopping > specialty_store > auction_house,auction_house,Auction House,2,shopping,false,specialty_store,17731 -shopping > specialty_store > auction_house > car_auction,car_auction,Car Auction,3,shopping,false,specialty_store,605 -shopping > specialty_store > books_music_and_video_store,books_music_and_video_store,Books Music and Video Store,2,shopping,true,books_music_and_video_store,5663 -shopping > specialty_store > books_music_and_video_store > bookstore,bookstore,Bookstore,3,shopping,false,books_music_and_video_store,137135 -shopping > specialty_store > books_music_and_video_store > bookstore > academic_bookstore,academic_bookstore,Academic Bookstore,4,shopping,false,books_music_and_video_store,1830 -shopping > specialty_store > books_music_and_video_store > bookstore > comic_books_store,comic_books_store,Comic Books Store,4,shopping,false,books_music_and_video_store,9722 -shopping > specialty_store > books_music_and_video_store > bookstore > used_bookstore,used_bookstore,Used Bookstore,4,shopping,false,books_music_and_video_store,875 -shopping > specialty_store > books_music_and_video_store > music_and_dvd_store,music_and_dvd_store,Music and DVD Store,3,shopping,false,books_music_and_video_store,25119 -shopping > specialty_store > books_music_and_video_store > newspaper_and_magazines_store,newspaper_and_magazines_store,Newspaper and Magazines Store,3,shopping,false,books_music_and_video_store,20879 -shopping > specialty_store > books_music_and_video_store > video_and_video_game_rental,video_and_video_game_rental,Video and Video Game Rental,3,shopping,false,books_music_and_video_store,10110 -shopping > specialty_store > books_music_and_video_store > video_game_store,video_game_store,Video Game Store,3,shopping,false,books_music_and_video_store,25468 -shopping > specialty_store > books_music_and_video_store > vinyl_record_store,vinyl_record_store,Vinyl Record Store,3,shopping,false,books_music_and_video_store,1808 -shopping > specialty_store > cards_and_stationery_store,cards_and_stationery_store,Cards and Stationery Store,2,shopping,false,specialty_store,4177 -shopping > specialty_store > customized_merchandise_store,customized_merchandise_store,Customized Merchandise Store,2,shopping,false,specialty_store,2917 -shopping > specialty_store > duty_free_store,duty_free_store,Duty Free Store,2,shopping,false,specialty_store,1158 -shopping > specialty_store > educational_supply_store,educational_supply_store,Educational Supply Store,2,shopping,false,specialty_store,8301 -shopping > specialty_store > electronics_store,electronics_store,Electronics Store,2,shopping,true,electronics_store,256895 -shopping > specialty_store > electronics_store > audio_visual_equipment_store,audio_visual_equipment_store,Audio Visual Equipment Store,3,shopping,false,electronics_store,17006 -shopping > specialty_store > electronics_store > battery_store,battery_store,Battery Store,3,shopping,false,electronics_store,4056 -shopping > specialty_store > electronics_store > camera_and_photography_store,camera_and_photography_store,Camera and Photography Store,3,shopping,false,electronics_store,32900 -shopping > specialty_store > electronics_store > car_stereo_store,car_stereo_store,Car Stereo Store,3,shopping,false,electronics_store,13180 -shopping > specialty_store > electronics_store > computer_store,computer_store,Computer Store,3,shopping,false,electronics_store,99986 -shopping > specialty_store > electronics_store > drone_store,drone_store,Drone Store,3,shopping,false,electronics_store,193 -shopping > specialty_store > electronics_store > home_theater_systems_stores,home_theater_systems_stores,Home Theater Systems Stores,3,shopping,false,electronics_store,2139 -shopping > specialty_store > electronics_store > mobile_phone_accessory_store,mobile_phone_accessory_store,Mobile Phone Accessory Store,3,shopping,false,electronics_store,6121 -shopping > specialty_store > electronics_store > mobile_phone_store,mobile_phone_store,Mobile Phone Store,3,shopping,false,electronics_store,331501 -shopping > specialty_store > farming_equipment_and_supply_store,farming_equipment_and_supply_store,Farming Equipment and Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > farming_equipment_and_supply_store > agricultural_seed_store,agricultural_seed_store,Agricultural Seed Store,3,shopping,false,specialty_store,620 -shopping > specialty_store > farming_equipment_and_supply_store > farming_equipment_store,farming_equipment_store,Farming Equipment Store,3,shopping,false,specialty_store,1267 -shopping > specialty_store > fireworks_store,fireworks_store,Fireworks Store,2,shopping,false,specialty_store,11824 -shopping > specialty_store > flowers_and_gifts_store,flowers_and_gifts_store,Flowers and Gifts Store,2,shopping,true,flowers_and_gifts_store,398227 -shopping > specialty_store > flowers_and_gifts_store > florist,florist,Florist,3,shopping,false,flowers_and_gifts_store,41622 -shopping > specialty_store > flowers_and_gifts_store > flower_market,flower_market,Flower Market,3,shopping,false,flowers_and_gifts_store,79 -shopping > specialty_store > flowers_and_gifts_store > gift_shop,gift_shop,Gift Shop,3,shopping,false,flowers_and_gifts_store,55126 -shopping > specialty_store > gemstone_and_mineral_store,gemstone_and_mineral_store,Gemstone and Mineral Store,2,shopping,false,specialty_store,448 -shopping > specialty_store > gun_and_ammo_store,gun_and_ammo_store,Gun and Ammo Store,2,shopping,false,specialty_store,18276 -shopping > specialty_store > gun_and_ammo_store > gunsmith,gunsmith,Gunsmith,3,shopping,false,specialty_store,58 -shopping > specialty_store > hardware_home_and_garden_store,hardware_home_and_garden_store,Hardware Home and Garden Store,2,shopping,true,hardware_home_and_garden_store,30904 -shopping > specialty_store > hardware_home_and_garden_store > appliance_store,appliance_store,Appliance Store,3,shopping,false,hardware_home_and_garden_store,64912 -shopping > specialty_store > hardware_home_and_garden_store > bedding_and_bath_store,bedding_and_bath_store,Bedding and Bath Store,3,shopping,false,hardware_home_and_garden_store,1926 -shopping > specialty_store > hardware_home_and_garden_store > building_supply_store,building_supply_store,Building Supply Store,3,shopping,false,hardware_home_and_garden_store,318226 -shopping > specialty_store > hardware_home_and_garden_store > building_supply_store > lumber_store,lumber_store,Lumber Store,4,shopping,false,hardware_home_and_garden_store,27265 -shopping > specialty_store > hardware_home_and_garden_store > candle_store,candle_store,Candle Store,3,shopping,false,hardware_home_and_garden_store,2398 -shopping > specialty_store > hardware_home_and_garden_store > carpet_store,carpet_store,Carpet Store,3,shopping,false,hardware_home_and_garden_store,63339 -shopping > specialty_store > hardware_home_and_garden_store > christmas_tree_store,christmas_tree_store,Christmas Tree Store,3,shopping,false,hardware_home_and_garden_store,2979 -shopping > specialty_store > hardware_home_and_garden_store > do_it_yourself_store,do_it_yourself_store,Do IT Yourself Store,3,shopping,false,hardware_home_and_garden_store,2677 -shopping > specialty_store > hardware_home_and_garden_store > electrical_supply_store,electrical_supply_store,Electrical Supply Store,3,shopping,false,hardware_home_and_garden_store,10508 -shopping > specialty_store > hardware_home_and_garden_store > flooring_store,flooring_store,Flooring Store,3,shopping,false,hardware_home_and_garden_store,11120 -shopping > specialty_store > hardware_home_and_garden_store > furniture_accessory_store,furniture_accessory_store,Furniture Accessory Store,3,shopping,false,hardware_home_and_garden_store,2131 -shopping > specialty_store > hardware_home_and_garden_store > furniture_store,furniture_store,Furniture Store,3,shopping,false,hardware_home_and_garden_store,460012 -shopping > specialty_store > hardware_home_and_garden_store > grilling_equipment_store,grilling_equipment_store,Grilling Equipment Store,3,shopping,false,hardware_home_and_garden_store,603 -shopping > specialty_store > hardware_home_and_garden_store > hardware_store,hardware_store,Hardware Store,3,shopping,false,hardware_home_and_garden_store,259867 -shopping > specialty_store > hardware_home_and_garden_store > hardware_store > welding_supply_store,welding_supply_store,Welding Supply Store,4,shopping,false,hardware_home_and_garden_store,2972 -shopping > specialty_store > hardware_home_and_garden_store > holiday_decor_store,holiday_decor_store,Holiday Decor Store,3,shopping,false,hardware_home_and_garden_store,330 -shopping > specialty_store > hardware_home_and_garden_store > home_decor_store,home_decor_store,Home Decor Store,3,shopping,false,hardware_home_and_garden_store,12302 -shopping > specialty_store > hardware_home_and_garden_store > home_goods_store,home_goods_store,Home Goods Store,3,shopping,false,hardware_home_and_garden_store,125802 -shopping > specialty_store > hardware_home_and_garden_store > home_improvement_store,home_improvement_store,Home Improvement Store,3,shopping,false,hardware_home_and_garden_store,118242 -shopping > specialty_store > hardware_home_and_garden_store > hot_tub_and_pool_store,hot_tub_and_pool_store,Hot Tub and Pool Store,3,shopping,false,hardware_home_and_garden_store,4394 -shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store,kitchen_and_bath_store,Kitchen and Bath Store,3,shopping,false,hardware_home_and_garden_store,9502 -shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > bathroom_fixture_store,bathroom_fixture_store,Bathroom Fixture Store,4,shopping,false,hardware_home_and_garden_store,313 -shopping > specialty_store > hardware_home_and_garden_store > kitchen_and_bath_store > kitchen_supply_store,kitchen_supply_store,Kitchen Supply Store,4,shopping,false,hardware_home_and_garden_store,12351 -shopping > specialty_store > hardware_home_and_garden_store > lawn_mower_store,lawn_mower_store,Lawn Mower Store,3,shopping,false,hardware_home_and_garden_store,2149 -shopping > specialty_store > hardware_home_and_garden_store > lighting_store,lighting_store,Lighting Store,3,shopping,false,hardware_home_and_garden_store,39904 -shopping > specialty_store > hardware_home_and_garden_store > linen_store,linen_store,Linen Store,3,shopping,false,hardware_home_and_garden_store,32787 -shopping > specialty_store > hardware_home_and_garden_store > mattress_store,mattress_store,Mattress Store,3,shopping,false,hardware_home_and_garden_store,41623 -shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store,nursery_and_gardening_store,Nursery and Gardening Store,3,shopping,false,hardware_home_and_garden_store,122703 -shopping > specialty_store > hardware_home_and_garden_store > nursery_and_gardening_store > hydroponic_gardening_store,hydroponic_gardening_store,Hydroponic Gardening Store,4,shopping,false,hardware_home_and_garden_store,684 -shopping > specialty_store > hardware_home_and_garden_store > outdoor_furniture_store,outdoor_furniture_store,Outdoor Furniture Store,3,shopping,false,hardware_home_and_garden_store,2011 -shopping > specialty_store > hardware_home_and_garden_store > paint_store,paint_store,Paint Store,3,shopping,false,hardware_home_and_garden_store,18781 -shopping > specialty_store > hardware_home_and_garden_store > rug_store,rug_store,Rug Store,3,shopping,false,hardware_home_and_garden_store,1759 -shopping > specialty_store > hardware_home_and_garden_store > tile_store,tile_store,Tile Store,3,shopping,false,hardware_home_and_garden_store,5941 -shopping > specialty_store > hardware_home_and_garden_store > wallpaper_store,wallpaper_store,Wallpaper Store,3,shopping,false,hardware_home_and_garden_store,379 -shopping > specialty_store > hardware_home_and_garden_store > window_treatment_store,window_treatment_store,Window Treatment Store,3,shopping,false,hardware_home_and_garden_store,5501 -shopping > specialty_store > hardware_home_and_garden_store > woodworking_supply_store,woodworking_supply_store,Woodworking Supply Store,3,shopping,false,hardware_home_and_garden_store,3967 -shopping > specialty_store > medical_supply_store,medical_supply_store,Medical Supply Store,2,shopping,false,specialty_store,52253 -shopping > specialty_store > medical_supply_store > dental_supply_store,dental_supply_store,Dental Supply Store,3,shopping,false,specialty_store,1413 -shopping > specialty_store > medical_supply_store > hearing_aid_store,hearing_aid_store,Hearing Aid Store,3,shopping,false,specialty_store,23703 -shopping > specialty_store > musical_instrument_and_pro_audio_store,musical_instrument_and_pro_audio_store,Musical Instrument and Pro Audio Store,2,shopping,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,shopping,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,shopping,false,musical_instrument_and_pro_audio_store,41435 -shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > guitar_store,guitar_store,Guitar Store,4,shopping,false,musical_instrument_and_pro_audio_store,735 -shopping > specialty_store > musical_instrument_and_pro_audio_store > musical_instrument_store > piano_store,piano_store,Piano Store,4,shopping,false,musical_instrument_and_pro_audio_store,441 -shopping > specialty_store > musical_instrument_and_pro_audio_store > pro_audio_store,pro_audio_store,Pro Audio Store,3,shopping,false,musical_instrument_and_pro_audio_store, -shopping > specialty_store > office_supply_store,office_supply_store,Office Supply Store,2,shopping,true,office_supply_store,57124 -shopping > specialty_store > office_supply_store > packing_supply_store,packing_supply_store,Packing Supply Store,3,shopping,false,office_supply_store,13010 -shopping > specialty_store > office_supply_store > pen_store,pen_store,Pen Store,3,shopping,false,office_supply_store,94 -shopping > specialty_store > outlet_store,outlet_store,Outlet Store,2,shopping,false,specialty_store,15772 -shopping > specialty_store > party_supply_store,party_supply_store,Party Supply Store,2,shopping,false,specialty_store,50534 -shopping > specialty_store > personal_care_and_beauty_store,personal_care_and_beauty_store,Personal Care and Beauty Store,2,shopping,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,shopping,false,personal_care_and_beauty_store, -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store,beauty_supply_store,Beauty Supply Store,3,shopping,false,personal_care_and_beauty_store,184142 -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > cosmetics_and_fragrance_store,cosmetics_and_fragrance_store,Cosmetics and Fragrance Store,4,shopping,false,personal_care_and_beauty_store,26588 -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > hair_supply_store,hair_supply_store,Hair Supply Store,4,shopping,false,personal_care_and_beauty_store,47898 -shopping > specialty_store > personal_care_and_beauty_store > beauty_supply_store > wig_store,wig_store,Wig Store,4,shopping,false,personal_care_and_beauty_store,5166 -shopping > specialty_store > pharmacy_and_drug_store,pharmacy_and_drug_store,Pharmacy and Drug Store,2,shopping,true,pharmacy_and_drug_store, -shopping > specialty_store > pharmacy_and_drug_store > drugstore,drugstore,Drugstore,3,shopping,false,pharmacy_and_drug_store,29597 -shopping > specialty_store > pharmacy_and_drug_store > pharmacy,pharmacy,Pharmacy,3,shopping,false,pharmacy_and_drug_store,519231 -shopping > specialty_store > pop_up_store,pop_up_store,Pop Up Store,2,shopping,false,specialty_store,7473 -shopping > specialty_store > religious_and_spiritual_goods_store,religious_and_spiritual_goods_store,Religious and Spiritual Goods Store,2,shopping,false,specialty_store,1132 -shopping > specialty_store > religious_and_spiritual_goods_store > buddhist_goods_store,buddhist_goods_store,Buddhist Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store,christian_goods_store,Christian Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > christian_goods_store > church_supply_store,church_supply_store,Church Supply Store,4,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > hindu_goods_store,hindu_goods_store,Hindu Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > islamic_goods_store,islamic_goods_store,Islamic Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > jewish_goods_store,jewish_goods_store,Jewish Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > mind_body_spirit_store,mind_body_spirit_store,Mind Body Spirit Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > new_age_goods_store,new_age_goods_store,New Age Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > occult_store,occult_store,Occult Store,3,shopping,false,specialty_store, -shopping > specialty_store > religious_and_spiritual_goods_store > pagan_goods_store,pagan_goods_store,Pagan Goods Store,3,shopping,false,specialty_store, -shopping > specialty_store > safe_store,safe_store,Safe Store,2,shopping,false,specialty_store,535 -shopping > specialty_store > safety_equipment_store,safety_equipment_store,Safety Equipment Store,2,shopping,false,specialty_store,10888 -shopping > specialty_store > smoke_and_vape_store,smoke_and_vape_store,Smoke and Vape Store,2,shopping,false,specialty_store,40067 -shopping > specialty_store > smoke_and_vape_store > cannabis_dispensary,cannabis_dispensary,Cannabis Dispensary,3,shopping,false,specialty_store,9007 -shopping > specialty_store > souvenir_store,souvenir_store,Souvenir Store,2,shopping,false,specialty_store,13771 -shopping > specialty_store > sporting_goods_store,sporting_goods_store,Sporting Goods Store,2,shopping,true,sporting_goods_store,128526 -shopping > specialty_store > sporting_goods_store > archery_store,archery_store,Archery Store,3,shopping,false,sporting_goods_store,1602 -shopping > specialty_store > sporting_goods_store > bike_store,bike_store,Bike Store,3,shopping,false,sporting_goods_store,87983 -shopping > specialty_store > sporting_goods_store > dive_store,dive_store,Dive Store,3,shopping,false,sporting_goods_store,877 -shopping > specialty_store > sporting_goods_store > fitness_exercise_store,fitness_exercise_store,Fitness Exercise Store,3,shopping,false,sporting_goods_store,1356 -shopping > specialty_store > sporting_goods_store > golf_equipment_store,golf_equipment_store,Golf Equipment Store,3,shopping,false,sporting_goods_store,2286 -shopping > specialty_store > sporting_goods_store > hockey_equipment_store,hockey_equipment_store,Hockey Equipment Store,3,shopping,false,sporting_goods_store,282 -shopping > specialty_store > sporting_goods_store > hunting_and_fishing_store,hunting_and_fishing_store,Hunting and Fishing Store,3,shopping,false,sporting_goods_store,29248 -shopping > specialty_store > sporting_goods_store > outdoor_store,outdoor_store,Outdoor Store,3,shopping,false,sporting_goods_store,28466 -shopping > specialty_store > sporting_goods_store > pool_and_billiards_store,pool_and_billiards_store,Pool and Billiards Store,3,shopping,false,sporting_goods_store,117 -shopping > specialty_store > sporting_goods_store > skate_store,skate_store,Skate Store,3,shopping,false,sporting_goods_store,5351 -shopping > specialty_store > sporting_goods_store > ski_and_snowboard_store,ski_and_snowboard_store,Ski and Snowboard Store,3,shopping,false,sporting_goods_store,5051 -shopping > specialty_store > sporting_goods_store > sportswear_store,sportswear_store,Sportswear Store,3,shopping,false,sporting_goods_store,31896 -shopping > specialty_store > sporting_goods_store > sportswear_store > dancewear_store,dancewear_store,Dancewear Store,4,shopping,false,sporting_goods_store,1581 -shopping > specialty_store > sporting_goods_store > surf_store,surf_store,Surf Store,3,shopping,false,sporting_goods_store,7454 -shopping > specialty_store > sporting_goods_store > swimwear_store,swimwear_store,Swimwear Store,3,shopping,false,sporting_goods_store,6670 -shopping > specialty_store > tactical_supply_store,tactical_supply_store,Tactical Supply Store,2,shopping,false,specialty_store, -shopping > specialty_store > tactical_supply_store > army_and_navy_store,army_and_navy_store,Army and Navy Store,3,shopping,false,specialty_store,20 -shopping > specialty_store > tactical_supply_store > military_surplus_store,military_surplus_store,Military Surplus Store,3,shopping,false,specialty_store,646 -shopping > specialty_store > toys_and_games_store,toys_and_games_store,Toys and Games Store,2,shopping,true,toys_and_games_store, -shopping > specialty_store > toys_and_games_store > tabletop_games_store,tabletop_games_store,Tabletop Games Store,3,shopping,false,toys_and_games_store,198 -shopping > specialty_store > toys_and_games_store > toy_store,toy_store,Toy Store,3,shopping,false,toys_and_games_store,69398 -shopping > specialty_store > trophy_store,trophy_store,Trophy Store,2,shopping,false,specialty_store,8591 -shopping > specialty_store > vehicle_parts_store,vehicle_parts_store,Vehicle Parts Store,2,shopping,true,vehicle_parts_store, -shopping > specialty_store > vehicle_parts_store > auto_parts_store,auto_parts_store,Auto Parts Store,3,shopping,false,vehicle_parts_store,324519 -shopping > specialty_store > vehicle_parts_store > boat_parts_store,boat_parts_store,Boat Parts Store,3,shopping,false,vehicle_parts_store,7358 -shopping > specialty_store > vehicle_parts_store > motorcycle_parts_store,motorcycle_parts_store,Motorcycle Parts Store,3,shopping,false,vehicle_parts_store,784 -shopping > specialty_store > vehicle_parts_store > motorsports_store,motorsports_store,Motorsports Store,3,shopping,false,vehicle_parts_store,10829 -shopping > specialty_store > vehicle_parts_store > rv_parts_store,rv_parts_store,RV Parts Store,3,shopping,false,vehicle_parts_store,334 -shopping > superstore,superstore,Superstore,1,shopping,true,superstore,15014 -shopping > vehicle_dealer,vehicle_dealer,Vehicle Dealer,1,shopping,true,vehicle_dealer,1512 -shopping > vehicle_dealer > aircraft_dealer,aircraft_dealer,Aircraft Dealer,2,shopping,false,vehicle_dealer,1023 -shopping > vehicle_dealer > auto_dealer,auto_dealer,Auto Dealer,2,shopping,true,auto_dealer,542069 -shopping > vehicle_dealer > auto_dealer > auto_broker,auto_broker,Auto Broker,3,shopping,false,auto_dealer,2662 -shopping > vehicle_dealer > auto_dealer > auto_leasing,auto_leasing,Auto Leasing,3,shopping,false,auto_dealer,5002 -shopping > vehicle_dealer > auto_dealer > used_auto_dealer,used_auto_dealer,Used Auto Dealer,3,shopping,false,auto_dealer,83076 -shopping > vehicle_dealer > boat_dealer,boat_dealer,Boat Dealer,2,shopping,false,vehicle_dealer,14630 -shopping > vehicle_dealer > commercial_vehicle_dealer,commercial_vehicle_dealer,Commercial Vehicle Dealer,2,shopping,false,vehicle_dealer,6453 -shopping > vehicle_dealer > forklift_dealer,forklift_dealer,Forklift Dealer,2,shopping,false,vehicle_dealer,1546 -shopping > vehicle_dealer > golf_cart_dealer,golf_cart_dealer,Golf Cart Dealer,2,shopping,false,vehicle_dealer,3668 -shopping > vehicle_dealer > motorcycle_dealer,motorcycle_dealer,Motorcycle Dealer,2,shopping,false,vehicle_dealer,112997 -shopping > vehicle_dealer > motorsport_vehicle_dealer,motorsport_vehicle_dealer,Motorsport Vehicle Dealer,2,shopping,false,vehicle_dealer,4939 -shopping > vehicle_dealer > recreational_vehicle_dealer,recreational_vehicle_dealer,Recreational Vehicle Dealer,2,shopping,false,vehicle_dealer,14094 -shopping > vehicle_dealer > scooter_dealer,scooter_dealer,Scooter Dealer,2,shopping,false,vehicle_dealer,360 -shopping > vehicle_dealer > trailer_dealer,trailer_dealer,Trailer Dealer,2,shopping,false,vehicle_dealer,9737 -shopping > vehicle_dealer > truck_dealer,truck_dealer,Truck Dealer,2,shopping,false,vehicle_dealer,25200 -shopping > warehouse_club_store,warehouse_club_store,Warehouse Club Store,1,shopping,true,warehouse_club_store,121150 -sports_and_recreation,sports_and_recreation,Sports and Recreation,0,sports_and_recreation,true,sports_and_recreation,198851 -sports_and_recreation > park,park,Park,1,sports_and_recreation,true,park,491407 -sports_and_recreation > park > dog_park,dog_park,Dog Park,2,sports_and_recreation,true,dog_park,12924 -sports_and_recreation > park > mountain_bike_park,mountain_bike_park,Mountain Bike Park,2,sports_and_recreation,false,park,55 -sports_and_recreation > park > national_park,national_park,National Park,2,sports_and_recreation,true,national_park,27732 -sports_and_recreation > park > playground,playground,Playground,2,sports_and_recreation,true,playground,38750 -sports_and_recreation > park > state_park,state_park,State Park,2,sports_and_recreation,false,park,1336 -sports_and_recreation > park > water_park,water_park,Water Park,2,sports_and_recreation,false,park,13612 -sports_and_recreation > recreational_equipment_rental,recreational_equipment_rental,Recreational Equipment Rental,1,sports_and_recreation,true,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > atv_rental_tour,atv_rental_tour,ATV Rental Tour,2,sports_and_recreation,false,recreational_equipment_rental,2011 -sports_and_recreation > recreational_equipment_rental > beach_equipment_rental,beach_equipment_rental,Beach Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,962 -sports_and_recreation > recreational_equipment_rental > bike_rental,bike_rental,Bike Rental,2,sports_and_recreation,false,recreational_equipment_rental,13255 -sports_and_recreation > recreational_equipment_rental > boat_hire_service,boat_hire_service,Boat Hire Service,2,sports_and_recreation,false,recreational_equipment_rental, -sports_and_recreation > recreational_equipment_rental > boat_rental_and_training,boat_rental_and_training,Boat Rental and Training,2,sports_and_recreation,false,recreational_equipment_rental,15402 -sports_and_recreation > recreational_equipment_rental > canoe_and_kayak_hire_service,canoe_and_kayak_hire_service,Canoe and Kayak Hire Service,2,sports_and_recreation,false,recreational_equipment_rental,8313 -sports_and_recreation > recreational_equipment_rental > jet_skis_rental,jet_skis_rental,Jet Skis Rental,2,sports_and_recreation,false,recreational_equipment_rental,1773 -sports_and_recreation > recreational_equipment_rental > paddleboard_rental,paddleboard_rental,Paddleboard Rental,2,sports_and_recreation,false,recreational_equipment_rental,102 -sports_and_recreation > recreational_equipment_rental > scooter_rental,scooter_rental,Scooter Rental,2,sports_and_recreation,false,recreational_equipment_rental,252 -sports_and_recreation > recreational_equipment_rental > sledding_rental,sledding_rental,Sledding Rental,2,sports_and_recreation,false,recreational_equipment_rental,71 -sports_and_recreation > recreational_equipment_rental > snorkeling_equipment_rental,snorkeling_equipment_rental,Snorkeling Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,4 -sports_and_recreation > recreational_equipment_rental > sport_equipment_rental,sport_equipment_rental,Sport Equipment Rental,2,sports_and_recreation,false,recreational_equipment_rental,517 -sports_and_recreation > recreational_equipment_rental > surfboard_rental,surfboard_rental,Surfboard Rental,2,sports_and_recreation,false,recreational_equipment_rental,66 -sports_and_recreation > recreational_trail_or_path,recreational_trail_or_path,Recreational Trail or Path,1,sports_and_recreation,true,recreational_trail_or_path,24 -sports_and_recreation > recreational_trail_or_path > backpacking_area,backpacking_area,Backpacking Area,2,sports_and_recreation,false,recreational_trail_or_path,2 -sports_and_recreation > recreational_trail_or_path > bike_path,bike_path,Bike Path,2,sports_and_recreation,false,recreational_trail_or_path,15 -sports_and_recreation > recreational_trail_or_path > hiking_trail,hiking_trail,Hiking Trail,2,sports_and_recreation,false,recreational_trail_or_path,42664 -sports_and_recreation > recreational_trail_or_path > mountain_bike_trail,mountain_bike_trail,Mountain Bike Trail,2,sports_and_recreation,false,recreational_trail_or_path,4299 -sports_and_recreation > sport_league,sport_league,Sport League,1,sports_and_recreation,true,sport_league, -sports_and_recreation > sport_league > amateur_sport_league,amateur_sport_league,Amateur Sport League,2,sports_and_recreation,false,sport_league,4988 -sports_and_recreation > sport_league > esports_league,esports_league,Esports League,2,sports_and_recreation,false,sport_league,722 -sports_and_recreation > sport_league > professional_sport_league,professional_sport_league,Professional Sport League,2,sports_and_recreation,false,sport_league,1307 -sports_and_recreation > sport_league > school_sport_league,school_sport_league,School Sport League,2,sports_and_recreation,false,sport_league,452 -sports_and_recreation > sport_or_fitness_facility,sport_or_fitness_facility,Sport or Fitness Facility,1,sports_and_recreation,true,sport_or_fitness_facility,135796 -sports_and_recreation > sport_or_fitness_facility > adventure_sport,adventure_sport,Adventure Sport,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > axe_throwing,axe_throwing,Axe Throwing,3,sports_and_recreation,false,sport_or_fitness_facility,106 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > bungee_jumping_center,bungee_jumping_center,Bungee Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility,4 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > challenge_courses_center,challenge_courses_center,Challenge Courses Center,3,sports_and_recreation,false,sport_or_fitness_facility,72 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > cliff_jumping_center,cliff_jumping_center,Cliff Jumping Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > adventure_sport > climbing_service,climbing_service,Climbing Service,3,sports_and_recreation,false,sport_or_fitness_facility,96 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > high_gliding_center,high_gliding_center,High Gliding Center,3,sports_and_recreation,false,sport_or_fitness_facility,9 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > rock_climbing_spot,rock_climbing_spot,Rock Climbing Spot,3,sports_and_recreation,false,sport_or_fitness_facility,7473 -sports_and_recreation > sport_or_fitness_facility > adventure_sport > ziplining_center,ziplining_center,Ziplining Center,3,sports_and_recreation,false,sport_or_fitness_facility,29 -sports_and_recreation > sport_or_fitness_facility > adventure_sports_center,adventure_sports_center,Adventure Sports Center,2,sports_and_recreation,false,sport_or_fitness_facility,751 -sports_and_recreation > sport_or_fitness_facility > atv_recreation_park,atv_recreation_park,ATV Recreation Park,2,sports_and_recreation,false,sport_or_fitness_facility,1125 -sports_and_recreation > sport_or_fitness_facility > batting_cage,batting_cage,Batting Cage,2,sports_and_recreation,false,sport_or_fitness_facility,2841 -sports_and_recreation > sport_or_fitness_facility > bowling_alley,bowling_alley,Bowling Alley,2,sports_and_recreation,false,sport_or_fitness_facility,17518 -sports_and_recreation > sport_or_fitness_facility > boxing_class,boxing_class,Boxing Class,2,sports_and_recreation,false,sport_or_fitness_facility,14073 -sports_and_recreation > sport_or_fitness_facility > boxing_gym,boxing_gym,Boxing Gym,2,sports_and_recreation,false,sport_or_fitness_facility,1532 -sports_and_recreation > sport_or_fitness_facility > cardio_class,cardio_class,Cardio Class,2,sports_and_recreation,false,sport_or_fitness_facility,154 -sports_and_recreation > sport_or_fitness_facility > climbing_class,climbing_class,Climbing Class,2,sports_and_recreation,false,sport_or_fitness_facility,4 -sports_and_recreation > sport_or_fitness_facility > curling_center,curling_center,Curling Center,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > curling_ice,curling_ice,Curling Ice,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > cycling_class,cycling_class,Cycling Class,2,sports_and_recreation,false,sport_or_fitness_facility,2886 -sports_and_recreation > sport_or_fitness_facility > dance_studio,dance_studio,Dance Studio,2,sports_and_recreation,false,sport_or_fitness_facility,130237 -sports_and_recreation > sport_or_fitness_facility > diving_center,diving_center,Diving Center,2,sports_and_recreation,false,sport_or_fitness_facility,1259 -sports_and_recreation > sport_or_fitness_facility > diving_center > free_diving_center,free_diving_center,Free Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility,34 -sports_and_recreation > sport_or_fitness_facility > diving_center > scuba_diving_center,scuba_diving_center,Scuba Diving Center,3,sports_and_recreation,false,sport_or_fitness_facility,12258 -sports_and_recreation > sport_or_fitness_facility > diving_instruction,diving_instruction,Diving Instruction,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_instruction > free_diving_instruction,free_diving_instruction,Free Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > diving_instruction > scuba_diving_instruction,scuba_diving_instruction,Scuba Diving Instruction,3,sports_and_recreation,false,sport_or_fitness_facility,1432 -sports_and_recreation > sport_or_fitness_facility > fitness_studio,fitness_studio,Fitness Studio,2,sports_and_recreation,true,fitness_studio, -sports_and_recreation > sport_or_fitness_facility > fitness_studio > aerial_fitness_center,aerial_fitness_center,Aerial Fitness Center,3,sports_and_recreation,false,fitness_studio,40 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > barre_class,barre_class,Barre Class,3,sports_and_recreation,false,fitness_studio,431 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > boot_camp,boot_camp,Boot Camp,3,sports_and_recreation,false,fitness_studio,9631 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > pilates_studio,pilates_studio,Pilates Studio,3,sports_and_recreation,false,fitness_studio,52568 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > qi_gong_studio,qi_gong_studio,Qi Gong Studio,3,sports_and_recreation,false,fitness_studio,38 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > tai_chi_studio,tai_chi_studio,Tai Chi Studio,3,sports_and_recreation,false,fitness_studio,1158 -sports_and_recreation > sport_or_fitness_facility > fitness_studio > yoga_studio,yoga_studio,Yoga Studio,3,sports_and_recreation,false,fitness_studio,82713 -sports_and_recreation > sport_or_fitness_facility > fitness_trainer,fitness_trainer,Fitness Trainer,2,sports_and_recreation,false,sport_or_fitness_facility,71824 -sports_and_recreation > sport_or_fitness_facility > flyboarding_center,flyboarding_center,Flyboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility,101 -sports_and_recreation > sport_or_fitness_facility > flyboarding_rental,flyboarding_rental,Flyboarding Rental,2,sports_and_recreation,false,sport_or_fitness_facility,3 -sports_and_recreation > sport_or_fitness_facility > golf_course,golf_course,Golf Course,2,sports_and_recreation,true,golf_course,37906 -sports_and_recreation > sport_or_fitness_facility > golf_course > driving_range,driving_range,Driving Range,3,sports_and_recreation,false,golf_course,6116 -sports_and_recreation > sport_or_fitness_facility > golf_instructor,golf_instructor,Golf Instructor,2,sports_and_recreation,false,sport_or_fitness_facility,4384 -sports_and_recreation > sport_or_fitness_facility > gym,gym,Gym,2,sports_and_recreation,true,gym,541730 -sports_and_recreation > sport_or_fitness_facility > gym > cycle_studio,cycle_studio,Cycle Studio,3,sports_and_recreation,false,gym, -sports_and_recreation > sport_or_fitness_facility > gymnastics_center,gymnastics_center,Gymnastics Center,2,sports_and_recreation,false,sport_or_fitness_facility,18050 -sports_and_recreation > sport_or_fitness_facility > hang_gliding_center,hang_gliding_center,Hang Gliding Center,2,sports_and_recreation,false,sport_or_fitness_facility,415 -sports_and_recreation > sport_or_fitness_facility > hockey_rink,hockey_rink,Hockey Rink,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > hockey_rink > ice_hockey_rink,ice_hockey_rink,Ice Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > hockey_rink > roller_hockey_rink,roller_hockey_rink,Roller Hockey Rink,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > horse_riding,horse_riding,Horse Riding,2,sports_and_recreation,false,sport_or_fitness_facility,10682 -sports_and_recreation > sport_or_fitness_facility > horse_riding > equestrian_facility,equestrian_facility,Equestrian Facility,3,sports_and_recreation,false,sport_or_fitness_facility,33372 -sports_and_recreation > sport_or_fitness_facility > horseback_riding_service,horseback_riding_service,Horseback Riding Service,2,sports_and_recreation,false,sport_or_fitness_facility,8463 -sports_and_recreation > sport_or_fitness_facility > indoor_playcenter,indoor_playcenter,Indoor Playcenter,2,sports_and_recreation,false,sport_or_fitness_facility,1339 -sports_and_recreation > sport_or_fitness_facility > kiteboarding,kiteboarding,Kiteboarding,2,sports_and_recreation,false,sport_or_fitness_facility,1106 -sports_and_recreation > sport_or_fitness_facility > kiteboarding_instruction,kiteboarding_instruction,Kiteboarding Instruction,2,sports_and_recreation,false,sport_or_fitness_facility,3 -sports_and_recreation > sport_or_fitness_facility > laser_tag,laser_tag,Laser Tag,2,sports_and_recreation,false,sport_or_fitness_facility,2538 -sports_and_recreation > sport_or_fitness_facility > miniature_golf_course,miniature_golf_course,Miniature Golf Course,2,sports_and_recreation,false,sport_or_fitness_facility,5109 -sports_and_recreation > sport_or_fitness_facility > paddleboarding_center,paddleboarding_center,Paddleboarding Center,2,sports_and_recreation,false,sport_or_fitness_facility,1029 -sports_and_recreation > sport_or_fitness_facility > paddleboarding_lessons,paddleboarding_lessons,Paddleboarding Lessons,2,sports_and_recreation,false,sport_or_fitness_facility,1 -sports_and_recreation > sport_or_fitness_facility > paintball,paintball,Paintball,2,sports_and_recreation,false,sport_or_fitness_facility,7072 -sports_and_recreation > sport_or_fitness_facility > parasailing_ride_service,parasailing_ride_service,Parasailing Ride Service,2,sports_and_recreation,false,sport_or_fitness_facility,49 -sports_and_recreation > sport_or_fitness_facility > pool_billiards,pool_billiards,Pool Billiards,2,sports_and_recreation,false,sport_or_fitness_facility,17603 -sports_and_recreation > sport_or_fitness_facility > pool_billiards > pool_hall,pool_hall,Pool Hall,3,sports_and_recreation,false,sport_or_fitness_facility,1084 -sports_and_recreation > sport_or_fitness_facility > race_track,race_track,Race Track,2,sports_and_recreation,false,sport_or_fitness_facility,18735 -sports_and_recreation > sport_or_fitness_facility > race_track > go_kart_track,go_kart_track,Go Kart Track,3,sports_and_recreation,false,sport_or_fitness_facility,417 -sports_and_recreation > sport_or_fitness_facility > race_track > horse_racing_track,horse_racing_track,Horse Racing Track,3,sports_and_recreation,false,sport_or_fitness_facility,376 -sports_and_recreation > sport_or_fitness_facility > race_track > motor_race_track,motor_race_track,Motor Race Track,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > race_track > velodrome,velodrome,Velodrome,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > racing_experience,racing_experience,Racing Experience,2,sports_and_recreation,false,sport_or_fitness_facility,58 -sports_and_recreation > sport_or_fitness_facility > rock_climbing_gym,rock_climbing_gym,Rock Climbing Gym,2,sports_and_recreation,false,sport_or_fitness_facility,372 -sports_and_recreation > sport_or_fitness_facility > rock_climbing_instructor,rock_climbing_instructor,Rock Climbing Instructor,2,sports_and_recreation,false,sport_or_fitness_facility,18 -sports_and_recreation > sport_or_fitness_facility > running_and_track,running_and_track,Running and Track,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > running_and_track > running,running,Running,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > self_defense_class,self_defense_class,Self Defense Class,2,sports_and_recreation,false,sport_or_fitness_facility,578 -sports_and_recreation > sport_or_fitness_facility > shooting_range,shooting_range,Shooting Range,2,sports_and_recreation,false,sport_or_fitness_facility,17991 -sports_and_recreation > sport_or_fitness_facility > shooting_range > archery_range,archery_range,Archery Range,3,sports_and_recreation,false,sport_or_fitness_facility,3684 -sports_and_recreation > sport_or_fitness_facility > skate_park,skate_park,Skate Park,2,sports_and_recreation,true,skate_park,18613 -sports_and_recreation > sport_or_fitness_facility > skating_rink,skating_rink,Skating Rink,2,sports_and_recreation,true,skating_rink,669 -sports_and_recreation > sport_or_fitness_facility > skating_rink > ice_skating_rink,ice_skating_rink,Ice Skating Rink,3,sports_and_recreation,false,skating_rink,5869 -sports_and_recreation > sport_or_fitness_facility > skating_rink > roller_skating_rink,roller_skating_rink,Roller Skating Rink,3,sports_and_recreation,false,skating_rink,2275 -sports_and_recreation > sport_or_fitness_facility > ski_and_snowboard_school,ski_and_snowboard_school,Ski and Snowboard School,2,sports_and_recreation,false,sport_or_fitness_facility,2651 -sports_and_recreation > sport_or_fitness_facility > sky_diving,sky_diving,Sky Diving,2,sports_and_recreation,false,sport_or_fitness_facility,1715 -sports_and_recreation > sport_or_fitness_facility > sky_diving > sky_diving_drop_zone,sky_diving_drop_zone,Sky Diving Drop Zone,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > sky_diving > skydiving_center,skydiving_center,Skydiving Center,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport,snow_sport,Snow Sport,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > bobsledding_field,bobsledding_field,Bobsledding Field,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_area,ski_area,Ski Area,3,sports_and_recreation,false,sport_or_fitness_facility,20 -sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chairlift,ski_chairlift,Ski Chairlift,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_chalet,ski_chalet,Ski Chalet,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > ski_resort_area,ski_resort_area,Ski Resort Area,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > snow_sport > snowboarding_center,snowboarding_center,Snowboarding Center,3,sports_and_recreation,false,sport_or_fitness_facility,1 -sports_and_recreation > sport_or_fitness_facility > sport_court,sport_court,Sport Court,2,sports_and_recreation,true,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > badminton_court,badminton_court,Badminton Court,3,sports_and_recreation,false,sport_court,4646 -sports_and_recreation > sport_or_fitness_facility > sport_court > basketball_court,basketball_court,Basketball Court,3,sports_and_recreation,false,sport_court,8395 -sports_and_recreation > sport_or_fitness_facility > sport_court > beach_volleyball_court,beach_volleyball_court,Beach Volleyball Court,3,sports_and_recreation,false,sport_court,27 -sports_and_recreation > sport_or_fitness_facility > sport_court > bocce_ball_court,bocce_ball_court,Bocce Ball Court,3,sports_and_recreation,false,sport_court,9 -sports_and_recreation > sport_or_fitness_facility > sport_court > handball_court,handball_court,Handball Court,3,sports_and_recreation,false,sport_court,1 -sports_and_recreation > sport_or_fitness_facility > sport_court > pickleball_court,pickleball_court,Pickleball Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > racquetball_court,racquetball_court,Racquetball Court,3,sports_and_recreation,false,sport_court,261 -sports_and_recreation > sport_or_fitness_facility > sport_court > squash_court,squash_court,Squash Court,3,sports_and_recreation,false,sport_court,1190 -sports_and_recreation > sport_or_fitness_facility > sport_court > street_hockey_court,street_hockey_court,Street Hockey Court,3,sports_and_recreation,false,sport_court, -sports_and_recreation > sport_or_fitness_facility > sport_court > tennis_court,tennis_court,Tennis Court,3,sports_and_recreation,false,sport_court,31657 -sports_and_recreation > sport_or_fitness_facility > sport_court > volleyball_court,volleyball_court,Volleyball Court,3,sports_and_recreation,false,sport_court,2503 -sports_and_recreation > sport_or_fitness_facility > sport_field,sport_field,Sport Field,2,sports_and_recreation,true,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > airsoft_field,airsoft_field,Airsoft Field,3,sports_and_recreation,false,sport_field,78 -sports_and_recreation > sport_or_fitness_facility > sport_field > american_football_field,american_football_field,American Football Field,3,sports_and_recreation,false,sport_field,86 -sports_and_recreation > sport_or_fitness_facility > sport_field > baseball_field,baseball_field,Baseball Field,3,sports_and_recreation,false,sport_field,17055 -sports_and_recreation > sport_or_fitness_facility > sport_field > disc_golf_course,disc_golf_course,Disc Golf Course,3,sports_and_recreation,false,sport_field,3042 -sports_and_recreation > sport_or_fitness_facility > sport_field > futsal_field,futsal_field,Futsal Field,3,sports_and_recreation,false,sport_field,20 -sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field,hockey_field,Hockey Field,3,sports_and_recreation,false,sport_field,1208 -sports_and_recreation > sport_or_fitness_facility > sport_field > hockey_field > field_hockey_pitch,field_hockey_pitch,Field Hockey Pitch,4,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > lacrosse_field,lacrosse_field,Lacrosse Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sport_field > rugby_pitch,rugby_pitch,Rugby Pitch,3,sports_and_recreation,false,sport_field,1485 -sports_and_recreation > sport_or_fitness_facility > sport_field > soccer_field,soccer_field,Soccer Field,3,sports_and_recreation,false,sport_field,44279 -sports_and_recreation > sport_or_fitness_facility > sport_field > softball_field,softball_field,Softball Field,3,sports_and_recreation,false,sport_field, -sports_and_recreation > sport_or_fitness_facility > sports_complex,sports_complex,Sports Complex,2,sports_and_recreation,true,sports_complex, -sports_and_recreation > sport_or_fitness_facility > surfing_school,surfing_school,Surfing School,2,sports_and_recreation,false,sport_or_fitness_facility,226 -sports_and_recreation > sport_or_fitness_facility > swimming_pool,swimming_pool,Swimming Pool,2,sports_and_recreation,true,swimming_pool,64630 -sports_and_recreation > sport_or_fitness_facility > swimming_pool > swimming_instructor,swimming_instructor,Swimming Instructor,3,sports_and_recreation,false,swimming_pool,11736 -sports_and_recreation > sport_or_fitness_facility > trampoline_park,trampoline_park,Trampoline Park,2,sports_and_recreation,false,sport_or_fitness_facility,67 -sports_and_recreation > sport_or_fitness_facility > tubing_provider,tubing_provider,Tubing Provider,2,sports_and_recreation,false,sport_or_fitness_facility,15 -sports_and_recreation > sport_or_fitness_facility > water_sport,water_sport,Water Sport,2,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > boating_place,boating_place,Boating Place,3,sports_and_recreation,false,sport_or_fitness_facility,854 -sports_and_recreation > sport_or_fitness_facility > water_sport > fishing,fishing,Fishing,3,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_area,fishing_area,Fishing Area,4,sports_and_recreation,false,sport_or_fitness_facility, -sports_and_recreation > sport_or_fitness_facility > water_sport > fishing > fishing_charter,fishing_charter,Fishing Charter,4,sports_and_recreation,false,sport_or_fitness_facility,11154 -sports_and_recreation > sport_or_fitness_facility > water_sport > rafting_kayaking_area,rafting_kayaking_area,Rafting Kayaking Area,3,sports_and_recreation,false,sport_or_fitness_facility,669 -sports_and_recreation > sport_or_fitness_facility > water_sport > sailing_area,sailing_area,Sailing Area,3,sports_and_recreation,false,sport_or_fitness_facility,207 -sports_and_recreation > sport_or_fitness_facility > water_sport > snorkeling,snorkeling,Snorkeling,3,sports_and_recreation,false,sport_or_fitness_facility,338 -sports_and_recreation > sport_or_fitness_facility > water_sport > surfing,surfing,Surfing,3,sports_and_recreation,false,sport_or_fitness_facility,5131 -sports_and_recreation > sport_or_fitness_facility > water_sport > surfing > windsurfing_center,windsurfing_center,Windsurfing Center,4,sports_and_recreation,false,sport_or_fitness_facility,6 -sports_and_recreation > sport_or_fitness_facility > wildlife_hunting_range,wildlife_hunting_range,Wildlife Hunting Range,2,sports_and_recreation,false,sport_or_fitness_facility,305 -sports_and_recreation > sport_or_recreation_club,sport_or_recreation_club,Sport or Recreation Club,1,sports_and_recreation,true,sport_or_recreation_club,10279 -sports_and_recreation > sport_or_recreation_club > beach_volleyball_club,beach_volleyball_club,Beach Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club,10 -sports_and_recreation > sport_or_recreation_club > curling_club,curling_club,Curling Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > fencing_club,fencing_club,Fencing Club,2,sports_and_recreation,false,sport_or_recreation_club,2082 -sports_and_recreation > sport_or_recreation_club > fishing_club,fishing_club,Fishing Club,2,sports_and_recreation,false,sport_or_recreation_club,12457 -sports_and_recreation > sport_or_recreation_club > football_club,football_club,Football Club,2,sports_and_recreation,false,sport_or_recreation_club,326 -sports_and_recreation > sport_or_recreation_club > go_kart_club,go_kart_club,Go Kart Club,2,sports_and_recreation,false,sport_or_recreation_club,3989 -sports_and_recreation > sport_or_recreation_club > golf_club,golf_club,Golf Club,2,sports_and_recreation,false,sport_or_recreation_club,1925 -sports_and_recreation > sport_or_recreation_club > golf_club > indoor_golf_center,indoor_golf_center,Indoor Golf Center,3,sports_and_recreation,false,sport_or_recreation_club,227 -sports_and_recreation > sport_or_recreation_club > gymnastics_club,gymnastics_club,Gymnastics Club,2,sports_and_recreation,false,sport_or_recreation_club,88 -sports_and_recreation > sport_or_recreation_club > hockey_club,hockey_club,Hockey Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > hockey_club > field_hockey_club,field_hockey_club,Field Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > hockey_club > ice_hockey_club,ice_hockey_club,Ice Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > hockey_club > roller_hockey_club,roller_hockey_club,Roller Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > hockey_club > street_hockey_club,street_hockey_club,Street Hockey Club,3,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > lacrosse_club,lacrosse_club,Lacrosse Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > lawn_bowling_club,lawn_bowling_club,Lawn Bowling Club,2,sports_and_recreation,false,sport_or_recreation_club,78 -sports_and_recreation > sport_or_recreation_club > martial_arts_club,martial_arts_club,Martial Arts Club,2,sports_and_recreation,false,sport_or_recreation_club,128101 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > brazilian_jiu_jitsu_club,brazilian_jiu_jitsu_club,Brazilian Jiu Jitsu Club,3,sports_and_recreation,false,sport_or_recreation_club,307 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > chinese_martial_arts_club,chinese_martial_arts_club,Chinese Martial Arts Club,3,sports_and_recreation,false,sport_or_recreation_club,186 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > karate_club,karate_club,Karate Club,3,sports_and_recreation,false,sport_or_recreation_club,1164 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > kickboxing_club,kickboxing_club,Kickboxing Club,3,sports_and_recreation,false,sport_or_recreation_club,951 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > muay_thai_club,muay_thai_club,Muay Thai Club,3,sports_and_recreation,false,sport_or_recreation_club,116 -sports_and_recreation > sport_or_recreation_club > martial_arts_club > taekwondo_club,taekwondo_club,Taekwondo Club,3,sports_and_recreation,false,sport_or_recreation_club,717 -sports_and_recreation > sport_or_recreation_club > naturist_club,naturist_club,Naturist Club,2,sports_and_recreation,false,sport_or_recreation_club,14 -sports_and_recreation > sport_or_recreation_club > paddle_tennis_club,paddle_tennis_club,Paddle Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club,20 -sports_and_recreation > sport_or_recreation_club > pickleball_club,pickleball_club,Pickleball Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > rowing_club,rowing_club,Rowing Club,2,sports_and_recreation,false,sport_or_recreation_club,64 -sports_and_recreation > sport_or_recreation_club > running_and_track_club,running_and_track_club,Running and Track Club,2,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > running_and_track_club > running_club,running_club,Running Club,3,sports_and_recreation,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,sports_and_recreation,false,sport_or_recreation_club, -sports_and_recreation > sport_or_recreation_club > sailing_club,sailing_club,Sailing Club,2,sports_and_recreation,false,sport_or_recreation_club,591 -sports_and_recreation > sport_or_recreation_club > soccer_club,soccer_club,Soccer Club,2,sports_and_recreation,false,sport_or_recreation_club,1671 -sports_and_recreation > sport_or_recreation_club > surf_lifesaving_club,surf_lifesaving_club,Surf Lifesaving Club,2,sports_and_recreation,false,sport_or_recreation_club,7 -sports_and_recreation > sport_or_recreation_club > table_tennis_club,table_tennis_club,Table Tennis Club,2,sports_and_recreation,false,sport_or_recreation_club,75 -sports_and_recreation > sport_or_recreation_club > volleyball_club,volleyball_club,Volleyball Club,2,sports_and_recreation,false,sport_or_recreation_club,306 -sports_and_recreation > sport_team,sport_team,Sport Team,1,sports_and_recreation,true,sport_team, -sports_and_recreation > sport_team > amateur_sport_team,amateur_sport_team,Amateur Sport Team,2,sports_and_recreation,false,sport_team,30168 -sports_and_recreation > sport_team > esports_team,esports_team,Esports Team,2,sports_and_recreation,false,sport_team,558 -sports_and_recreation > sport_team > professional_sport_team,professional_sport_team,Professional Sport Team,2,sports_and_recreation,false,sport_team,5869 -sports_and_recreation > sport_team > school_sport_team,school_sport_team,School Sport Team,2,sports_and_recreation,false,sport_team,1252 -travel_and_transportation,travel_and_transportation,Travel and Transportation,0,travel_and_transportation,true,travel_and_transportation,207498 -travel_and_transportation > air_transport_facility_or_service,air_transport_facility_or_service,Air Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,false,air_transport_facility_or_service,1379 -travel_and_transportation > air_transport_facility_or_service > aircraft_parts_and_supplies > avionics_shop,avionics_shop,Avionics Shop,3,travel_and_transportation,false,air_transport_facility_or_service,522 -travel_and_transportation > air_transport_facility_or_service > airline,airline,Airline,2,travel_and_transportation,false,air_transport_facility_or_service,12094 -travel_and_transportation > air_transport_facility_or_service > airline_ticket_agency,airline_ticket_agency,Airline Ticket Agency,2,travel_and_transportation,false,air_transport_facility_or_service,156 -travel_and_transportation > air_transport_facility_or_service > airport,airport,Airport,2,travel_and_transportation,true,airport,53917 -travel_and_transportation > air_transport_facility_or_service > airport > airport_terminal,airport_terminal,Airport Terminal,3,travel_and_transportation,false,airport,6149 -travel_and_transportation > air_transport_facility_or_service > airport > balloon_port,balloon_port,Balloon Port,3,travel_and_transportation,false,airport,104 -travel_and_transportation > air_transport_facility_or_service > airport > glider_port,glider_port,Glider Port,3,travel_and_transportation,false,airport,9 -travel_and_transportation > air_transport_facility_or_service > airport > heliport,heliport,Heliport,3,travel_and_transportation,false,airport,1951 -travel_and_transportation > air_transport_facility_or_service > airport > seaplane_base,seaplane_base,Seaplane Base,3,travel_and_transportation,false,airport,317 -travel_and_transportation > air_transport_facility_or_service > airport > ultralight_airport,ultralight_airport,Ultralight Airport,3,travel_and_transportation,false,airport,1 -travel_and_transportation > air_transport_facility_or_service > airport_shuttle,airport_shuttle,Airport Shuttle,2,travel_and_transportation,false,air_transport_facility_or_service,5301 -travel_and_transportation > air_transport_facility_or_service > private_jet_charter,private_jet_charter,Private Jet Charter,2,travel_and_transportation,false,air_transport_facility_or_service,259 -travel_and_transportation > fueling_station,fueling_station,Fueling Station,1,travel_and_transportation,true,fueling_station, -travel_and_transportation > fueling_station > ev_charging_station,ev_charging_station,EV Charging Station,2,travel_and_transportation,true,ev_charging_station,49715 -travel_and_transportation > fueling_station > gas_station,gas_station,Gas Station,2,travel_and_transportation,true,gas_station,577515 -travel_and_transportation > fueling_station > gas_station > fuel_dock,fuel_dock,Fuel Dock,3,travel_and_transportation,false,gas_station,26 -travel_and_transportation > fueling_station > gas_station > truck_gas_station,truck_gas_station,Truck Gas Station,3,travel_and_transportation,false,gas_station,5518 -travel_and_transportation > ground_transport_facility_or_service,ground_transport_facility_or_service,Ground Transport Facility or Service,1,travel_and_transportation,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,travel_and_transportation,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,travel_and_transportation,false,ground_transport_facility_or_service,47 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service,public_transit_facility_or_service,Public Transit Facility or Service,2,travel_and_transportation,true,public_transit_facility_or_service,7875 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_station,bus_station,Bus Station,3,travel_and_transportation,false,public_transit_facility_or_service,67230 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > bus_ticket_agency,bus_ticket_agency,Bus Ticket Agency,3,travel_and_transportation,false,public_transit_facility_or_service,144 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > cable_car_service,cable_car_service,Cable Car Service,3,travel_and_transportation,false,public_transit_facility_or_service,344 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > coach_bus,coach_bus,Coach Bus,3,travel_and_transportation,false,public_transit_facility_or_service,349 -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,travel_and_transportation,false,public_transit_facility_or_service,1465 -travel_and_transportation > ground_transport_facility_or_service > public_transit_facility_or_service > metro_station,metro_station,Metro Station,3,travel_and_transportation,false,public_transit_facility_or_service,2781 -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service,rail_facility_or_service,Rail Facility or Service,2,travel_and_transportation,true,rail_facility_or_service,221 -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > railway_ticket_agent,railway_ticket_agent,Railway Ticket Agent,3,travel_and_transportation,false,rail_facility_or_service,12 -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train,train,Train,3,travel_and_transportation,false,rail_facility_or_service,1271 -travel_and_transportation > ground_transport_facility_or_service > rail_facility_or_service > train_station,train_station,Train Station,3,travel_and_transportation,true,train_station,98033 -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service,road_structures_and_service,Road Structures and Service,2,travel_and_transportation,false,ground_transport_facility_or_service,102 -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > rest_stop,rest_stop,Rest Stop,3,travel_and_transportation,true,rest_stop,549 -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > toll_station,toll_station,Toll Station,3,travel_and_transportation,true,toll_station,65 -travel_and_transportation > ground_transport_facility_or_service > road_structures_and_service > truck_stop,truck_stop,Truck Stop,3,travel_and_transportation,false,ground_transport_facility_or_service,524 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service,taxi_or_ride_share_service,Taxi or Ride Share Service,2,travel_and_transportation,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,travel_and_transportation,false,taxi_or_ride_share_service,2974 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > limo_service,limo_service,Limo Service,3,travel_and_transportation,false,taxi_or_ride_share_service,13556 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > pedicab_service,pedicab_service,Pedicab Service,3,travel_and_transportation,false,taxi_or_ride_share_service,4 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > ride_share_service,ride_share_service,Ride Share Service,3,travel_and_transportation,false,taxi_or_ride_share_service,603 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service,taxi_service,Taxi Service,3,travel_and_transportation,false,taxi_or_ride_share_service,49666 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > taxi_service > taxi_stand,taxi_stand,Taxi Stand,4,travel_and_transportation,false,taxi_or_ride_share_service,53 -travel_and_transportation > ground_transport_facility_or_service > taxi_or_ride_share_service > town_car_service,town_car_service,Town Car Service,3,travel_and_transportation,false,taxi_or_ride_share_service,340 -travel_and_transportation > parking,parking,Parking,1,travel_and_transportation,true,parking,143540 -travel_and_transportation > parking > bike_parking,bike_parking,Bike Parking,2,travel_and_transportation,false,parking,28 -travel_and_transportation > parking > motorcycle_parking,motorcycle_parking,Motorcycle Parking,2,travel_and_transportation,false,parking,6 -travel_and_transportation > parking > park_and_ride,park_and_ride,Park and Ride,2,travel_and_transportation,true,park_and_ride,164 -travel_and_transportation > parking > parking_garage,parking_garage,Parking Garage,2,travel_and_transportation,true,parking_garage, -travel_and_transportation > parking > parking_lot,parking_lot,Parking Lot,2,travel_and_transportation,true,parking_lot, -travel_and_transportation > transport_interchange,transport_interchange,Transport Interchange,1,travel_and_transportation,false,travel_and_transportation,43 -travel_and_transportation > travel_service,travel_service,Travel Service,1,travel_and_transportation,true,travel_service,395616 -travel_and_transportation > travel_service > agritourism,agritourism,Agritourism,2,travel_and_transportation,false,travel_service,598 -travel_and_transportation > travel_service > luggage_storage,luggage_storage,Luggage Storage,2,travel_and_transportation,false,travel_service,4435 -travel_and_transportation > travel_service > passport_and_visa_service,passport_and_visa_service,Passport and Visa Service,2,travel_and_transportation,false,travel_service,18915 -travel_and_transportation > travel_service > passport_and_visa_service > visa_agent,visa_agent,Visa Agent,3,travel_and_transportation,false,travel_service,160 -travel_and_transportation > travel_service > tour_operator,tour_operator,Tour Operator,2,travel_and_transportation,false,travel_service,124213 -travel_and_transportation > travel_service > tour_operator > aerial_tour,aerial_tour,Aerial Tour,3,travel_and_transportation,false,travel_service,115 -travel_and_transportation > travel_service > tour_operator > architectural_tour,architectural_tour,Architectural Tour,3,travel_and_transportation,false,travel_service,150 -travel_and_transportation > travel_service > tour_operator > art_tour,art_tour,Art Tour,3,travel_and_transportation,false,travel_service,35 -travel_and_transportation > travel_service > tour_operator > beer_tour,beer_tour,Beer Tour,3,travel_and_transportation,false,travel_service,46 -travel_and_transportation > travel_service > tour_operator > bike_tour,bike_tour,Bike Tour,3,travel_and_transportation,false,travel_service,102 -travel_and_transportation > travel_service > tour_operator > boat_tour,boat_tour,Boat Tour,3,travel_and_transportation,false,travel_service,11210 -travel_and_transportation > travel_service > tour_operator > bus_tour,bus_tour,Bus Tour,3,travel_and_transportation,false,travel_service,3449 -travel_and_transportation > travel_service > tour_operator > cannabis_tour,cannabis_tour,Cannabis Tour,3,travel_and_transportation,false,travel_service,12 -travel_and_transportation > travel_service > tour_operator > food_tour,food_tour,Food Tour,3,travel_and_transportation,false,travel_service,1211 -travel_and_transportation > travel_service > tour_operator > historical_tour,historical_tour,Historical Tour,3,travel_and_transportation,false,travel_service,1311 -travel_and_transportation > travel_service > tour_operator > hot_air_balloons_tour,hot_air_balloons_tour,Hot Air Balloons Tour,3,travel_and_transportation,false,travel_service,1146 -travel_and_transportation > travel_service > tour_operator > scooter_tour,scooter_tour,Scooter Tour,3,travel_and_transportation,false,travel_service,7 -travel_and_transportation > travel_service > tour_operator > sightseeing_tour_agency,sightseeing_tour_agency,Sightseeing Tour Agency,3,travel_and_transportation,false,travel_service,12458 -travel_and_transportation > travel_service > tour_operator > walking_tour,walking_tour,Walking Tour,3,travel_and_transportation,false,travel_service,145 -travel_and_transportation > travel_service > tour_operator > whale_watching_tour,whale_watching_tour,Whale Watching Tour,3,travel_and_transportation,false,travel_service,81 -travel_and_transportation > travel_service > tour_operator > wine_tour,wine_tour,Wine Tour,3,travel_and_transportation,false,travel_service,189 -travel_and_transportation > travel_service > travel_agent,travel_agent,Travel Agent,2,travel_and_transportation,false,travel_service,45543 -travel_and_transportation > travel_service > vacation_rental_agent,vacation_rental_agent,Vacation Rental Agent,2,travel_and_transportation,false,travel_service,4084 -travel_and_transportation > travel_service > visitor_center,visitor_center,Visitor Center,2,travel_and_transportation,false,travel_service,6642 -travel_and_transportation > vehicle_service,vehicle_service,Vehicle Service,1,travel_and_transportation,true,vehicle_service, -travel_and_transportation > vehicle_service > aircraft_service,aircraft_service,Aircraft Service,2,travel_and_transportation,false,vehicle_service,2762 -travel_and_transportation > vehicle_service > automotive_service,automotive_service,Automotive Service,2,travel_and_transportation,true,automotive_service,172801 -travel_and_transportation > vehicle_service > automotive_service > auto_body_shop,auto_body_shop,Auto Body Shop,3,travel_and_transportation,false,automotive_service,89488 -travel_and_transportation > vehicle_service > automotive_service > auto_customization,auto_customization,Auto Customization,3,travel_and_transportation,false,automotive_service,32666 -travel_and_transportation > vehicle_service > automotive_service > auto_detailing,auto_detailing,Auto Detailing,3,travel_and_transportation,false,automotive_service,129597 -travel_and_transportation > vehicle_service > automotive_service > auto_glass_service,auto_glass_service,Auto Glass Service,3,travel_and_transportation,false,automotive_service,33179 -travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > car_window_tinting,car_window_tinting,Car Window Tinting,4,travel_and_transportation,false,automotive_service,17537 -travel_and_transportation > vehicle_service > automotive_service > auto_glass_service > windshield_installation_and_repair,windshield_installation_and_repair,Windshield Installation and Repair,4,travel_and_transportation,false,automotive_service,4012 -travel_and_transportation > vehicle_service > automotive_service > auto_restoration_service,auto_restoration_service,Auto Restoration Service,3,travel_and_transportation,false,automotive_service,16433 -travel_and_transportation > vehicle_service > automotive_service > auto_security,auto_security,Auto Security,3,travel_and_transportation,false,automotive_service,1345 -travel_and_transportation > vehicle_service > automotive_service > auto_upholstery,auto_upholstery,Auto Upholstery,3,travel_and_transportation,false,automotive_service,2465 -travel_and_transportation > vehicle_service > automotive_service > automobile_registration_service,automobile_registration_service,Automobile Registration Service,3,travel_and_transportation,false,automotive_service,4426 -travel_and_transportation > vehicle_service > automotive_service > automotive_consultant,automotive_consultant,Automotive Consultant,3,travel_and_transportation,false,automotive_service,9504 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair,automotive_repair,Automotive Repair,3,travel_and_transportation,false,automotive_service,878312 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > auto_electrical_repair,auto_electrical_repair,Auto Electrical Repair,4,travel_and_transportation,false,automotive_service,8949 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > brake_service_and_repair,brake_service_and_repair,Brake Service and Repair,4,travel_and_transportation,false,automotive_service,7168 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > diy_auto_shop,diy_auto_shop,DIY Auto Shop,4,travel_and_transportation,false,automotive_service,25 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > engine_repair_service,engine_repair_service,Engine Repair Service,4,travel_and_transportation,false,automotive_service,6785 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > exhaust_and_muffler_repair,exhaust_and_muffler_repair,Exhaust and Muffler Repair,4,travel_and_transportation,false,automotive_service,359 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > hybrid_car_repair,hybrid_car_repair,Hybrid Car Repair,4,travel_and_transportation,false,automotive_service,102 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > motorsport_vehicle_repair,motorsport_vehicle_repair,Motorsport Vehicle Repair,4,travel_and_transportation,false,automotive_service,51 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > tire_dealer_and_repair,tire_dealer_and_repair,Tire Dealer and Repair,4,travel_and_transportation,false,automotive_service,125483 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > trailer_repair,trailer_repair,Trailer Repair,4,travel_and_transportation,false,automotive_service,806 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > transmission_repair,transmission_repair,Transmission Repair,4,travel_and_transportation,false,automotive_service,4318 -travel_and_transportation > vehicle_service > automotive_service > automotive_repair > wheel_and_rim_repair,wheel_and_rim_repair,Wheel and Rim Repair,4,travel_and_transportation,false,automotive_service,3265 -travel_and_transportation > vehicle_service > automotive_service > automotive_wheel_polishing_service,automotive_wheel_polishing_service,Automotive Wheel Polishing Service,3,travel_and_transportation,false,automotive_service,644 -travel_and_transportation > vehicle_service > automotive_service > car_buyer,car_buyer,Car Buyer,3,travel_and_transportation,false,automotive_service,754 -travel_and_transportation > vehicle_service > automotive_service > car_inspection,car_inspection,Car Inspection,3,travel_and_transportation,false,automotive_service,4609 -travel_and_transportation > vehicle_service > automotive_service > car_stereo_installation,car_stereo_installation,Car Stereo Installation,3,travel_and_transportation,false,automotive_service,631 -travel_and_transportation > vehicle_service > automotive_service > car_wash,car_wash,Car Wash,3,travel_and_transportation,false,automotive_service,123805 -travel_and_transportation > vehicle_service > automotive_service > emergency_roadside_service,emergency_roadside_service,Emergency Roadside Service,3,travel_and_transportation,false,automotive_service,2341 -travel_and_transportation > vehicle_service > automotive_service > emissions_inspection,emissions_inspection,Emissions Inspection,3,travel_and_transportation,false,automotive_service,8008 -travel_and_transportation > vehicle_service > automotive_service > oil_change_station,oil_change_station,Oil Change Station,3,travel_and_transportation,false,automotive_service,19505 -travel_and_transportation > vehicle_service > automotive_service > tire_shop,tire_shop,Tire Shop,3,travel_and_transportation,false,automotive_service,29938 -travel_and_transportation > vehicle_service > automotive_service > towing_service,towing_service,Towing Service,3,travel_and_transportation,false,automotive_service,38606 -travel_and_transportation > vehicle_service > automotive_service > truck_repair,truck_repair,Truck Repair,3,travel_and_transportation,false,automotive_service,22657 -travel_and_transportation > vehicle_service > automotive_service > vehicle_wrap,vehicle_wrap,Vehicle Wrap,3,travel_and_transportation,false,automotive_service,673 -travel_and_transportation > vehicle_service > boat_service,boat_service,Boat Service,2,travel_and_transportation,false,vehicle_service,14451 -travel_and_transportation > vehicle_service > boat_service > mooring_service,mooring_service,Mooring Service,3,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > delegated_driver_service,delegated_driver_service,Delegated Driver Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > motorcycle_service,motorcycle_service,Motorcycle Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > motorcycle_service > motorcycle_repair,motorcycle_repair,Motorcycle Repair,3,travel_and_transportation,false,vehicle_service,94976 -travel_and_transportation > vehicle_service > recreation_vehicle_service,recreation_vehicle_service,Recreation Vehicle Service,2,travel_and_transportation,false,vehicle_service, -travel_and_transportation > vehicle_service > recreation_vehicle_service > recreation_vehicle_repair,recreation_vehicle_repair,Recreation Vehicle Repair,3,travel_and_transportation,false,vehicle_service,4720 -travel_and_transportation > vehicle_service > roadside_assistance,roadside_assistance,Roadside Assistance,2,travel_and_transportation,false,vehicle_service,1388 -travel_and_transportation > vehicle_service > roadside_assistance > mobile_dent_repair,mobile_dent_repair,Mobile Dent Repair,3,travel_and_transportation,false,vehicle_service,574 -travel_and_transportation > water_transport_facility_or_service,water_transport_facility_or_service,Water Transport Facility or Service,1,travel_and_transportation,true,water_transport_facility_or_service, -travel_and_transportation > water_transport_facility_or_service > ferry_service,ferry_service,Ferry Service,2,travel_and_transportation,true,ferry_service,369 -travel_and_transportation > water_transport_facility_or_service > water_taxi_service,water_taxi_service,Water Taxi Service,2,travel_and_transportation,true,water_taxi_service,2 +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 From 36e4aa4f151b8ffb32555080a943a3d16641d504 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 16:05:46 -0400 Subject: [PATCH 18/19] delete json reference Signed-off-by: Warren Ehrenfried --- docs/guides/places/_README.md | 6 +++--- docs/guides/places/taxonomy-explorer.mdx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/places/_README.md b/docs/guides/places/_README.md index 862aab44f..50c62c932 100644 --- a/docs/guides/places/_README.md +++ b/docs/guides/places/_README.md @@ -5,10 +5,10 @@ An interactive tool for exploring and comparing Overture Maps Places taxonomy re There are two kinds of release entry: - **Canonical (JSON)** — generated from the places pipeline by - `scripts/build-taxonomy.mjs` and served as a static file that the browser - fetches. This is how every release from September 2026 onward is added. + `scripts/build-taxonomy.mjs` and served as a static file that the explorer + fetches. This is how every release from August 2026 onward is added. - **Legacy (CSV)** — the working spreadsheets produced during the taxonomy - project, inlined into the page bundle via `raw-loader`. Kept so the browser + project, inlined into the page bundle via `raw-loader`. Kept so the explorer can still show how the taxonomy looked at each earlier point. Both kinds live in the same `releases` array and can be selected and compared diff --git a/docs/guides/places/taxonomy-explorer.mdx b/docs/guides/places/taxonomy-explorer.mdx index aaa4398d2..d1f14ae31 100644 --- a/docs/guides/places/taxonomy-explorer.mdx +++ b/docs/guides/places/taxonomy-explorer.mdx @@ -17,7 +17,7 @@ import decemberCountsCsv from '!!raw-loader!./csv/2025-12-05-counts.csv'; Explore and compare updates to the Overture Taxonomy. The explorer opens on the current release; use the dropdown to see how the taxonomy looked at any earlier -point, and the download links to take a release away as JSON or CSV. +point, and the download links to take a release away as CSV. See [Places Taxonomy](./taxonomy.mdx) for what the `taxonomy` and `basic_category` properties mean and how to use them. From 09e5dfe3190ab30c3c80f55c1be34d11912121e3 Mon Sep 17 00:00:00 2001 From: Warren Ehrenfried Date: Fri, 4 Sep 2026 16:14:22 -0400 Subject: [PATCH 19/19] remove border for basic categories Signed-off-by: Warren Ehrenfried --- .../__tests__/taxonomyBrowser.test.jsx | 17 +++++++++----- src/components/taxonomyViz.jsx | 22 +++++++++---------- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/src/components/__tests__/taxonomyBrowser.test.jsx b/src/components/__tests__/taxonomyBrowser.test.jsx index 51d7b1624..002bfbdfe 100644 --- a/src/components/__tests__/taxonomyBrowser.test.jsx +++ b/src/components/__tests__/taxonomyBrowser.test.jsx @@ -247,12 +247,19 @@ describe('TaxonomyBrowser', () => { expect(document.querySelectorAll('.taxonomy-viz-stage path')).toHaveLength(3); }); - it('outlines basic categories and leaves the rest unoutlined', async () => { + it('draws every segment with the same outline, basic or not', async () => { await showSunburst(); - const arcs = [...document.querySelectorAll('.taxonomy-viz-stage path')]; - const outlined = arcs.filter(p => parseFloat(p.getAttribute('stroke-width')) > 1); - // food_and_drink and casual_eatery are basic; bagel_shop is not. - expect(outlined).toHaveLength(2); + 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 () => { diff --git a/src/components/taxonomyViz.jsx b/src/components/taxonomyViz.jsx index e65151577..2254eba1d 100644 --- a/src/components/taxonomyViz.jsx +++ b/src/components/taxonomyViz.jsx @@ -14,8 +14,9 @@ import { arc as d3arc } from 'd3-shape'; * 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. * - * Basic categories carry a stroke rather than a hue, so "is this basic?" stays - * legible independently of which family a node belongs to. + * 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 @@ -447,14 +448,11 @@ function Sunburst({ root, width, height, focus, onZoomIn, onBack, onSelect, sele key={d.data.code} d={arcGen(seg)} fill={colorOf(d, dimmed)} - stroke={ - isSelected - ? 'var(--ifm-color-primary)' - : d.data.isBasic && !dimmed - ? 'rgba(0,0,0,0.55)' - : 'rgba(255,255,255,0.35)' - } - strokeWidth={isSelected ? 2.5 : d.data.isBasic && !dimmed ? 1.1 : 0.4} + stroke={isSelected ? 'var(--ifm-color-primary)' : 'rgba(255,255,255,0.35)'} + // Every segment carries the same hairline. A heavier stroke on + // basic categories thickened with the viewport zoom and swamped + // the thin outer arcs, so the distinction is colour alone. + strokeWidth={isSelected ? 2.5 : 0.4} className="taxonomy-viz-arc" onMouseEnter={() => setHover(d)} onMouseLeave={() => setHover(null)} @@ -569,8 +567,8 @@ export default function TaxonomyViz({ treeChildren, onSelect, selectedCode, matc

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

);